On Mon, Sep 16, 2013 at 04:02:08PM -0700, Alex Converse wrote:
> ---
>  Changelog           |  1 +
>  libavcodec/aac.h    |  1 +
>  libavcodec/aacdec.c | 66 
> ++++++++++++++++++++++++++++++++++++++++++++++++++---
>  libavcodec/aactab.c | 36 +++++++++++++++++++++++++++++
>  libavcodec/aactab.h |  3 +++
>  5 files changed, 104 insertions(+), 3 deletions(-)

\o/ - nice to see this!

version bump?

> --- a/libavcodec/aacdec.c
> +++ b/libavcodec/aacdec.c
> @@ -2410,6 +2460,12 @@ static void apply_channel_coupling(AACContext *ac, 
> ChannelElement *cc,
>  static void spectral_to_sample(AACContext *ac)
>  {
>      int i, type;
> +    void (*imdct_and_windowing)(AACContext *ac, SingleChannelElement *sce);
> +    if (ac->oc[1].m4ac.object_type == AOT_ER_AAC_LD) {
> +        imdct_and_windowing = imdct_and_windowing_ld;
> +    } else {
> +        imdct_and_windowing = imdct_and_windowing_classic;
> +    }

nit: drop {}

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

Reply via email to