diff options
author | phintuka <phintuka> | 2010-03-13 11:33:36 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-03-13 11:33:36 +0000 |
commit | aabf12b542e6c2df9b1d0cad5ee5c23baf1852df (patch) | |
tree | 23f864bcb38f035703bd7a256780a1f0c0c877d7 | |
parent | a5ec8c12b36f8ff18f8883969c4feb8b4190f9c4 (diff) | |
download | xineliboutput-aabf12b542e6c2df9b1d0cad5ee5c23baf1852df.tar.gz xineliboutput-aabf12b542e6c2df9b1d0cad5ee5c23baf1852df.tar.bz2 |
Added eStreamId
-rw-r--r-- | xine_input_vdr_net.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/xine_input_vdr_net.h b/xine_input_vdr_net.h index 6c4c3b88..2c733e8d 100644 --- a/xine_input_vdr_net.h +++ b/xine_input_vdr_net.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr_net.h,v 1.14 2010-02-14 12:42:46 phintuka Exp $ + * $Id: xine_input_vdr_net.h,v 1.15 2010-03-13 11:33:36 phintuka Exp $ * */ @@ -61,6 +61,21 @@ /* + * Substreams + */ + +enum eStreamId { + sidVdr = 0, /* VDR primary video/audio (MPEG-PES or MPEG-TS) */ + + sidPipFirst = 1, /* VDR PIP video, first (MPEG-TS PAT+PMT+video) */ + sidPipLast = 17, + + sidPadding = 0xfd, /* UDP/RTP padding */ + sidOsd = 0xfe, /* OSD */ + sidControl = 0xff, /* control messages */ +}; + +/* * Network packet headers */ |