mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-01 05:31:04 +08:00
alac: Remove unused dummy code.
This commit is contained in:
@ -284,20 +284,9 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
|
|||||||
buffer_out[i+1] = val;
|
buffer_out[i+1] = val;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* 4 and 8 are very common cases (the only ones i've seen). these
|
/* 4 and 8 are very common cases (the only ones i've seen). these
|
||||||
* should be unrolled and optimized
|
* 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 */
|
/* general case */
|
||||||
if (predictor_coef_num > 0) {
|
if (predictor_coef_num > 0) {
|
||||||
|
Reference in New Issue
Block a user