]> granicus.if.org Git - libx264/commitdiff
mc: Mark a function only used within the file as static
authorVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 27 Jan 2017 15:21:16 +0000 (16:21 +0100)
committerHenrik Gramner <henrik@gramner.com>
Fri, 19 May 2017 14:12:14 +0000 (16:12 +0200)
common/mc.c

index 543a05c49a5509e3ba0f9af2299fa0a580058d2a..156890d53a4e204cd5521aa254fb2fd613d4603a 100644 (file)
@@ -362,9 +362,9 @@ static ALWAYS_INLINE uint32_t v210_endian_fix32( uint32_t x )
 #define v210_endian_fix32(x) (x)
 #endif
 
-void x264_plane_copy_deinterleave_v210_c( pixel *dsty, intptr_t i_dsty,
-                                          pixel *dstc, intptr_t i_dstc,
-                                          uint32_t *src, intptr_t i_src, int w, int h )
+static void x264_plane_copy_deinterleave_v210_c( pixel *dsty, intptr_t i_dsty,
+                                                 pixel *dstc, intptr_t i_dstc,
+                                                 uint32_t *src, intptr_t i_src, int w, int h )
 {
     for( int l = 0; l < h; l++ )
     {