diff options
author | James Almer <jamrial@gmail.com> | 2017-04-07 00:04:37 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-04-07 00:04:37 -0300 |
commit | c37e8c0b7fd4a68604102eb4c9d9c9f347c57ad2 (patch) | |
tree | 3da89fce5778674f4afbdeeb3f32f28ea0dae7f3 /libavcodec/ac3enc_float.c | |
parent | bfb2e20737cb310bd352b46a286a73e7a689e0d4 (diff) | |
parent | e22c63ac74b2968075be8bf0d2deb1ee63b28976 (diff) | |
download | ffmpeg-c37e8c0b7fd4a68604102eb4c9d9c9f347c57ad2.tar.gz |
Merge commit 'e22c63ac74b2968075be8bf0d2deb1ee63b28976'
* commit 'e22c63ac74b2968075be8bf0d2deb1ee63b28976':
ac3enc: Reshuffle some float/fixed-mode ifdefs to avoid a dummy function
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/ac3enc_float.c')
-rw-r--r-- | libavcodec/ac3enc_float.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/ac3enc_float.c b/libavcodec/ac3enc_float.c index caa210d5ad..79839df6ce 100644 --- a/libavcodec/ac3enc_float.c +++ b/libavcodec/ac3enc_float.c @@ -87,16 +87,6 @@ av_cold int ff_ac3_float_mdct_init(AC3EncodeContext *s) /* - * Normalize the input samples. - * Not needed for the floating-point encoder. - */ -static int normalize_samples(AC3EncodeContext *s) -{ - return 0; -} - - -/* * Scale MDCT coefficients from float to 24-bit fixed-point. */ static void scale_coefficients(AC3EncodeContext *s) |