diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-04-25 00:02:36 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-04-25 00:20:03 +0200 |
commit | 9a962f30556f8890a09cd668a9fe806ebac54206 (patch) | |
tree | 97d204c3a05a5fc747a77eb89535f10f7f4ad566 /libavcodec/h263_parser.c | |
parent | 02e3f7d042aabd98d4114f7f84b4b480a93daaa1 (diff) | |
download | ffmpeg-9a962f30556f8890a09cd668a9fe806ebac54206.tar.gz |
Fix indentation.
Diffstat (limited to 'libavcodec/h263_parser.c')
-rw-r--r-- | libavcodec/h263_parser.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/h263_parser.c b/libavcodec/h263_parser.c index 2a00291ec2..a3d24ea433 100644 --- a/libavcodec/h263_parser.c +++ b/libavcodec/h263_parser.c @@ -73,13 +73,13 @@ static int h263_parse(AVCodecParserContext *s, if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) { next = buf_size; } else { - next= ff_h263_find_frame_end(pc, buf, buf_size); + next= ff_h263_find_frame_end(pc, buf, buf_size); - if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { - *poutbuf = NULL; - *poutbuf_size = 0; - return buf_size; - } + if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { + *poutbuf = NULL; + *poutbuf_size = 0; + return buf_size; + } } *poutbuf = buf; |