Go to the documentation of this file.
41 #define FUNC(a, depth) a ## _ ## depth
43 #define HEVC_PRED(depth) \
44 hpc->intra_pred = FUNC(intra_pred, depth); \
45 hpc->pred_planar[0] = FUNC(pred_planar_0, depth); \
46 hpc->pred_planar[1] = FUNC(pred_planar_1, depth); \
47 hpc->pred_planar[2] = FUNC(pred_planar_2, depth); \
48 hpc->pred_planar[3] = FUNC(pred_planar_3, depth); \
49 hpc->pred_dc = FUNC(pred_dc, depth); \
50 hpc->pred_angular[0] = FUNC(pred_angular_0, depth);\
51 hpc->pred_angular[1] = FUNC(pred_angular_1, depth);\
52 hpc->pred_angular[2] = FUNC(pred_angular_2, depth);\
53 hpc->pred_angular[3] = FUNC(pred_angular_3, depth);