Revision 8dbe5856 libavcodec/h264pred_internal.h
libavcodec/h264pred_internal.h | ||
---|---|---|
26 | 26 |
*/ |
27 | 27 |
|
28 | 28 |
#include "mathops.h" |
29 |
#include "dsputil.h" |
|
30 |
|
|
31 |
#define BIT_DEPTH 8 |
|
32 |
|
|
33 |
#define pixel uint8_t |
|
34 |
#define pixel4 uint32_t |
|
35 |
#define dctcoef DCTELEM |
|
36 |
|
|
37 |
#define INIT_CLIP uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; |
|
38 |
#define CLIP(a) cm[a] |
|
39 |
#define FUNC(a) a |
|
40 |
#define FUNCC(a) a ## _c |
|
41 |
#define PIXEL_SPLAT_X4(x) ((x)*0x01010101U) |
|
42 |
#define AV_WN4P AV_WN32 |
|
43 |
#define AV_WN4PA AV_WN32A |
|
29 |
#include "h264_high_depth.h" |
|
44 | 30 |
|
45 | 31 |
static void FUNCC(pred4x4_vertical)(uint8_t *p_src, const uint8_t *topright, int p_stride){ |
46 | 32 |
pixel *src = (pixel*)p_src; |
Also available in: Unified diff