mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Cosmetics: use a more compact notation, improve readability and reduce
line count. Originally committed as revision 25510 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dbabc2773a
commit
3f2a7e4277
26
ffmpeg.c
26
ffmpeg.c
@ -3730,27 +3730,13 @@ static void opt_output_file(const char *filename)
|
||||
}
|
||||
|
||||
/* manual disable */
|
||||
if (audio_disable) {
|
||||
use_audio = 0;
|
||||
}
|
||||
if (video_disable) {
|
||||
use_video = 0;
|
||||
}
|
||||
if (subtitle_disable) {
|
||||
use_subtitle = 0;
|
||||
}
|
||||
if (audio_disable) use_audio = 0;
|
||||
if (video_disable) use_video = 0;
|
||||
if (subtitle_disable) use_subtitle = 0;
|
||||
|
||||
if (use_video) {
|
||||
new_video_stream(oc, nb_output_files);
|
||||
}
|
||||
|
||||
if (use_audio) {
|
||||
new_audio_stream(oc, nb_output_files);
|
||||
}
|
||||
|
||||
if (use_subtitle) {
|
||||
new_subtitle_stream(oc, nb_output_files);
|
||||
}
|
||||
if (use_video) new_video_stream(oc, nb_output_files);
|
||||
if (use_audio) new_audio_stream(oc, nb_output_files);
|
||||
if (use_subtitle) new_subtitle_stream(oc, nb_output_files);
|
||||
|
||||
oc->timestamp = recording_timestamp;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user