]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Fix indention after previous commit.
authormichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 16 Sep 2009 01:17:39 +0000 (01:17 +0000)
committermichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 16 Sep 2009 01:17:39 +0000 (01:17 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19871 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavformat/utils.c

index f7d929d66c1b71abee06130ed81337c1226ec2d5..9d2d8ceda5b7b0b1958df731f9db2cccbc5c66b6 100644 (file)
@@ -2658,12 +2658,12 @@ void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
     av_dup_packet(&this_pktl->pkt);  // duplicate the packet if it uses non-alloced memory
 
     if(!s->packet_buffer_end || compare(s, &s->packet_buffer_end->pkt, pkt)){
-    next_point = &s->packet_buffer;
-    while(*next_point){
-        if(compare(s, &(*next_point)->pkt, pkt))
-            break;
-        next_point= &(*next_point)->next;
-    }
+        next_point = &s->packet_buffer;
+        while(*next_point){
+            if(compare(s, &(*next_point)->pkt, pkt))
+                break;
+            next_point= &(*next_point)->next;
+        }
     }else{
         next_point = &(s->packet_buffer_end->next);
         assert(!*next_point);