mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
cosmetic: use hex value instead of decimal to show relation to 0x7FFFFF
Originally committed as revision 14290 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
df8a7dff29
commit
7645da9194
@ -437,7 +437,7 @@ static void get_transform_coeffs_ch(AC3DecodeContext *s, int ch_index, mant_grou
|
||||
tbap = bap[i];
|
||||
switch (tbap) {
|
||||
case 0:
|
||||
coeffs[i] = (av_random(&s->dith_state) & 0x7FFFFF) - 4194304;
|
||||
coeffs[i] = (av_random(&s->dith_state) & 0x7FFFFF) - 0x400000;
|
||||
break;
|
||||
|
||||
case 1:
|
||||
|
Loading…
Reference in New Issue
Block a user