mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
ffmpeg: fix broken indentation.
This commit is contained in:
parent
dd0724288e
commit
5c2a4d3bb1
5
ffmpeg.c
5
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);
|
||||
|
Loading…
Reference in New Issue
Block a user