]> git.sesse.net Git - x264/blobdiff - common/rectangle.c
Correctly update the intra row predictor in B-frames
[x264] / common / rectangle.c
index 0a84a129f2c4820d564e035ad36d340b230ae75f..561b68ff14c7e9e3673bc56b8d710c60668d46c0 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * rectangle.c: rectangle filling
  *****************************************************************************
- * Copyright (C) 2010-2011 x264 project
+ * Copyright (C) 2010-2015 x264 project
  *
  * Authors: Fiona Glaser <fiona@x264.com>
  *
@@ -26,7 +26,7 @@
 #include "common.h"
 
 #define CACHE_FUNC(name,size,width,height)\
-void x264_macroblock_cache_##name##_##width##_##height( void *target, uint32_t val )\
+static void x264_macroblock_cache_##name##_##width##_##height( void *target, uint32_t val )\
 {\
     x264_macroblock_cache_rect( target, width*size, height, size, val );\
 }