summaryrefslogtreecommitdiff
path: root/libavcodec/aaccoder.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2009-08-27 17:46:13 +0000
committerAlex Converse <alex.converse@gmail.com>2009-08-27 17:46:13 +0000
commitdd0e43e4bbd4d4c3d3660316baa4fd52bfe55783 (patch)
treed2ec7a161ea721811d807b2013bd31b8521813b7 /libavcodec/aaccoder.c
parentbf8202f35246bde7faef1f958d9df7a4d59f5249 (diff)
Re-add search_for_ms to the coefficients encoders to silence warnings
Originally committed as revision 19733 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aaccoder.c')
-rw-r--r--libavcodec/aaccoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/aaccoder.c b/libavcodec/aaccoder.c
index be954dd9f8..ed1d241eb8 100644
--- a/libavcodec/aaccoder.c
+++ b/libavcodec/aaccoder.c
@@ -1013,24 +1013,24 @@ AACCoefficientsEncoder ff_aac_coders[] = {
search_for_quantizers_faac,
encode_window_bands_info,
quantize_and_encode_band,
-// search_for_ms,
+ search_for_ms,
},
{
search_for_quantizers_anmr,
encode_window_bands_info,
quantize_and_encode_band,
-// search_for_ms,
+ search_for_ms,
},
{
search_for_quantizers_twoloop,
encode_window_bands_info,
quantize_and_encode_band,
-// search_for_ms,
+ search_for_ms,
},
{
search_for_quantizers_fast,
encode_window_bands_info,
quantize_and_encode_band,
-// search_for_ms,
+ search_for_ms,
},
};