summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-09-16 20:06:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-09-16 20:06:48 +0000
commit8a6c7a5286cd63a195f393de12907b43f2e93adf (patch)
treed7f6b9d8a76848f713e4df3bf6f72c0b1a4a1e02 /libavformat
parente07b882b4dcdc6fdf807414aebe176a46dd773da (diff)
Fix indention after last commit.
Originally committed as revision 19888 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index d1d98b0ffb..3635491d43 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2665,16 +2665,16 @@ void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
if(*next_point){
if(compare(s, &s->packet_buffer_end->pkt, pkt)){
while(!compare(s, &(*next_point)->pkt, pkt)){
- next_point= &(*next_point)->next;
- }
+ next_point= &(*next_point)->next;
+ }
goto next_non_null;
- }else{
- next_point = &(s->packet_buffer_end->next);
+ }else{
+ 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:
this_pktl->next= *next_point;