[FFmpeg-cvslog] x86: Fix assembly with NASM

Dave Yeo git at videolan.org
Wed Oct 31 14:32:09 CET 2012


ffmpeg | branch: master | Dave Yeo <dave.r.yeo at gmail.com> | Tue Oct 30 23:48:26 2012 -0700| [9c167914a1d88192882fe09dfce430a299580a8a] | committer: Diego Biurrun

x86: Fix assembly with NASM

Unlike YASM, NASM only looks for include files in the current
directory, not in the directory that included files reside in.

Signed-off-by: Diego Biurrun <diego at biurrun.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9c167914a1d88192882fe09dfce430a299580a8a
---

 libavutil/x86/x86util.asm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm
index d7ec594..4c6f4c6 100644
--- a/libavutil/x86/x86util.asm
+++ b/libavutil/x86/x86util.asm
@@ -23,7 +23,7 @@
 ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 ;******************************************************************************
 
-%include "x86inc.asm"
+%include "libavutil/x86/x86inc.asm"
 
 %macro SBUTTERFLY 4
 %if avx_enabled == 0



More information about the ffmpeg-cvslog mailing list