mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
audioresample: add missing break in event handling, remove dead code
This commit is contained in:
parent
bcaec3d907
commit
388fa77c11
1 changed files with 2 additions and 4 deletions
|
@ -853,13 +853,12 @@ gst_audio_resample_event (GstBaseTransform * base, GstEvent * event)
|
|||
GstAudioResample *resample = GST_AUDIO_RESAMPLE (base);
|
||||
|
||||
switch (GST_EVENT_TYPE (event)) {
|
||||
case GST_EVENT_FLUSH_START:
|
||||
break;
|
||||
case GST_EVENT_FLUSH_STOP:
|
||||
gst_audio_resample_reset_state (resample);
|
||||
resample->next_offset = -1;
|
||||
resample->next_ts = -1;
|
||||
resample->next_upstream_ts = -1;
|
||||
break;
|
||||
case GST_EVENT_NEWSEGMENT:
|
||||
gst_audio_resample_push_drain (resample);
|
||||
gst_audio_resample_reset_state (resample);
|
||||
|
@ -867,11 +866,10 @@ gst_audio_resample_event (GstBaseTransform * base, GstEvent * event)
|
|||
resample->next_ts = -1;
|
||||
resample->next_upstream_ts = -1;
|
||||
break;
|
||||
case GST_EVENT_EOS:{
|
||||
case GST_EVENT_EOS:
|
||||
gst_audio_resample_push_drain (resample);
|
||||
gst_audio_resample_reset_state (resample);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue