mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 12:40:01 +00:00
Merge commit '796dca027be09334d7bbf4f2ac1200e06bb054cb'
* commit '796dca027be09334d7bbf4f2ac1200e06bb054cb':
alac: do not return success if nothing was decoded
See e11983bda0
Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
commit
f09aa73b30
@ -460,7 +460,7 @@ static int alac_decode_frame(AVCodecContext *avctx, void *data,
|
||||
avpkt->size * 8 - get_bits_count(&alac->gb));
|
||||
}
|
||||
|
||||
if (alac->channels == ch)
|
||||
if (alac->channels == ch && alac->nb_samples)
|
||||
*got_frame_ptr = 1;
|
||||
else
|
||||
av_log(avctx, AV_LOG_WARNING, "Failed to decode all channels\n");
|
||||
|
Loading…
Reference in New Issue
Block a user