cosmetics: reindent

Originally committed as revision 7486 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2007-01-14 18:18:14 +00:00
parent 0458e79074
commit ae5574508e
1 changed files with 5 additions and 5 deletions

View File

@ -103,11 +103,11 @@ static int vp6_parse_header(vp56_context_t *s, uint8_t *buf, int buf_size,
*golden_frame = vp56_rac_get(c);
if (s->filter_header) {
s->deblock_filtering = vp56_rac_get(c);
if (s->deblock_filtering)
vp56_rac_get(c);
if (s->sub_version > 7)
parse_filter_info = vp56_rac_get(c);
s->deblock_filtering = vp56_rac_get(c);
if (s->deblock_filtering)
vp56_rac_get(c);
if (s->sub_version > 7)
parse_filter_info = vp56_rac_get(c);
}
}