vlc | branch: master | Hugo Beauzée-Luyssen <[email protected]> | Wed Oct 22 12:31:19 2014 +0200| [c5747e65363f6260adf95dbb6a3f1307cead38fc] | committer: Hugo Beauzée-Luyssen
yadif: Remove duplicated const > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c5747e65363f6260adf95dbb6a3f1307cead38fc --- modules/video_filter/deinterlace/yadif.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/video_filter/deinterlace/yadif.h b/modules/video_filter/deinterlace/yadif.h index 219b7a4..d91c147 100644 --- a/modules/video_filter/deinterlace/yadif.h +++ b/modules/video_filter/deinterlace/yadif.h @@ -34,8 +34,8 @@ typedef intptr_t x86_reg; typedef struct { uint64_t a, b; } xmm_reg; -DECLARE_ASM_CONST(16, const xmm_reg, pb_1) = {0x0101010101010101ULL, 0x0101010101010101ULL}; -DECLARE_ASM_CONST(16, const xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL}; +DECLARE_ASM_CONST(16, xmm_reg, pb_1) = {0x0101010101010101ULL, 0x0101010101010101ULL}; +DECLARE_ASM_CONST(16, xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL}; #ifdef CAN_COMPILE_SSSE3 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
