FFmpeg
|
#include <string.h>
#include "checkasm.h"
#include "libavcodec/h264qpel.h"
#include "libavutil/common.h"
#include "libavutil/internal.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 | BUF_SIZE (2 * 16 * (16 + 3 + 4)) |
#define | randomize_buffers() |
#define | src0 (buf0 + 3 * 2 * 16) /* h264qpel functions read data from negative src pointer offsets */ |
#define | src1 (buf1 + 3 * 2 * 16) |
Functions | |
void | checkasm_check_h264qpel (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 h264qpel.c.
#define BUF_SIZE (2 * 16 * (16 + 3 + 4)) |
Definition at line 32 of file h264qpel.c.
#define randomize_buffers | ( | ) |
#define src0 (buf0 + 3 * 2 * 16) /* h264qpel functions read data from negative src pointer offsets */ |
Definition at line 48 of file h264qpel.c.
#define src1 (buf1 + 3 * 2 * 16) |
Definition at line 49 of file h264qpel.c.
void checkasm_check_h264qpel | ( | void | ) |
Definition at line 51 of file h264qpel.c.
|
static |
Definition at line 29 of file h264qpel.c.