[FFmpeg-cvslog] r19559 - trunk/libavcodec/mjpeg_parser.c

bcoudurier subversion
Sun Aug 2 10:46:43 CEST 2009


Author: bcoudurier
Date: Sun Aug  2 10:46:43 2009
New Revision: 19559

Log:
cosmetics, reindent

Modified:
   trunk/libavcodec/mjpeg_parser.c

Modified: trunk/libavcodec/mjpeg_parser.c
==============================================================================
--- trunk/libavcodec/mjpeg_parser.c	Sun Aug  2 10:46:11 2009	(r19558)
+++ trunk/libavcodec/mjpeg_parser.c	Sun Aug  2 10:46:43 2009	(r19559)
@@ -81,13 +81,13 @@ static int jpeg_parse(AVCodecParserConte
     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;



More information about the ffmpeg-cvslog mailing list