Commit f1176d41 authored by Anton Khirnov's avatar Anton Khirnov

avconv: fix broken indentation.

parent b0c9e8e0
......@@ -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]);
......@@ -1707,7 +1709,6 @@ static int output_packet(InputStream *ist, int ist_index,
}
#endif
}
}
av_free(buffer_to_free);
/* XXX: allocate the subtitles in the codec ? */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment