[FFmpeg-cvslog] alac: Remove unused dummy code.
Diego Biurrun
git at videolan.org
Sat Jul 16 19:49:08 CEST 2011
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Fri Apr 29 19:49:45 2011 +0200| [8b587fa29207a98c235660b3f129bac110620ec5] | committer: Diego Biurrun
alac: Remove unused dummy code.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b587fa29207a98c235660b3f129bac110620ec5
---
libavcodec/alac.c | 11 -----------
1 files changed, 0 insertions(+), 11 deletions(-)
diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index f7e6749..f8534f9 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) {
More information about the ffmpeg-cvslog
mailing list