diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2018-01-06 17:56:21 +0100 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2018-02-09 22:10:56 +0100 |
commit | c69054fa24f5125eea3c817e8a76fe6422ea165d (patch) | |
tree | 1c56853796f932ceeab799ad4e395f5ea4215030 /libavcodec | |
parent | d8258489c87e5571337056be6ce1c2aa739e6873 (diff) | |
download | ffmpeg-c69054fa24f5125eea3c817e8a76fe6422ea165d.tar.gz |
aptx: indentation (cosmetics only)
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aptx.c | 104 |
1 files changed, 52 insertions, 52 deletions
diff --git a/libavcodec/aptx.c b/libavcodec/aptx.c index 6c0f3d35a9..8750d8421f 100644 --- a/libavcodec/aptx.c +++ b/libavcodec/aptx.c @@ -394,58 +394,58 @@ typedef const struct { } ConstTables; static ConstTables tables[2][NB_SUBBANDS] = { -{ - [LF] = { quantize_intervals_LF, - invert_quantize_dither_factors_LF, - quantize_dither_factors_LF, - quantize_factor_select_offset_LF, - FF_ARRAY_ELEMS(quantize_intervals_LF), - 0x11FF, 24 }, - [MLF] = { quantize_intervals_MLF, - invert_quantize_dither_factors_MLF, - quantize_dither_factors_MLF, - quantize_factor_select_offset_MLF, - FF_ARRAY_ELEMS(quantize_intervals_MLF), - 0x14FF, 12 }, - [MHF] = { quantize_intervals_MHF, - invert_quantize_dither_factors_MHF, - quantize_dither_factors_MHF, - quantize_factor_select_offset_MHF, - FF_ARRAY_ELEMS(quantize_intervals_MHF), - 0x16FF, 6 }, - [HF] = { quantize_intervals_HF, - invert_quantize_dither_factors_HF, - quantize_dither_factors_HF, - quantize_factor_select_offset_HF, - FF_ARRAY_ELEMS(quantize_intervals_HF), - 0x15FF, 12 }, -}, -{ - [LF] = { hd_quantize_intervals_LF, - hd_invert_quantize_dither_factors_LF, - hd_quantize_dither_factors_LF, - hd_quantize_factor_select_offset_LF, - FF_ARRAY_ELEMS(hd_quantize_intervals_LF), - 0x11FF, 24 }, - [MLF] = { hd_quantize_intervals_MLF, - hd_invert_quantize_dither_factors_MLF, - hd_quantize_dither_factors_MLF, - hd_quantize_factor_select_offset_MLF, - FF_ARRAY_ELEMS(hd_quantize_intervals_MLF), - 0x14FF, 12 }, - [MHF] = { hd_quantize_intervals_MHF, - hd_invert_quantize_dither_factors_MHF, - hd_quantize_dither_factors_MHF, - hd_quantize_factor_select_offset_MHF, - FF_ARRAY_ELEMS(hd_quantize_intervals_MHF), - 0x16FF, 6 }, - [HF] = { hd_quantize_intervals_HF, - hd_invert_quantize_dither_factors_HF, - hd_quantize_dither_factors_HF, - hd_quantize_factor_select_offset_HF, - FF_ARRAY_ELEMS(hd_quantize_intervals_HF), - 0x15FF, 12 }, -} + { + [LF] = { quantize_intervals_LF, + invert_quantize_dither_factors_LF, + quantize_dither_factors_LF, + quantize_factor_select_offset_LF, + FF_ARRAY_ELEMS(quantize_intervals_LF), + 0x11FF, 24 }, + [MLF] = { quantize_intervals_MLF, + invert_quantize_dither_factors_MLF, + quantize_dither_factors_MLF, + quantize_factor_select_offset_MLF, + FF_ARRAY_ELEMS(quantize_intervals_MLF), + 0x14FF, 12 }, + [MHF] = { quantize_intervals_MHF, + invert_quantize_dither_factors_MHF, + quantize_dither_factors_MHF, + quantize_factor_select_offset_MHF, + FF_ARRAY_ELEMS(quantize_intervals_MHF), + 0x16FF, 6 }, + [HF] = { quantize_intervals_HF, + invert_quantize_dither_factors_HF, + quantize_dither_factors_HF, + quantize_factor_select_offset_HF, + FF_ARRAY_ELEMS(quantize_intervals_HF), + 0x15FF, 12 }, + }, + { + [LF] = { hd_quantize_intervals_LF, + hd_invert_quantize_dither_factors_LF, + hd_quantize_dither_factors_LF, + hd_quantize_factor_select_offset_LF, + FF_ARRAY_ELEMS(hd_quantize_intervals_LF), + 0x11FF, 24 }, + [MLF] = { hd_quantize_intervals_MLF, + hd_invert_quantize_dither_factors_MLF, + hd_quantize_dither_factors_MLF, + hd_quantize_factor_select_offset_MLF, + FF_ARRAY_ELEMS(hd_quantize_intervals_MLF), + 0x14FF, 12 }, + [MHF] = { hd_quantize_intervals_MHF, + hd_invert_quantize_dither_factors_MHF, + hd_quantize_dither_factors_MHF, + hd_quantize_factor_select_offset_MHF, + FF_ARRAY_ELEMS(hd_quantize_intervals_MHF), + 0x16FF, 6 }, + [HF] = { hd_quantize_intervals_HF, + hd_invert_quantize_dither_factors_HF, + hd_quantize_dither_factors_HF, + hd_quantize_factor_select_offset_HF, + FF_ARRAY_ELEMS(hd_quantize_intervals_HF), + 0x15FF, 12 }, + } }; static const int16_t quantization_factors[32] = { |