diff options
author | cvs2svn <admin@example.com> | 2010-02-14 12:53:07 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2010-02-14 12:53:07 +0000 |
commit | 038a1d31955a315b5fdf8cee142623226ac3e48e (patch) | |
tree | bceeb16f00f4e73f602a56285093d897052d0063 /xine/demux_xvdr_tsdata.h | |
parent | 56b10fbbe13a6eb219f41da6d8a78a37d15bd378 (diff) | |
download | xineliboutput-branch-1_o_x.tar.gz xineliboutput-branch-1_o_x.tar.bz2 |
This commit was manufactured by cvs2svn to create branch 'branch-1_o_x'.branch-1_o_x
Diffstat (limited to 'xine/demux_xvdr_tsdata.h')
-rw-r--r-- | xine/demux_xvdr_tsdata.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/xine/demux_xvdr_tsdata.h b/xine/demux_xvdr_tsdata.h deleted file mode 100644 index b58fb6af..00000000 --- a/xine/demux_xvdr_tsdata.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * demux_xvdr_tsdata.h: data for MPEG-TS demuxer - * - * See the main source file 'xineliboutput.c' for copyright information and - * how to reach the author. - * - * $Id: demux_xvdr_tsdata.h,v 1.2 2010-01-22 23:06:58 phintuka Exp $ - * - */ - -#ifndef _DEMUX_XVDR_TSDATA_H_ -#define _DEMUX_XVDR_TSDATA_H_ - -struct ts2es_s; - -struct ts_data_s { - uint16_t pmt_pid; - uint16_t program_number; - - pmt_data_t pmt; - - struct ts2es_s *video; - struct ts2es_s *audio[TS_MAX_AUDIO_TRACKS]; - struct ts2es_s *spu[TS_MAX_SPU_TRACKS]; -}; - -typedef struct ts_data_s ts_data_t; - -void ts_data_ts2es_init (ts_data_t **ts_data, fifo_buffer_t *video_fifo, fifo_buffer_t *audio_fifo); -void ts_data_flush (ts_data_t *ts_data); -void ts_data_dispose (ts_data_t **ts_data); - -void ts_data_reset_audio(ts_data_t *ts_data, fifo_buffer_t *audio_fifo); - - -#endif /* _DEMUX_XVDR_TSDATA_H_ */ |