]> git.sesse.net Git - x264/blobdiff - common/rectangle.c
x86inc: Remove .rodata kludges
[x264] / common / rectangle.c
index 389382f8e687237d3d8d9dceb1c96690599222da..623e9e1d0b8ce316abdb7cd6101232178ab858c2 100644 (file)
@@ -1,7 +1,9 @@
 /*****************************************************************************
- * rectangle.c: h264 encoder library
+ * rectangle.c: rectangle filling
  *****************************************************************************
- * Copyright (C) 2010 Fiona Glaser <fiona@x264.com>
+ * Copyright (C) 2010-2013 x264 project
+ *
+ * Authors: Fiona Glaser <fiona@x264.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *
+ * This program is also available under a commercial proprietary license.
+ * For more information, contact us at licensing@x264.com.
  *****************************************************************************/
 
 #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 );\
 }