Commit 4d67e067 authored by Sascha Sommer's avatar Sascha Sommer

Fix indentation after the previous commit

Originally committed as revision 19233 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 891bd2e5
......@@ -483,10 +483,10 @@ int ff_wma_run_level_decode(AVCodecContext* avctx, GetBitContext* gb,
} else if (code == 0) {
/* escape */
if (!version) {
level = get_bits(gb, coef_nb_bits);
/* NOTE: this is rather suboptimal. reading
block_len_bits would be better */
run = get_bits(gb, frame_len_bits);
level = get_bits(gb, coef_nb_bits);
/* NOTE: this is rather suboptimal. reading
block_len_bits would be better */
run = get_bits(gb, frame_len_bits);
} else {
level = ff_wma_get_large_val(gb);
/** escape decode */
......
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