[x264-devel] commit: Fix build with bit_depth > 8 (Oskar Arvidsson )

git at videolan.org git at videolan.org
Thu Jul 15 14:14:25 CEST 2010


x264 | branch: stable | Oskar Arvidsson <oskar at irock.se> | Thu Jul 15 08:04:47 2010 +0200| [d846e88db1c5d663e6936a4599d0a0562e2fd7c6] | committer: Jason Garrett-Glaser 

Fix build with bit_depth > 8
Definition of x264_cli_plane_copy was inconsistent with declaration.

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=d846e88db1c5d663e6936a4599d0a0562e2fd7c6
---

 filters/video/internal.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/filters/video/internal.c b/filters/video/internal.c
index 3789433..9601afe 100644
--- a/filters/video/internal.c
+++ b/filters/video/internal.c
@@ -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-- )
     {



More information about the x264-devel mailing list