]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/hevcpred.c
avcodec/vp9: make last_invisible local.
[ffmpeg] / libavcodec / hevcpred.c
index b6b39064060d5f87d625263c726241b139d74586..e4987f8ecacadc19f3955fe2b55fd5782cce786f 100644 (file)
@@ -21,6 +21,7 @@
  */
 
 #include "hevc.h"
+
 #include "hevcpred.h"
 
 #define BIT_DEPTH 8
@@ -40,16 +41,16 @@ void ff_hevc_pred_init(HEVCPredContext *hpc, int bit_depth)
 #undef FUNC
 #define FUNC(a, depth) a ## _ ## depth
 
-#define HEVC_PRED(depth)                            \
-    hpc->intra_pred   = FUNC(intra_pred, depth);   \
+#define HEVC_PRED(depth)                                \
+    hpc->intra_pred      = FUNC(intra_pred, depth);     \
     hpc->pred_planar[0]  = FUNC(pred_planar_0, depth);  \
     hpc->pred_planar[1]  = FUNC(pred_planar_1, depth);  \
     hpc->pred_planar[2]  = FUNC(pred_planar_2, depth);  \
     hpc->pred_planar[3]  = FUNC(pred_planar_3, depth);  \
-    hpc->pred_dc      = FUNC(pred_dc, depth);      \
-    hpc->pred_angular[0] = FUNC(pred_angular_0, depth);\
-    hpc->pred_angular[1] = FUNC(pred_angular_1, depth);\
-    hpc->pred_angular[2] = FUNC(pred_angular_2, depth);\
+    hpc->pred_dc         = FUNC(pred_dc, depth);        \
+    hpc->pred_angular[0] = FUNC(pred_angular_0, depth); \
+    hpc->pred_angular[1] = FUNC(pred_angular_1, depth); \
+    hpc->pred_angular[2] = FUNC(pred_angular_2, depth); \
     hpc->pred_angular[3] = FUNC(pred_angular_3, depth);
 
     switch (bit_depth) {