You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
aacsbr_fixed: check for envelope scalefactors overflowing
This prevents various values from getting an insanely huge exponent.
If someone knows a cleaner solution, thats welcome!
This is similar to commit 8978c74
for aacsbr.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
@@ -169,6 +169,10 @@ static void sbr_dequant(SpectralBandReplication *sbr, int id_aac)
|
|||||||
else
|
else
|
||||||
temp1.mant = 0x20000000;
|
temp1.mant = 0x20000000;
|
||||||
temp1.exp = (temp1.exp >> 1) + 1;
|
temp1.exp = (temp1.exp >> 1) + 1;
|
||||||
|
if (temp1.exp > 66) { // temp1 > 1E20
|
||||||
|
av_log(NULL, AV_LOG_ERROR, "envelope scalefactor overflow in dequant\n");
|
||||||
|
temp1 = FLOAT_1;
|
||||||
|
}
|
||||||
|
|
||||||
temp2.exp = (pan_offset - sbr->data[1].env_facs[e][k].mant) * alpha;
|
temp2.exp = (pan_offset - sbr->data[1].env_facs[e][k].mant) * alpha;
|
||||||
if (temp2.exp & 1)
|
if (temp2.exp & 1)
|
||||||
@@ -188,6 +192,10 @@ static void sbr_dequant(SpectralBandReplication *sbr, int id_aac)
|
|||||||
temp1.exp = NOISE_FLOOR_OFFSET - \
|
temp1.exp = NOISE_FLOOR_OFFSET - \
|
||||||
sbr->data[0].noise_facs[e][k].mant + 2;
|
sbr->data[0].noise_facs[e][k].mant + 2;
|
||||||
temp1.mant = 0x20000000;
|
temp1.mant = 0x20000000;
|
||||||
|
if (temp1.exp > 66) { // temp1 > 1E20
|
||||||
|
av_log(NULL, AV_LOG_ERROR, "envelope scalefactor overflow in dequant\n");
|
||||||
|
temp1 = FLOAT_1;
|
||||||
|
}
|
||||||
temp2.exp = 12 - sbr->data[1].noise_facs[e][k].mant + 1;
|
temp2.exp = 12 - sbr->data[1].noise_facs[e][k].mant + 1;
|
||||||
temp2.mant = 0x20000000;
|
temp2.mant = 0x20000000;
|
||||||
fac = av_div_sf(temp1, av_add_sf(FLOAT_1, temp2));
|
fac = av_div_sf(temp1, av_add_sf(FLOAT_1, temp2));
|
||||||
@@ -208,7 +216,10 @@ static void sbr_dequant(SpectralBandReplication *sbr, int id_aac)
|
|||||||
else
|
else
|
||||||
temp1.mant = 0x20000000;
|
temp1.mant = 0x20000000;
|
||||||
temp1.exp = (temp1.exp >> 1) + 1;
|
temp1.exp = (temp1.exp >> 1) + 1;
|
||||||
|
if (temp1.exp > 66) { // temp1 > 1E20
|
||||||
|
av_log(NULL, AV_LOG_ERROR, "envelope scalefactor overflow in dequant\n");
|
||||||
|
temp1 = FLOAT_1;
|
||||||
|
}
|
||||||
sbr->data[ch].env_facs[e][k] = temp1;
|
sbr->data[ch].env_facs[e][k] = temp1;
|
||||||
}
|
}
|
||||||
for (e = 1; e <= sbr->data[ch].bs_num_noise; e++)
|
for (e = 1; e <= sbr->data[ch].bs_num_noise; e++)
|
||||||
|
Reference in New Issue
Block a user