From 8700c75544d88f1479d5455b5b2788921d4dd5ee Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Sat, 9 Feb 2002 07:13:22 +0000 Subject: the long-awaited video_out changes, not completely debuged (races) - pts are 64 bit now - scr and video_out-loop run all the time - video_out cleanups - metronom cleanups - buffer type BUF_CONTROL_DISCONTINUITY is used internally now, input plugins should no longer send this one - support for individual frame durations - using nano-/usleep instead of itimer (simpler code, maybe this will help freebsd) CVS patchset: 1487 CVS date: 2002/02/09 07:13:22 --- src/demuxers/demux_ts.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/demuxers/demux_ts.c') diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c index 54bcd6c8e..44e05147c 100644 --- a/src/demuxers/demux_ts.c +++ b/src/demuxers/demux_ts.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_ts.c,v 1.35 2002/01/13 21:15:48 jcdutton Exp $ + * $Id: demux_ts.c,v 1.36 2002/02/09 07:13:23 guenter Exp $ * * Demultiplexer for MPEG2 Transport Streams. * @@ -544,8 +544,8 @@ static void demux_ts_buffer_pes(demux_ts *this, unsigned char *ts, buf->content = buf->mem; buf->size = m->size; buf->type = m->type; - buf->PTS = m->PTS; - buf->SCR = this->PCR; + buf->pts = m->PTS; + buf->scr = this->PCR; buf->decoder_info[0] = 1; m->fifo->put (m->fifo, buf); } @@ -556,8 +556,8 @@ static void demux_ts_buffer_pes(demux_ts *this, unsigned char *ts, buf->content = buf->mem; buf->size = len; buf->type = m->type; - buf->PTS = 0; - buf->SCR = 0; + buf->pts = 0; + buf->scr = 0; buf->input_pos = this->input->get_current_pos(this->input); buf->decoder_info[0] = 1; m->fifo->put (m->fifo, buf); -- cgit v1.2.3