Commit db462299 authored by jbr's avatar jbr

cosmetic: use hex value instead of decimal to show relation to 0x7FFFFF

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14290 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f91fb2c4
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment