FFmpeg
videodsp_template.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-2012 Michael Niedermayer
3  * Copyright (C) 2012 Ronald S. Bultje
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "bit_depth_template.c"
23 
24 static void FUNC(emulated_edge_mc)(uint8_t *buf, const uint8_t *src,
25  ptrdiff_t buf_linesize,
26  ptrdiff_t src_linesize,
27  int block_w, int block_h,
28  int src_x, int src_y, int w, int h)
29 {
30  int x, y;
31  int start_y, start_x, end_y, end_x;
32 
33  if (!w || !h)
34  return;
35 
36  av_assert2(block_w * sizeof(pixel) <= FFABS(buf_linesize));
37 
38  if (src_y >= h) {
39  src -= src_y * src_linesize;
40  src += (h - 1) * src_linesize;
41  src_y = h - 1;
42  } else if (src_y <= -block_h) {
43  src -= src_y * src_linesize;
44  src += (1 - block_h) * src_linesize;
45  src_y = 1 - block_h;
46  }
47  if (src_x >= w) {
48  // The subtracted expression has an unsigned type and must thus not be negative
49  src -= (1 + src_x - w) * sizeof(pixel);
50  src_x = w - 1;
51  } else if (src_x <= -block_w) {
52  src += (1 - block_w - src_x) * sizeof(pixel);
53  src_x = 1 - block_w;
54  }
55 
56  start_y = FFMAX(0, -src_y);
57  start_x = FFMAX(0, -src_x);
58  end_y = FFMIN(block_h, h-src_y);
59  end_x = FFMIN(block_w, w-src_x);
60  av_assert2(start_y < end_y && block_h);
61  av_assert2(start_x < end_x && block_w);
62 
63  w = end_x - start_x;
64  src += start_y * src_linesize + start_x * (ptrdiff_t)sizeof(pixel);
65  buf += start_x * sizeof(pixel);
66 
67  // top
68  for (y = 0; y < start_y; y++) {
69  memcpy(buf, src, w * sizeof(pixel));
70  buf += buf_linesize;
71  }
72 
73  // copy existing part
74  for (; y < end_y; y++) {
75  memcpy(buf, src, w * sizeof(pixel));
76  src += src_linesize;
77  buf += buf_linesize;
78  }
79 
80  // bottom
81  src -= src_linesize;
82  for (; y < block_h; y++) {
83  memcpy(buf, src, w * sizeof(pixel));
84  buf += buf_linesize;
85  }
86 
87  buf -= block_h * buf_linesize + start_x * (ptrdiff_t)sizeof(pixel);
88  while (block_h--) {
89  pixel *bufp = (pixel *) buf;
90 
91  // left
92  for(x = 0; x < start_x; x++) {
93  bufp[x] = bufp[start_x];
94  }
95 
96  // right
97  for (x = end_x; x < block_w; x++) {
98  bufp[x] = bufp[end_x - 1];
99  }
100  buf += buf_linesize;
101  }
102 }
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
FFABS
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:74
pixel
uint8_t pixel
Definition: tiny_ssim.c:41
bit_depth_template.c
emulated_edge_mc
static void FUNC() emulated_edge_mc(uint8_t *buf, const uint8_t *src, ptrdiff_t buf_linesize, ptrdiff_t src_linesize, int block_w, int block_h, int src_x, int src_y, int w, int h)
Definition: videodsp_template.c:24
av_assert2
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition: avassert.h:68
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
FUNC
#define FUNC(a)
Definition: bit_depth_template.c:104
w
uint8_t w
Definition: llvidencdsp.c:39
h
h
Definition: vp9dsp_template.c:2070
src
#define src
Definition: vp8dsp.c:248