comparison aaccoder.c @ 10109:68f824761c1b libavcodec

Re-add search_for_ms to the coefficients encoders to silence warnings
author alexc
date Thu, 27 Aug 2009 17:46:13 +0000
parents 4b6f16da6652
children 39285535090c
comparison
equal deleted inserted replaced
10108:eb28ab65409c 10109:68f824761c1b
1011 AACCoefficientsEncoder ff_aac_coders[] = { 1011 AACCoefficientsEncoder ff_aac_coders[] = {
1012 { 1012 {
1013 search_for_quantizers_faac, 1013 search_for_quantizers_faac,
1014 encode_window_bands_info, 1014 encode_window_bands_info,
1015 quantize_and_encode_band, 1015 quantize_and_encode_band,
1016 // search_for_ms, 1016 search_for_ms,
1017 }, 1017 },
1018 { 1018 {
1019 search_for_quantizers_anmr, 1019 search_for_quantizers_anmr,
1020 encode_window_bands_info, 1020 encode_window_bands_info,
1021 quantize_and_encode_band, 1021 quantize_and_encode_band,
1022 // search_for_ms, 1022 search_for_ms,
1023 }, 1023 },
1024 { 1024 {
1025 search_for_quantizers_twoloop, 1025 search_for_quantizers_twoloop,
1026 encode_window_bands_info, 1026 encode_window_bands_info,
1027 quantize_and_encode_band, 1027 quantize_and_encode_band,
1028 // search_for_ms, 1028 search_for_ms,
1029 }, 1029 },
1030 { 1030 {
1031 search_for_quantizers_fast, 1031 search_for_quantizers_fast,
1032 encode_window_bands_info, 1032 encode_window_bands_info,
1033 quantize_and_encode_band, 1033 quantize_and_encode_band,
1034 // search_for_ms, 1034 search_for_ms,
1035 }, 1035 },
1036 }; 1036 };