diff options
author | Mathieu Duponchelle <mathieu@centricular.com> | 2018-01-08 15:23:24 +0100 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2018-01-11 15:13:31 +0100 |
commit | 34abfbff18a0864c9b244ccb274183aa03cabcde (patch) | |
tree | 98052b4f6bcc7e6f1fcafe000cc7d2f033e88611 /ext | |
parent | d90b6ec45979fdd2b3fdd114d523d78d8395a2f1 (diff) |
flacdec: flush flac decoder on lost sync.
This to allow the decoder to start searching for a new
frame again.
https://bugzilla.gnome.org/show_bug.cgi?id=791473
Diffstat (limited to 'ext')
-rw-r--r-- | ext/flac/gstflacdec.c | 10 | ||||
-rw-r--r-- | ext/flac/gstflacdec.h | 1 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c index dbaa0f171..15f19e670 100644 --- a/ext/flac/gstflacdec.c +++ b/ext/flac/gstflacdec.c @@ -178,6 +178,7 @@ gst_flac_dec_class_init (GstFlacDecClass * klass) static void gst_flac_dec_init (GstFlacDec * flacdec) { + flacdec->do_resync = FALSE; gst_audio_decoder_set_needs_format (GST_AUDIO_DECODER (flacdec), TRUE); gst_audio_decoder_set_use_default_pad_acceptcaps (GST_AUDIO_DECODER_CAST (flacdec), TRUE); @@ -511,7 +512,7 @@ gst_flac_dec_error_cb (const FLAC__StreamDecoder * d, switch (status) { case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC: - /* Ignore this error and keep processing */ + dec->do_resync = TRUE; return; case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER: error = "bad header"; @@ -741,6 +742,7 @@ gst_flac_dec_flush (GstAudioDecoder * audio_dec, gboolean hard) } } + dec->do_resync = FALSE; FLAC__stream_decoder_flush (dec->decoder); gst_adapter_clear (dec->adapter); } @@ -758,6 +760,12 @@ gst_flac_dec_handle_frame (GstAudioDecoder * audio_dec, GstBuffer * buf) return GST_FLOW_OK; } + if (dec->do_resync) { + GST_WARNING_OBJECT (dec, "Lost sync, flushing decoder"); + FLAC__stream_decoder_flush (dec->decoder); + dec->do_resync = FALSE; + } + GST_LOG_OBJECT (dec, "frame: ts %" GST_TIME_FORMAT ", flags 0x%04x, " "%" G_GSIZE_FORMAT " bytes", GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)), GST_BUFFER_FLAGS (buf), gst_buffer_get_size (buf)); diff --git a/ext/flac/gstflacdec.h b/ext/flac/gstflacdec.h index e8d073a51..c63b300ba 100644 --- a/ext/flac/gstflacdec.h +++ b/ext/flac/gstflacdec.h @@ -59,6 +59,7 @@ struct _GstFlacDec { guint16 min_blocksize; guint16 max_blocksize; + gboolean do_resync; gint error_count; }; |