51 *iter = (
void*)(uintptr_t)
c;
58 return prev ?
NULL :
s->dct;
61 #define OFFSET(x) offsetof(SPPContext, x)
62 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
63 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
86 { 0, 48, 12, 60, 3, 51, 15, 63 },
87 { 32, 16, 44, 28, 35, 19, 47, 31 },
88 { 8, 56, 4, 52, 11, 59, 7, 55 },
89 { 40, 24, 36, 20, 43, 27, 39, 23 },
90 { 2, 50, 14, 62, 1, 49, 13, 61 },
91 { 34, 18, 46, 30, 33, 17, 45, 29 },
92 { 10, 58, 6, 54, 9, 57, 5, 53 },
93 { 42, 26, 38, 22, 41, 25, 37, 21 },
96 static const uint8_t
offset[128][2] = {
100 {0,0}, {2,2}, {6,4}, {4,6},
101 {0,0}, {5,1}, {2,2}, {7,3}, {4,4}, {1,5}, {6,6}, {3,7},
103 {0,0}, {4,0}, {1,1}, {5,1}, {3,2}, {7,2}, {2,3}, {6,3},
104 {0,4}, {4,4}, {1,5}, {5,5}, {3,6}, {7,6}, {2,7}, {6,7},
106 {0,0}, {0,2}, {0,4}, {0,6}, {1,1}, {1,3}, {1,5}, {1,7},
107 {2,0}, {2,2}, {2,4}, {2,6}, {3,1}, {3,3}, {3,5}, {3,7},
108 {4,0}, {4,2}, {4,4}, {4,6}, {5,1}, {5,3}, {5,5}, {5,7},
109 {6,0}, {6,2}, {6,4}, {6,6}, {7,1}, {7,3}, {7,5}, {7,7},
111 {0,0}, {4,4}, {0,4}, {4,0}, {2,2}, {6,6}, {2,6}, {6,2},
112 {0,2}, {4,6}, {0,6}, {4,2}, {2,0}, {6,4}, {2,4}, {6,0},
113 {1,1}, {5,5}, {1,5}, {5,1}, {3,3}, {7,7}, {3,7}, {7,3},
114 {1,3}, {5,7}, {1,7}, {5,3}, {3,1}, {7,5}, {3,5}, {7,1},
115 {0,1}, {4,5}, {0,5}, {4,1}, {2,3}, {6,7}, {2,7}, {6,3},
116 {0,3}, {4,7}, {0,7}, {4,3}, {2,1}, {6,5}, {2,5}, {6,1},
117 {1,0}, {5,4}, {1,4}, {5,0}, {3,2}, {7,6}, {3,6}, {7,2},
118 {1,2}, {5,6}, {1,6}, {5,2}, {3,0}, {7,4}, {3,4}, {7,0},
122 int qp,
const uint8_t *permutation)
127 unsigned threshold1 = qp * ((1<<4) - bias) - 1;
128 unsigned threshold2 = threshold1 << 1;
130 memset(dst, 0, 64 *
sizeof(dst[0]));
131 dst[0] = (
src[0] + 4) >> 3;
133 for (
i = 1;
i < 64;
i++) {
135 if (((
unsigned)(
level + threshold1)) > threshold2) {
136 const int j = permutation[
i];
137 dst[j] = (
level + 4) >> 3;
143 int qp,
const uint8_t *permutation)
148 unsigned threshold1 = qp * ((1<<4) - bias) - 1;
149 unsigned threshold2 = threshold1 << 1;
151 memset(dst, 0, 64 *
sizeof(dst[0]));
152 dst[0] = (
src[0] + 4) >> 3;
154 for (
i = 1;
i < 64;
i++) {
156 if (((
unsigned)(
level + threshold1)) > threshold2) {
157 const int j = permutation[
i];
158 if (
level > 0) dst[j] = (
level - threshold1 + 4) >> 3;
159 else dst[j] = (
level + threshold1 + 4) >> 3;
165 int dst_linesize,
int src_linesize,
167 const uint8_t
dither[8][8])
171 #define STORE(pos) do { \
172 temp = ((src[x + y*src_linesize + pos] << log2_scale) + d[pos]) >> 6; \
174 temp = ~(temp >> 31); \
175 dst[x + y*dst_linesize + pos] = temp; \
178 for (y = 0; y <
height; y++) {
180 for (x = 0; x <
width; x += 8) {
195 int dst_linesize,
int src_linesize,
197 const uint8_t
dither[8][8],
int depth)
200 unsigned int mask = -1<<depth;
202 #define STORE16(pos) do { \
203 temp = ((src[x + y*src_linesize + pos] << log2_scale) + (d[pos]>>1)) >> 5; \
205 temp = ~(temp >> 31); \
206 dst[x + y*dst_linesize + pos] = temp; \
209 for (y = 0; y <
height; y++) {
211 for (x = 0; x <
width; x += 8) {
225 static inline void add_block(uint16_t *dst,
int linesize,
const int16_t
block[64])
229 for (y = 0; y < 8; y++) {
230 dst[0 + y*linesize] +=
block[0 + y*8];
231 dst[1 + y*linesize] +=
block[1 + y*8];
232 dst[2 + y*linesize] +=
block[2 + y*8];
233 dst[3 + y*linesize] +=
block[3 + y*8];
234 dst[4 + y*linesize] +=
block[4 + y*8];
235 dst[5 + y*linesize] +=
block[5 + y*8];
236 dst[6 + y*linesize] +=
block[6 + y*8];
237 dst[7 + y*linesize] +=
block[7 + y*8];
242 int dst_linesize,
int src_linesize,
int width,
int height,
243 const uint8_t *qp_table,
int qp_stride,
int is_luma,
int depth)
249 int16_t *
block = (int16_t *)block_align;
250 int16_t *block2 = (int16_t *)(block_align + 16);
251 uint16_t *psrc16 = (uint16_t*)p->
src;
252 const int sample_bytes = (depth+7) / 8;
254 for (y = 0; y <
height; y++) {
255 int index = 8 + 8*linesize + y*linesize;
256 memcpy(p->
src +
index*sample_bytes,
src + y*src_linesize,
width*sample_bytes);
257 if (sample_bytes == 1) {
258 for (x = 0; x < 8; x++) {
263 for (x = 0; x < 8; x++) {
269 for (y = 0; y < 8; y++) {
270 memcpy(p->
src + ( 7-y)*linesize * sample_bytes, p->
src + ( y+8)*linesize * sample_bytes, linesize * sample_bytes);
271 memcpy(p->
src + (
height+8+y)*linesize * sample_bytes, p->
src + (
height-y+7)*linesize * sample_bytes, linesize * sample_bytes);
274 for (y = 0; y <
height + 8; y += 8) {
275 memset(p->
temp + (8 + y) * linesize, 0, 8 * linesize *
sizeof(*p->
temp));
276 for (x = 0; x <
width + 8; x += 8) {
282 const int qps = 3 + is_luma;
286 for (
i = 0;
i < count;
i++) {
287 const int x1 = x +
offset[
i + count][0];
288 const int y1 = y +
offset[
i + count][1];
289 const int index = x1 + y1*linesize;
298 if (sample_bytes == 1) {
300 dst_linesize, linesize,
width,
305 dst_linesize/2, linesize,
width,
335 const int bps =
desc->comp[0].depth;
349 s->hsub =
desc->log2_chroma_w;
350 s->vsub =
desc->log2_chroma_h;
355 if (!
s->temp || !
s->src)
367 int8_t *qp_table =
NULL;
369 const int depth =
desc->comp[0].depth;
385 s->non_b_qp_table = qp_table;
386 s->non_b_qp_stride = qp_stride;
390 if (
s->log2_count && !
ctx->is_disabled) {
391 if (!
s->use_bframe_qp &&
s->non_b_qp_table) {
392 qp_table =
s->non_b_qp_table;
393 qp_stride =
s->non_b_qp_stride;
396 if (qp_table ||
s->qp) {
417 filter(
s,
out->data[0], in->
data[0],
out->linesize[0], in->
linesize[0],
inlink->w,
inlink->h, qp_table, qp_stride, 1, depth);
420 filter(
s,
out->data[1], in->
data[1],
out->linesize[1], in->
linesize[1], cw, ch, qp_table, qp_stride, 0, depth);
421 filter(
s,
out->data[2], in->
data[2],
out->linesize[2], in->
linesize[2], cw, ch, qp_table, qp_stride, 0, depth);
436 if (qp_table !=
s->non_b_qp_table)
442 char *res,
int res_len,
int flags)
446 if (!strcmp(cmd,
"level") || !strcmp(cmd,
"quality")) {
447 if (!strcmp(args,
"max"))