]> git.sesse.net Git - x264/commitdiff
Fix build with bit_depth > 8
authorOskar Arvidsson <oskar@irock.se>
Thu, 15 Jul 2010 06:04:47 +0000 (08:04 +0200)
committerFiona Glaser <fiona@x264.com>
Thu, 15 Jul 2010 09:31:32 +0000 (02:31 -0700)
Definition of x264_cli_plane_copy was inconsistent with declaration.

filters/video/internal.c

index 3789433f408f86d2e32d782102edc88e29b3b2d0..9601afe91a65539894301a7780d9255590a7ef8e 100644 (file)
@@ -21,7 +21,7 @@
 #include "internal.h"
 #define FAIL_IF_ERROR( cond, ... ) FAIL_IF_ERR( cond, "x264", __VA_ARGS__ )
 
-void x264_cli_plane_copy( pixel *dst, int i_dst, uint8_t *src, int i_src, int w, int h )
+void x264_cli_plane_copy( uint8_t *dst, int i_dst, uint8_t *src, int i_src, int w, int h )
 {
     while( h-- )
     {