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