diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-30 15:08:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-08-30 18:08:22 +0200 |
commit | 5c2a4d3bb1be292f4fdcc87fa7754b2d670c1686 (patch) | |
tree | 8099caa3d4d0847060a331bf22a2e54325ab3eaa /ffmpeg.c | |
parent | dd0724288ee86d487e261f23471f861ff4620d8e (diff) | |
download | ffmpeg-5c2a4d3bb1be292f4fdcc87fa7754b2d670c1686.tar.gz |
ffmpeg: fix broken indentation.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); |