FFmpeg
|
#include <string.h>
#include "checkasm.h"
#include "libavcodec/h264dsp.h"
#include "libavcodec/h264data.h"
#include "libavcodec/h264_parse.h"
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem_internal.h"
Go to the source code of this file.
Macros | |
#define | SIZEOF_PIXEL ((bit_depth + 7) / 8) |
#define | SIZEOF_COEF (2 * ((bit_depth + 7) / 8)) |
#define | PIXEL_STRIDE 16 |
#define | randomize_buffers(idx) |
#define | dct4x4_impl(size, dctcoef) |
#define | DCT8_1D(src, srcstride, dst, dststride) |
#define | dct8x8_impl(size, dctcoef) |
#define | CHECK_LOOP_FILTER(name, align, idc) |
#define | CHECK_LOOP_FILTER(name, align, idc) |
Functions | |
dct4x4_impl (16, int16_t) | |
static void | dct8x8 (int16_t *coef, int bit_depth) |
static void | check_idct (void) |
static void | check_idct_multiple (void) |
static void | check_loop_filter (void) |
static void | check_loop_filter_intra (void) |
void | checkasm_check_h264dsp (void) |
Variables | |
static const uint32_t | pixel_mask [5] = { 0xffffffff, 0x01ff01ff, 0x03ff03ff, 0x0fff0fff, 0x3fff3fff } |
static const uint32_t | pixel_mask_lf [3] = { 0xff0fff0f, 0x01ff000f, 0x03ff000f } |
#define randomize_buffers | ( | idx | ) |
|
static |
Definition at line 164 of file h264dsp.c.
Referenced by check_idct(), and check_idct_multiple().
|
static |
Definition at line 174 of file h264dsp.c.
Referenced by checkasm_check_h264dsp().
|
static |
Definition at line 241 of file h264dsp.c.
Referenced by checkasm_check_h264dsp().
|
static |
Definition at line 328 of file h264dsp.c.
Referenced by checkasm_check_h264dsp().
|
static |
Definition at line 393 of file h264dsp.c.
Referenced by checkasm_check_h264dsp().
|
static |
|
static |
Definition at line 31 of file h264dsp.c.
Referenced by check_loop_filter(), and check_loop_filter_intra().