diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-02-09 07:13:22 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-02-09 07:13:22 +0000 |
commit | 8700c75544d88f1479d5455b5b2788921d4dd5ee (patch) | |
tree | 7a80e2b00e4e7294c7d7ca1440c4d136ccf12998 /src/demuxers/demux_pes.c | |
parent | 2f8fed75fc94e7afe89f7b60586f7cb55737efe1 (diff) | |
download | xine-lib-8700c75544d88f1479d5455b5b2788921d4dd5ee.tar.gz xine-lib-8700c75544d88f1479d5455b5b2788921d4dd5ee.tar.bz2 |
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
Diffstat (limited to 'src/demuxers/demux_pes.c')
-rw-r--r-- | src/demuxers/demux_pes.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/demuxers/demux_pes.c b/src/demuxers/demux_pes.c index 26d36ecad..2a5305aee 100644 --- a/src/demuxers/demux_pes.c +++ b/src/demuxers/demux_pes.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_pes.c,v 1.17 2002/01/02 18:16:07 jkeil Exp $ + * $Id: demux_pes.c,v 1.18 2002/02/09 07:13:23 guenter Exp $ * * demultiplexer for mpeg 2 PES (Packetized Elementary Streams) * reads streams of variable blocksizes @@ -183,8 +183,8 @@ static void parse_mpeg2_packet (demux_pes_t *this, int nID) { return ; } buf->type = BUF_AUDIO_A52 + track; - buf->PTS = pts; - buf->SCR = pts; /* FIMXE! */ + buf->pts = pts; + buf->scr = pts; /* FIMXE! */ if (this->preview_mode) buf->decoder_info[0] = 0; else @@ -229,8 +229,8 @@ static void parse_mpeg2_packet (demux_pes_t *this, int nID) { return ; } buf->type = BUF_AUDIO_MPEG + track; - buf->PTS = pts; - buf->SCR = pts; /* FIXME ! */ + buf->pts = pts; + buf->scr = pts; /* FIXME ! */ if (this->preview_mode) buf->decoder_info[0] = 0; else @@ -275,8 +275,8 @@ static void parse_mpeg2_packet (demux_pes_t *this, int nID) { return ; } buf->type = BUF_VIDEO_MPEG; - buf->PTS = pts; - buf->SCR = pts; /* FIXME! */ + buf->pts = pts; + buf->scr = pts; /* FIXME! */ if (this->preview_mode) buf->decoder_info[0] = 0; else |