Commit bcb2a623 authored by michael's avatar michael

Fix indention after last commit.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19888 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fe0138f7
...@@ -2665,16 +2665,16 @@ void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt, ...@@ -2665,16 +2665,16 @@ void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
if(*next_point){ if(*next_point){
if(compare(s, &s->packet_buffer_end->pkt, pkt)){ if(compare(s, &s->packet_buffer_end->pkt, pkt)){
while(!compare(s, &(*next_point)->pkt, pkt)){ while(!compare(s, &(*next_point)->pkt, pkt)){
next_point= &(*next_point)->next; next_point= &(*next_point)->next;
} }
goto next_non_null; goto next_non_null;
}else{ }else{
next_point = &(s->packet_buffer_end->next); next_point = &(s->packet_buffer_end->next);
} }
} }
assert(!*next_point); assert(!*next_point);
s->packet_buffer_end= this_pktl; s->packet_buffer_end= this_pktl;
next_non_null: next_non_null:
this_pktl->next= *next_point; this_pktl->next= *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