From 470531d56ee560a63be8e6ab84b1b3e18cb8415b Mon Sep 17 00:00:00 2001 From: Matej Knopp Date: Sun, 28 Jul 2013 23:38:17 +0200 Subject: [PATCH] audiorate: ignore GAP event audiorate automatically fills gaps with silence. https://bugzilla.gnome.org/show_bug.cgi?id=705048 --- gst/audiorate/gstaudiorate.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gst/audiorate/gstaudiorate.c b/gst/audiorate/gstaudiorate.c index ecd174966b..7f64fd13f5 100644 --- a/gst/audiorate/gstaudiorate.c +++ b/gst/audiorate/gstaudiorate.c @@ -340,6 +340,11 @@ gst_audio_rate_sink_event (GstPad * pad, GstObject * parent, GstEvent * event) gst_audio_rate_fill_to_time (audiorate, audiorate->src_segment.stop); res = gst_pad_push_event (audiorate->srcpad, event); break; + case GST_EVENT_GAP: + /* no gaps after audiorate, ignore the event */ + gst_event_unref (event); + res = TRUE; + break; default: res = gst_pad_event_default (pad, parent, event); break;