Browse Source

cosmetics: simplify latm_decode_init

tags/n0.9
Janne Grunau 14 years ago
parent
commit
28287045ca
1 changed files with 2 additions and 7 deletions
  1. +2
    -7
      libavcodec/aacdec.c

+ 2
- 7
libavcodec/aacdec.c View File

@@ -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)
{
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;
} else {
latmctx->initialized = 0;
}

return ret;
}


Loading…
Cancel
Save