diff options
Diffstat (limited to 'ext/flac/gstflacdec.c')
-rw-r--r-- | ext/flac/gstflacdec.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c index 67291482..d7619b55 100644 --- a/ext/flac/gstflacdec.c +++ b/ext/flac/gstflacdec.c @@ -242,9 +242,6 @@ gst_flacdec_loop (GstElement *element) FLAC__stream_decoder_process_metadata (flacdec->decoder); } - do { - FLAC__stream_decoder_process_one_frame (flacdec->decoder); - } - while (!GST_ELEMENT_IS_COTHREAD_STOPPING (element)); + FLAC__stream_decoder_process_one_frame (flacdec->decoder); } |