diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-20 22:20:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-20 22:20:25 +0200 |
commit | 3242747df3924e2fabb7e37042bdec320b4e9254 (patch) | |
tree | 95d438d8c6a9cdf4367f7c929e008b04a46df769 | |
parent | 835eee88ec4c29496c2c2547b42460efd135f94f (diff) | |
download | ffmpeg-3242747df3924e2fabb7e37042bdec320b4e9254.tar.gz |
avfilter/vf_scale; fix indent
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_scale.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index bc1af75740..8835ad2dc9 100644 --- a/libavfilter/vf_scale.c +++ b/libavfilter/vf_scale.c @@ -444,13 +444,13 @@ static int filter_frame(AVFilterLink *link, AVFrame *in) table, out_full, brightness, contrast, saturation); if (scale->isws[0]) - sws_setColorspaceDetails(scale->isws[0], inv_table, in_full, - table, out_full, - brightness, contrast, saturation); + sws_setColorspaceDetails(scale->isws[0], inv_table, in_full, + table, out_full, + brightness, contrast, saturation); if (scale->isws[1]) - sws_setColorspaceDetails(scale->isws[1], inv_table, in_full, - table, out_full, - brightness, contrast, saturation); + sws_setColorspaceDetails(scale->isws[1], inv_table, in_full, + table, out_full, + brightness, contrast, saturation); } av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den, |