diff h264.c @ 4665:9b35cbf0b25b libavcodec

reindent after last commit
author bcoudurier
date Wed, 14 Mar 2007 11:13:17 +0000
parents f7c444dc3b04
children 25dd62b93846
line wrap: on
line diff
--- a/h264.c	Wed Mar 14 11:12:02 2007 +0000
+++ b/h264.c	Wed Mar 14 11:13:17 2007 +0000
@@ -8051,17 +8051,17 @@
     if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
         next= buf_size;
     }else{
-    next= find_frame_end(h, buf, buf_size);
-
-    if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
-        *poutbuf = NULL;
-        *poutbuf_size = 0;
-        return buf_size;
-    }
-
-    if(next<0){
-        find_frame_end(h, &pc->buffer[pc->last_index + next], -next); //update state
-    }
+        next= find_frame_end(h, buf, buf_size);
+
+        if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
+            *poutbuf = NULL;
+            *poutbuf_size = 0;
+            return buf_size;
+        }
+
+        if(next<0){
+            find_frame_end(h, &pc->buffer[pc->last_index + next], -next); //update state
+        }
     }
 
     *poutbuf = (uint8_t *)buf;