[Ffmpeg-cvslog] r6628 - trunk/libavformat/mxf.c

bcoudurier subversion
Tue Oct 10 14:58:35 CEST 2006


Author: bcoudurier
Date: Tue Oct 10 14:58:34 2006
New Revision: 6628

Modified:
   trunk/libavformat/mxf.c

Log:
dont seek back if no sync to let eof happen

Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c	(original)
+++ trunk/libavformat/mxf.c	Tue Oct 10 14:58:34 2006
@@ -1030,7 +1030,6 @@
 static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
 {
     AVStream *st = s->streams[stream_index];
-    offset_t pos = url_ftell(&s->pb);
     int64_t seconds;
     int i;
 
@@ -1051,7 +1050,6 @@
         av_update_cur_dts(s, st, sample_time);
         return 0;
     }
-    url_fseek(&s->pb, pos, SEEK_SET);
     return -1;
 }
 




More information about the ffmpeg-cvslog mailing list