FFmpeg
hevc_add_res.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Alexandra Hájková
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20 
21 #include <string.h>
22 
23 #include "libavutil/intreadwrite.h"
24 
25 #include "libavcodec/hevcdsp.h"
26 
27 #include "checkasm.h"
28 
29 #define randomize_buffers(buf, size) \
30  do { \
31  int j; \
32  for (j = 0; j < size; j++) { \
33  int16_t r = rnd(); \
34  AV_WN16A(buf + j, r >> 3); \
35  } \
36  } while (0)
37 
38 #define randomize_buffers2(buf, size) \
39  do { \
40  int j; \
41  for (j = 0; j < size; j++) \
42  AV_WN16A(buf + j * 2, rnd() & 0x3FF); \
43  } while (0)
44 
46 {
47  int i;
48  LOCAL_ALIGNED_32(int16_t, res0, [32 * 32]);
49  LOCAL_ALIGNED_32(int16_t, res1, [32 * 32]);
50  LOCAL_ALIGNED_32(uint8_t, dst0, [32 * 32 * 2]);
51  LOCAL_ALIGNED_32(uint8_t, dst1, [32 * 32 * 2]);
52 
53  for (i = 2; i <= 5; i++) {
54  int block_size = 1 << i;
55  int size = block_size * block_size;
56  ptrdiff_t stride = block_size << (bit_depth > 8);
57  declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, int16_t *res, ptrdiff_t stride);
58 
59  randomize_buffers(res0, size);
60  randomize_buffers2(dst0, size);
61  memcpy(res1, res0, sizeof(*res0) * size);
62  memcpy(dst1, dst0, sizeof(int16_t) * size);
63 
64  if (check_func(h.add_residual[i - 2], "hevc_add_res_%dx%d_%d", block_size, block_size, bit_depth)) {
65  call_ref(dst0, res0, stride);
66  call_new(dst1, res1, stride);
67  if (memcmp(dst0, dst1, size))
68  fail();
69  bench_new(dst1, res1, stride);
70  }
71  }
72 }
73 
75 {
76  int bit_depth;
77 
78  for (bit_depth = 8; bit_depth <= 10; bit_depth++) {
80 
83  }
84  report("add_residual");
85 }
declare_func_emms
#define declare_func_emms(cpu_flags, ret,...)
Definition: checkasm.h:117
stride
int stride
Definition: mace.c:144
bit_depth
static void bit_depth(AudioStatsContext *s, uint64_t mask, uint64_t imask, AVRational *depth)
Definition: af_astats.c:226
check_func
#define check_func(func,...)
Definition: checkasm.h:111
call_ref
#define call_ref(...)
Definition: checkasm.h:126
checkasm_check_hevc_add_res
void checkasm_check_hevc_add_res(void)
Definition: hevc_add_res.c:74
fail
#define fail()
Definition: checkasm.h:120
checkasm.h
randomize_buffers
#define randomize_buffers(buf, size)
Definition: hevc_add_res.c:29
check_add_res
static void check_add_res(HEVCDSPContext h, int bit_depth)
Definition: hevc_add_res.c:45
intreadwrite.h
hevcdsp.h
call_new
#define call_new(...)
Definition: checkasm.h:193
size
int size
Definition: twinvq_data.h:11134
HEVCDSPContext
Definition: hevcdsp.h:45
report
#define report
Definition: checkasm.h:123
bench_new
#define bench_new(...)
Definition: checkasm.h:253
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
uint8_t
uint8_t
Definition: audio_convert.c:194
ff_hevc_dsp_init
void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth)
Definition: hevcdsp.c:126
AV_CPU_FLAG_MMX
#define AV_CPU_FLAG_MMX
standard MMX
Definition: cpu.h:31
LOCAL_ALIGNED_32
#define LOCAL_ALIGNED_32(t, v,...)
Definition: internal.h:137
h
h
Definition: vp9dsp_template.c:2038
randomize_buffers2
#define randomize_buffers2(buf, size)
Definition: hevc_add_res.c:38