On Thu, Feb 23, 2012 at 11:10 AM, Alex Converse <[email protected]> wrote:
> ---
>  libavcodec/aacdec.c |    3 +--
>  1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
> index f491a09..186de96 100644
> --- a/libavcodec/aacdec.c
> +++ b/libavcodec/aacdec.c
> @@ -1016,7 +1016,6 @@ static int decode_scalefactors(AACContext *ac, float
> sf[120], GetBitContext *gb,
>     int offset[3] = { global_gain, global_gain - 90, 0 };
>     int clipped_offset;
>     int noise_flag = 1;
> -    static const char *const sf_str[3] = { "Global gain", "Noise gain",
> "Intensity stereo position" };
>     for (g = 0; g < ics->num_window_groups; g++) {
>         for (i = 0; i < ics->max_sfb;) {
>             int run_end = band_type_run_end[idx];
> @@ -1055,7 +1054,7 @@ static int decode_scalefactors(AACContext *ac, float
> sf[120], GetBitContext *gb,
>                     offset[0] += get_vlc2(gb, vlc_scalefactors.table, 7,
> 3) - 60;
>                     if (offset[0] > 255U) {
>                         av_log(ac->avctx, AV_LOG_ERROR,
> -                               "%s (%d) out of range.\n", sf_str[0],
> offset[0]);
> +                               "Scalefactor (%d) out of range.\n",
> offset[0]);
>                         return -1;
>                     }
>                     sf[idx] = -ff_aac_pow2sf_tab[offset[0] - 100 +
> POW_SF2_ZERO];
> --
> 1.7.7.3

ping?
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to