Commit c06d83e4 authored by michael's avatar michael

Fix indention after previous commit.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19871 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fb7228d6
...@@ -2658,12 +2658,12 @@ void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt, ...@@ -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 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)){ if(!s->packet_buffer_end || compare(s, &s->packet_buffer_end->pkt, pkt)){
next_point = &s->packet_buffer; next_point = &s->packet_buffer;
while(*next_point){ while(*next_point){
if(compare(s, &(*next_point)->pkt, pkt)) if(compare(s, &(*next_point)->pkt, pkt))
break; break;
next_point= &(*next_point)->next; next_point= &(*next_point)->next;
} }
}else{ }else{
next_point = &(s->packet_buffer_end->next); next_point = &(s->packet_buffer_end->next);
assert(!*next_point); assert(!*next_point);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment