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:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-29 17:58:49 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-01-29 17:58:49 +0400
commit5068bcda95c2a53a9b27d096e52f72f9bac62c8b (patch)
treefcd68d78aaf62d7e59cb1d8be708b8621e6a144c /libavfilter/vf_delogo.c
parentd1bbd304bf608c9ca5fe747a8ee317e4c4e0ecbe (diff)
parent7194330bcd6db8dc5c22e0c162a0992d519307f9 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: vf_delogo: fix copying the input frame. Conflicts: libavfilter/vf_delogo.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_delogo.c')
-rw-r--r--libavfilter/vf_delogo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_delogo.c
index 9a22a63b63..bf0ac62117 100644
--- a/libavfilter/vf_delogo.c
+++ b/libavfilter/vf_delogo.c
@@ -83,8 +83,8 @@ static void apply_delogo(uint8_t *dst, int dst_linesize,
if (!direct)
av_image_copy_plane(dst, dst_linesize, src, src_linesize, w, h);
- dst += (logo_y1+1)*dst_linesize;
- src += (logo_y1+1)*src_linesize;
+ dst += (logo_y1 + 1) * dst_linesize;
+ src += (logo_y1 + 1) * src_linesize;
for (y = logo_y1+1; y < logo_y2-1; y++) {
for (x = logo_x1+1,