On Fri, Oct 28, 2011 at 03:17:11PM +0200, Janne Grunau wrote:
> ---
>  libavcodec/aacdec.c |   28 ++++++++++++++++------------
>  1 files changed, 16 insertions(+), 12 deletions(-)
> 
> diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
> index d59e1a8..aa02243 100644
> --- a/libavcodec/aacdec.c
> +++ b/libavcodec/aacdec.c
> @@ -2313,8 +2313,9 @@ static inline uint32_t latm_get_value(GetBitContext *b)
>  static int latm_decode_audio_specific_config(struct LATMContext *latmctx,
>                                               GetBitContext *gb, int asclen)
>  {
> -    AVCodecContext *avctx = latmctx->aac_ctx.avctx;
> -    MPEG4AudioConfig m4ac;
> +    AACContext *ac        = &latmctx->aac_ctx;
> +    AVCodecContext *avctx = ac->avctx;
> +    MPEG4AudioConfig m4ac = {0};;

stray semicolon</diego>
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to