Commit d7fa58c0 authored by Sascha Sommer's avatar Sascha Sommer

fix indentation

Originally committed as revision 26266 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8b5a780e
...@@ -1366,8 +1366,9 @@ static int decode_frame(WMAProDecodeCtx *s) ...@@ -1366,8 +1366,9 @@ static int decode_frame(WMAProDecodeCtx *s)
if (s->len_prefix) { if (s->len_prefix) {
if (len != (get_bits_count(gb) - s->frame_offset) + 2) { if (len != (get_bits_count(gb) - s->frame_offset) + 2) {
/** FIXME: not sure if this is always an error */ /** FIXME: not sure if this is always an error */
av_log(s->avctx, AV_LOG_ERROR, "frame[%i] would have to skip %i bits\n", av_log(s->avctx, AV_LOG_ERROR,
s->frame_num, len - (get_bits_count(gb) - s->frame_offset) - 1); "frame[%i] would have to skip %i bits\n", s->frame_num,
len - (get_bits_count(gb) - s->frame_offset) - 1);
s->packet_loss = 1; s->packet_loss = 1;
return 0; return 0;
} }
......
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