Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-05-30 14:11:05 +0400
committerAurelien Jacobs <aurel@gnuage.org>2007-05-30 14:11:05 +0400
commit808d83fd33c2c58d66f086fca689b9d6d46c5f2f (patch)
tree28d904526c7fbef36a160a1b674f34042f939803 /ffmpeg.c
parent8623e5586746c8e8147aaa1ec22dad4791430fc8 (diff)
cosmetics: indentation
Originally committed as revision 9161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 00a56ec701..03856ff69b 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1611,7 +1611,7 @@ static int av_encode(AVFormatContext **output_files,
exit(1);
}
if (ENABLE_SWSCALER)
- sws_flags = av_get_int(sws_opts, "sws_flags", NULL);
+ sws_flags = av_get_int(sws_opts, "sws_flags", NULL);
ost->img_resample_ctx = sws_getContext(
icodec->width - (frame_leftBand + frame_rightBand),
icodec->height - (frame_topBand + frame_bottomBand),
@@ -3765,7 +3765,7 @@ static void show_help(void)
av_opt_show(avctx_opts[0], NULL);
av_opt_show(avformat_opts, NULL);
if (ENABLE_SWSCALER)
- av_opt_show(sws_opts, NULL);
+ av_opt_show(sws_opts, NULL);
exit(1);
}
@@ -3787,7 +3787,7 @@ int main(int argc, char **argv)
}
avformat_opts = av_alloc_format_context();
if (ENABLE_SWSCALER)
- sws_opts = sws_getContext(16, 16, 0, 16, 16, 0, sws_flags, NULL,NULL,NULL);
+ sws_opts = sws_getContext(16,16,0, 16,16,0, sws_flags, NULL,NULL,NULL);
if (argc <= 1)
show_help();