return;
}
- gst_amc_audio_dec_drain (self);
self->flushing = TRUE;
gst_amc_codec_flush (self->codec);
- self->flushing = FALSE;
/* Wait until the srcpad loop is finished,
* unlock GST_AUDIO_DECODER_STREAM_LOCK to prevent deadlocks
GST_PAD_STREAM_LOCK (GST_AUDIO_DECODER_SRC_PAD (self));
GST_PAD_STREAM_UNLOCK (GST_AUDIO_DECODER_SRC_PAD (self));
GST_AUDIO_DECODER_STREAM_LOCK (self);
+ self->flushing = FALSE;
/* Start the srcpad loop again */
self->last_upstream_ts = 0;
/*} */
if (idx < 0) {
- if (self->flushing)
+ if (self->flushing || self->downstream_flow_ret == GST_FLOW_WRONG_STATE)
goto flushing;
switch (idx) {
if ((flow_ret = gst_video_decoder_alloc_output_frame (GST_VIDEO_DECODER
(self), frame)) != GST_FLOW_OK) {
GST_ERROR_OBJECT (self, "Failed to allocate buffer");
- goto failed_allocate;
+ goto flow_error;
}
if (!gst_amc_video_dec_fill_buffer (self, idx, &buffer_info,
GST_VIDEO_DECODER_STREAM_UNLOCK (self);
return;
}
-
-failed_allocate:
- {
- GST_ELEMENT_ERROR (self, LIBRARY, SETTINGS, (NULL),
- ("Failed to allocate output buffer"));
- gst_pad_push_event (GST_VIDEO_DECODER_SRC_PAD (self), gst_event_new_eos ());
- gst_pad_pause_task (GST_VIDEO_DECODER_SRC_PAD (self));
- self->downstream_flow_ret = GST_FLOW_ERROR;
- GST_VIDEO_DECODER_STREAM_UNLOCK (self);
- return;
- }
}
static gboolean
return TRUE;
}
- gst_amc_video_dec_drain (self);
self->flushing = TRUE;
gst_amc_codec_flush (self->codec);
- self->flushing = FALSE;
/* Wait until the srcpad loop is finished,
* unlock GST_VIDEO_DECODER_STREAM_LOCK to prevent deadlocks
GST_PAD_STREAM_LOCK (GST_VIDEO_DECODER_SRC_PAD (self));
GST_PAD_STREAM_UNLOCK (GST_VIDEO_DECODER_SRC_PAD (self));
GST_VIDEO_DECODER_STREAM_LOCK (self);
+ self->flushing = FALSE;
/* Start the srcpad loop again */
self->last_upstream_ts = 0;