summaryrefslogtreecommitdiff
path: root/libavcodec/alac.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-04-29 19:49:45 +0200
committerDiego Biurrun <diego@biurrun.de>2011-07-16 01:21:17 +0200
commit8b587fa29207a98c235660b3f129bac110620ec5 (patch)
tree6f3bc1e1d5458150555f13445e8e812ecedddf2e /libavcodec/alac.c
parent356be9307cbffa1226bed52b26aa2ac9c7af174f (diff)
alac: Remove unused dummy code.
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r--libavcodec/alac.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index f7e674927b..f8534f9a0f 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -284,20 +284,9 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
buffer_out[i+1] = val;
}
-#if 0
/* 4 and 8 are very common cases (the only ones i've seen). these
* should be unrolled and optimized
*/
- if (predictor_coef_num == 4) {
- /* FIXME: optimized general case */
- return;
- }
-
- if (predictor_coef_table == 8) {
- /* FIXME: optimized general case */
- return;
- }
-#endif
/* general case */
if (predictor_coef_num > 0) {