ext/ffmpeg/gstffmpegdec.c: Flush buffers in flush-stop, not flush-start, since the...
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 15 Aug 2005 13:27:03 +0000 (13:27 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 15 Aug 2005 13:27:03 +0000 (13:27 +0000)
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_sink_event):
Flush buffers in flush-stop, not flush-start, since the task is not
stopped yet in flush-stop, which may lead to odd crashes in random
places inside libavcodec.

ChangeLog
ext/ffmpeg/gstffmpegdec.c

index c1a6c73..ce26e25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-08-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
+
+       * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_sink_event):
+         Flush buffers in flush-stop, not flush-start, since the task is not
+         stopped yet in flush-stop, which may lead to odd crashes in random
+         places inside libavcodec.
+
 2005-08-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
 
        * ext/ffmpeg/gstffmpegcodecmap.c:
index bff2b67..af717b3 100644 (file)
@@ -916,7 +916,7 @@ gst_ffmpegdec_sink_event (GstPad * pad, GstEvent * event)
         } while (try++ < 10);
       }
       goto forward;
-    case GST_EVENT_FLUSH_START:
+    case GST_EVENT_FLUSH_STOP:
       if (ffmpegdec->opened) {
         avcodec_flush_buffers (ffmpegdec->context);
       }