aballier    15/03/12 10:21:21

  Added:                noneon.patch
  Log:
  backport upstream fix to fix build on arm without neon, bug #543000
  
  Signed-off-by: [email protected]
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  Changes    Path
1.1                  media-video/ffmpeg/files/noneon.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/files/noneon.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/files/noneon.patch?rev=1.1&content-type=text/plain

Index: noneon.patch
===================================================================
commit 1d523ea89ab93eadd153983f3aefdcfcdede3c9a
Author: Carl Eugen Hoyos <[email protected]>
Date:   Tue Mar 10 12:14:16 2015 +0100

    lavc/hevcdsp: Fix compilation for arm with --disable-neon.

diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c
index 04af178..b7a4729 100644
--- a/libavcodec/hevcdsp.c
+++ b/libavcodec/hevcdsp.c
@@ -259,6 +259,6 @@ int i = 0;
 
     if (ARCH_X86)
         ff_hevc_dsp_init_x86(hevcdsp, bit_depth);
-    if (ARCH_ARM)
+    if (HAVE_NEON)
         ff_hevcdsp_init_arm(hevcdsp, bit_depth);
 }




Reply via email to