You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
cosmetics: simplify latm_decode_init
This commit is contained in:
@@ -2533,15 +2533,10 @@ static int latm_decode_frame(AVCodecContext *avctx, void *out, int *out_size,
|
|||||||
av_cold static int latm_decode_init(AVCodecContext *avctx)
|
av_cold static int latm_decode_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
struct LATMContext *latmctx = avctx->priv_data;
|
struct LATMContext *latmctx = avctx->priv_data;
|
||||||
int ret;
|
int ret = aac_decode_init(avctx);
|
||||||
|
|
||||||
ret = aac_decode_init(avctx);
|
if (avctx->extradata_size > 0)
|
||||||
|
|
||||||
if (avctx->extradata_size > 0) {
|
|
||||||
latmctx->initialized = !ret;
|
latmctx->initialized = !ret;
|
||||||
} else {
|
|
||||||
latmctx->initialized = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user