Annotation of multiplexer/ps.h, revision 1.1

1.1     ! oskar       1: /*
        !             2:  * ISO 13818 stream multiplexer
        !             3:  * Copyright (C) 2001 Convergence Integrated Media GmbH Berlin
        !             4:  * Author: Oskar Schirmer (oskar@convergence.de)
        !             5:  */
        !             6: 
        !             7: 
        !             8: #define PS_CODE_END      (0xB9)
        !             9: #define PS_CODE_PACK_HDR (0xBA)
        !            10: #define PS_CODE_SYST_HDR (0xBB)
        !            11: 
        !            12: #define PS_PACKHD_SCR    (PES_HDCODE_SIZE)
        !            13: #define PS_PACKHD_MUXRAT (PS_PACKHD_SCR+6)
        !            14: #define PS_PACKHD_STUFLN (PS_PACKHD_MUXRAT+3)
        !            15: #define PS_PACKHD_SIZE   (PS_PACKHD_STUFLN+1)
        !            16: 
        !            17: #define PS_SYSTHD_RATBND (PES_HEADER_SIZE)
        !            18: #define PS_SYSTHD_AUDBND (PS_SYSTHD_RATBND+3)
        !            19: #define PS_SYSTHD_VIDBND (PS_SYSTHD_AUDBND+1)
        !            20: #define PS_SYSTHD_PKTRRF (PS_SYSTHD_VIDBND+1)
        !            21: #define PS_SYSTHD_STREAM (PS_SYSTHD_PKTRRF+1)
        !            22: #define PS_SYSTHD_SIZE   (PS_SYSTHD_STREAM)
        !            23: #define PS_SYSTHD_STRLEN 3
        !            24: 
        !            25: #define PS_STRMAP_CNI    (PES_HEADER_SIZE)
        !            26: #define PS_STRMAP_PSIL   (PS_STRMAP_CNI+2)
        !            27: #define PS_STRMAP_PSID   (PS_STRMAP_PSIL+2)
        !            28: #define PS_STRMAP_SIZE   (PS_STRMAP_PSID+6)
        !            29: #define PS_STRMAP_STRLEN 4
        !            30: 
        !            31: #define PS_STRDIR_NUMOAU (PES_HEADER_SIZE)
        !            32: #define PS_STRDIR_PREVDO (PS_STRDIR_NUMOAU+2)
        !            33: #define PS_STRDIR_NEXTDO (PS_STRDIR_PREVDO+6)
        !            34: #define PS_STRDIR_SIZE   (PS_STRDIR_NEXTDO+6)
        !            35: #define PS_STRDIR_SIZEAU 18
        !            36: 

LinuxTV legacy CVS <linuxtv.org/cvs>