[SCM] libav/experimental: Cosmetics: remove useless parentheses.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 17:15:38 UTC 2013
The following commit has been merged in the experimental branch:
commit 11198b18db1f12ddce992b8f44b38572714725e1
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date: Fri Sep 10 17:44:08 2010 +0000
Cosmetics: remove useless parentheses.
Originally committed as revision 25097 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index 880c954..4f8a382 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -132,7 +132,7 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
picref->video->h = crop->h;
ref2->data[0] += crop->y * ref2->linesize[0];
- ref2->data[0] += (crop->x * crop->max_step[0]);
+ ref2->data[0] += crop->x * crop->max_step[0];
if (!(av_pix_fmt_descriptors[link->format].flags & PIX_FMT_PAL)) {
for (i = 1; i < 3; i ++) {
@@ -146,7 +146,7 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
/* alpha plane */
if (ref2->data[3]) {
ref2->data[3] += crop->y * ref2->linesize[3];
- ref2->data[3] += (crop->x * crop->max_step[3]);
+ ref2->data[3] += crop->x * crop->max_step[3];
}
avfilter_start_frame(link->dst->outputs[0], ref2);
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list