diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-08-05 02:31:13 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-08-05 02:31:13 +0000 |
commit | a521aadfe81305aa0d395170ce2ac03b159cc889 (patch) | |
tree | d7b7c86c85569bdf4c4e06c82062cd66a77ebe59 /libavcodec | |
parent | 25dcd1823c6fd0be6b41a36c4909a2aa78e8096f (diff) | |
download | ffmpeg-a521aadfe81305aa0d395170ce2ac03b159cc889.tar.gz |
cosmetics: reindent after last commit
Originally committed as revision 19589 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ac3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 56024bb7a0..f2cadf0800 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -462,7 +462,7 @@ static void ac3_decode_transform_coeffs_ch(AC3DecodeContext *s, int ch_index, ma switch(bap){ case 0: if (dither) - mantissa = (av_lfg_get(&s->dith_state) & 0x7FFFFF) - 0x400000; + mantissa = (av_lfg_get(&s->dith_state) & 0x7FFFFF) - 0x400000; else mantissa = 0; break; |