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

Make remaining run level decode comments doxygen comments

Originally committed as revision 19235 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4df8bdee
......@@ -479,13 +479,13 @@ int ff_wma_run_level_decode(AVCodecContext* avctx, GetBitContext* gb,
offset += run_table[code];
level = level_table[code];
} else if (code == 1) {
/* EOB */
/** EOB */
break;
} else {
/* escape */
/** escape */
if (!version) {
level = get_bits(gb, coef_nb_bits);
/* NOTE: this is rather suboptimal. reading
/** NOTE: this is rather suboptimal. reading
block_len_bits would be better */
offset += get_bits(gb, frame_len_bits);
} else {
......
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