From b602849ad7cd8ce3b9c99da97bc3b4138cf8159d Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Sat, 10 Nov 2001 13:48:02 +0000 Subject: very unfinished scr discontinuity detection stuff, new software audio out buffer and thread CVS patchset: 1010 CVS date: 2001/11/10 13:48:02 --- src/demuxers/demux_avi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/demuxers/demux_avi.c') diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c index 81afaf1f9..2e831110c 100644 --- a/src/demuxers/demux_avi.c +++ b/src/demuxers/demux_avi.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_avi.c,v 1.50 2001/11/07 19:06:15 miguelfreitas Exp $ + * $Id: demux_avi.c,v 1.51 2001/11/10 13:48:02 guenter Exp $ * * demultiplexer for avi streams * @@ -724,6 +724,7 @@ static int demux_avi_next (demux_avi_t *this) { xprintf (VERBOSE|DEMUX|VAVI, "demux_avi: audio \n"); buf->PTS = audio_pts; + buf->SCR = audio_pts; buf->size = AVI_read_audio (this, this->avi, buf->mem, 2048, &buf->decoder_info[0]); if (buf->size<0) { @@ -750,6 +751,7 @@ static int demux_avi_next (demux_avi_t *this) { xprintf (VERBOSE|DEMUX|VAVI, "demux_avi: video \n"); buf->PTS = video_pts; + buf->SCR = video_pts; buf->size = AVI_read_video (this, this->avi, buf->mem, 2048, &buf->decoder_info[0]); buf->type = this->avi->video_type; -- cgit v1.2.3