[FFmpeg-cvslog] r19871 - trunk/libavformat/utils.c
michael
subversion
Wed Sep 16 03:17:40 CEST 2009
Author: michael
Date: Wed Sep 16 03:17:39 2009
New Revision: 19871
Log:
Fix indention after previous commit.
Modified:
trunk/libavformat/utils.c
Modified: trunk/libavformat/utils.c
==============================================================================
--- trunk/libavformat/utils.c Wed Sep 16 02:59:15 2009 (r19870)
+++ trunk/libavformat/utils.c Wed Sep 16 03:17:39 2009 (r19871)
@@ -2658,12 +2658,12 @@ void ff_interleave_add_packet(AVFormatCo
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);
More information about the ffmpeg-cvslog
mailing list