summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-09-16 01:17:39 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-09-16 01:17:39 +0000
commit0355537605d1455fb2bba6e1f644d0d418efb676 (patch)
tree2e5f85cdd74c7256087088f2b752e3aa89f6537c /libavformat
parentddce56efc5976dbc4910a2e59bfd06f9f5f0ae4f (diff)
Fix indention after previous commit.
Originally committed as revision 19871 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 f7d929d66c..9d2d8ceda5 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -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);