FFmpeg
|
#include <string.h>
#include "checkasm.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/h264dsp.h"
#include "libavutil/common.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.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() |
#define | dct4x4_impl(size, dctcoef) |
#define | DCT8_1D(src, srcstride, dst, dststride) |
#define | dct8x8_impl(size, dctcoef) |
Functions | |
dct4x4_impl (16, int16_t) | |
static void | dct8x8 (int16_t *coef, int bit_depth) |
static void | check_idct (void) |
void | checkasm_check_h264dsp (void) |
Variables | |
static const uint32_t | pixel_mask [3] = { 0xffffffff, 0x01ff01ff, 0x03ff03ff } |
#define SIZEOF_PIXEL ((bit_depth + 7) / 8) |
Definition at line 31 of file h264dsp.c.
Referenced by check_idct().
#define SIZEOF_COEF (2 * ((bit_depth + 7) / 8)) |
Definition at line 32 of file h264dsp.c.
Referenced by check_idct().
#define PIXEL_STRIDE 16 |
Definition at line 33 of file h264dsp.c.
Referenced by check_idct().
#define randomize_buffers | ( | ) |
Definition at line 35 of file h264dsp.c.
Referenced by check_idct().
#define DCT8_1D | ( | src, | |
srcstride, | |||
dst, | |||
dststride | |||
) |
Definition at line 162 of file h264dsp.c.
Referenced by check_idct().
Definition at line 172 of file h264dsp.c.
Referenced by checkasm_check_h264dsp().