You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
Remove redundant code, found by CSA
Originally committed as revision 18661 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -707,8 +707,7 @@ static void fill_coding_method_array (sb_int8_array tone_level_idx, sb_int8_arra
|
|||||||
for (sb = 0; sb < 30; sb++)
|
for (sb = 0; sb < 30; sb++)
|
||||||
for (j = 0; j < 64; j++)
|
for (j = 0; j < 64; j++)
|
||||||
acc += tone_level_idx_temp[ch][sb][j];
|
acc += tone_level_idx_temp[ch][sb][j];
|
||||||
if (acc)
|
|
||||||
tmp = c * 256 / (acc & 0xffff);
|
|
||||||
multres = 0x66666667 * (acc * 10);
|
multres = 0x66666667 * (acc * 10);
|
||||||
esp_40 = (multres >> 32) / 8 + ((multres & 0xffffffff) >> 31);
|
esp_40 = (multres >> 32) / 8 + ((multres & 0xffffffff) >> 31);
|
||||||
for (ch = 0; ch < nb_channels; ch++)
|
for (ch = 0; ch < nb_channels; ch++)
|
||||||
@@ -1835,7 +1834,6 @@ static av_cold int qdm2_decode_init(AVCodecContext *avctx)
|
|||||||
extradata += 4;
|
extradata += 4;
|
||||||
|
|
||||||
s->checksum_size = AV_RB32(extradata);
|
s->checksum_size = AV_RB32(extradata);
|
||||||
extradata += 4;
|
|
||||||
|
|
||||||
s->fft_order = av_log2(s->fft_size) + 1;
|
s->fft_order = av_log2(s->fft_size) + 1;
|
||||||
s->fft_frame_size = 2 * s->fft_size; // complex has two floats
|
s->fft_frame_size = 2 * s->fft_size; // complex has two floats
|
||||||
|
Reference in New Issue
Block a user