[SCM] libav/experimental: Fix indention after previous commit.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:51:13 UTC 2013
The following commit has been merged in the experimental branch:
commit 0355537605d1455fb2bba6e1f644d0d418efb676
Author: Michael Niedermayer <michaelni at gmx.at>
Date: Wed Sep 16 01:17:39 2009 +0000
Fix indention after previous commit.
Originally committed as revision 19871 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/utils.c b/libavformat/utils.c
index f7d929d..9d2d8ce 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);
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list