[FFmpeg-cvslog] ffmpeg: fix broken indentation.

Anton Khirnov git at videolan.org
Tue Aug 30 18:15:04 CEST 2011


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Aug 30 15:08:39 2011 +0200| [5c2a4d3bb1be292f4fdcc87fa7754b2d670c1686] | committer: Michael Niedermayer

ffmpeg: fix broken indentation.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5c2a4d3bb1be292f4fdcc87fa7754b2d670c1686
---

 ffmpeg.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index 611483d..9e270e8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1652,7 +1652,9 @@ static int output_packet(InputStream *ist, int ist_index,
                     ist->is_past_recording_time = 1;
                     continue;
                 }
-                if (ost->source_index == ist_index) {
+                if (ost->source_index != ist_index)
+                    continue;
+
 #if CONFIG_AVFILTER
                 frame_available = ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO ||
                     !ost->output_video_filter || avfilter_poll_frame(ost->output_video_filter->inputs[0]);
@@ -1770,7 +1772,6 @@ static int output_packet(InputStream *ist, int ist_index,
                     avfilter_unref_buffer(ost->picref);
                 }
 #endif
-                }
             }
 
         av_free(buffer_to_free);



More information about the ffmpeg-cvslog mailing list