summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-10-16 20:57:55 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-10-16 20:57:55 +0000
commit3f2a7e42778c86dbf573c85fdbea0a3499a499b2 (patch)
treed6b5caaf170049c1fec386ce577b156051105884 /ffmpeg.c
parentdbabc2773ad7a613317050c7ca953fcdfe89201c (diff)
Cosmetics: use a more compact notation, improve readability and reduce
line count. Originally committed as revision 25510 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c26
1 files changed, 6 insertions, 20 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 010bce7472..c8ec7e045d 100644
--- a/ffmpeg.c
+++ b/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 (use_video) {
- new_video_stream(oc, nb_output_files);
- }
-
- if (use_audio) {
- new_audio_stream(oc, nb_output_files);
- }
+ if (audio_disable) use_audio = 0;
+ if (video_disable) use_video = 0;
+ if (subtitle_disable) use_subtitle = 0;
- 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;