diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2008-06-02 17:06:34 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2008-06-02 17:06:34 +0000 |
commit | f638d690fe173b9d9d7f10a0146057480f9a8eaf (patch) | |
tree | 62c31ef885949b5a83e7ecba0acea5497a916f6f /ext/faad | |
parent | 8104f31c71d67e2db47496977ee623ae22e89c12 (diff) | |
download | gst-plugins-bad-f638d690fe173b9d9d7f10a0146057480f9a8eaf.tar.gz gst-plugins-bad-f638d690fe173b9d9d7f10a0146057480f9a8eaf.tar.bz2 gst-plugins-bad-f638d690fe173b9d9d7f10a0146057480f9a8eaf.zip |
ext/faad/gstfaad.c: Always drain before activating the new segment.
Original commit message from CVS:
* ext/faad/gstfaad.c: (gst_faad_sink_event):
Always drain before activating the new segment.
Diffstat (limited to 'ext/faad')
-rw-r--r-- | ext/faad/gstfaad.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c index 178ff642..f1ba39f6 100644 --- a/ext/faad/gstfaad.c +++ b/ext/faad/gstfaad.c @@ -896,6 +896,9 @@ gst_faad_sink_event (GstPad * pad, GstEvent * event) gst_event_parse_new_segment (event, &is_update, &rate, &fmt, &start, &end, &base); + /* drain queued buffers before we activate the new segment */ + gst_faad_drain (faad); + if (fmt == GST_FORMAT_TIME) { GST_DEBUG ("Got NEWSEGMENT event in GST_FORMAT_TIME, passing on (%" GST_TIME_FORMAT " - %" GST_TIME_FORMAT ")", GST_TIME_ARGS (start), @@ -921,9 +924,6 @@ gst_faad_sink_event (GstPad * pad, GstEvent * event) } gst_event_unref (event); - /* drain queued buffers before we activate the new segment */ - gst_faad_drain (faad); - event = gst_event_new_new_segment (is_update, rate, GST_FORMAT_TIME, new_start, new_end, new_start); |