summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-17 11:33:30 +0200
committerAnton Khirnov <anton@khirnov.net>2011-08-17 19:58:31 +0200
commitf1176d41af9cd15164b8691e723d412c30da3777 (patch)
treecf6d69c318f6479c0a9738471eea35f56644aae4 /avconv.c
parentb0c9e8e0249d9aec66e38e172649c643bb30a267 (diff)
avconv: fix broken indentation.
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/avconv.c b/avconv.c
index 80924c108d..18af625ce5 100644
--- a/avconv.c
+++ b/avconv.c
@@ -1599,7 +1599,9 @@ static int output_packet(InputStream *ist, int ist_index,
int frame_size;
ost = &ost_table[i];
- 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]);
@@ -1706,7 +1708,6 @@ static int output_packet(InputStream *ist, int ist_index,
avfilter_unref_buffer(ost->picref);
}
#endif
- }
}
av_free(buffer_to_free);