On Fri, Jan 20, 2012 at 5:40 PM, Alex Converse <[email protected]> wrote: > On Wed, Jan 18, 2012 at 10:12 PM, Nathan Caldwell <[email protected]> wrote: >> On Wed, Jan 18, 2012 at 10:41 PM, Nathan Caldwell <[email protected]> wrote: >>> --- >>> libavcodec/aacenc.c | 103 >>> ++++++++++++++++++++++++++++++++++----------------- >>> 1 files changed, 69 insertions(+), 34 deletions(-) >> >> Fix trailing whitespace. >> > >>+static void (*const apply_window[4])(DSPContext *dsp, SingleChannelElement >>*sce, const float *audio) = { >>+ [EIGHT_SHORT_SEQUENCE] = apply_eight_short_window, >>+ [LONG_START_SEQUENCE] = apply_long_start_window, >>+ [ONLY_LONG_SEQUENCE] = apply_only_long_window, >>+ [LONG_STOP_SEQUENCE] = apply_long_stop_window >>+}; > > maybe put these in order? > ONLY_LONG_SEQUENCE, > LONG_START_SEQUENCE, > EIGHT_SHORT_SEQUENCE, > LONG_STOP_SEQUENCE,
Hmm, thought they were in the same order as the enum. Not sure where I got the current order from. Fixed. -- -Nathan Caldwell _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
