Browse Source

Fix indention after previous commit.

Originally committed as revision 19871 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 16 years ago
parent
commit
0355537605
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      libavformat/utils.c

+ 6
- 6
libavformat/utils.c View 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);


Loading…
Cancel
Save