Browse Source

cosmetics, reindent

Originally committed as revision 19559 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Baptiste Coudurier 16 years ago
parent
commit
ee5b26f5ff
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      libavcodec/mjpeg_parser.c

+ 6
- 6
libavcodec/mjpeg_parser.c View File

@@ -81,13 +81,13 @@ static int jpeg_parse(AVCodecParserContext *s,
if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
next= buf_size;
}else{
next= find_frame_end(pc, buf, buf_size);
next= 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;


Loading…
Cancel
Save