This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
h264_idct: enable unmacro on newer NASM versions
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
tags/n4.0
Rostislav Pehlivanov
7 years ago
parent
4961ddfd35
commit
50945482a7
1 changed files
with
5 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
libavcodec/x86/h264_idct.asm
+ 5
- 1
libavcodec/x86/h264_idct.asm
View File
@@ -1144,7 +1144,11 @@ IDCT_DC_DEQUANT 0
INIT_MMX sse2
INIT_MMX sse2
IDCT_DC_DEQUANT 7
IDCT_DC_DEQUANT 7
; %unmacro STORE_DIFFx2 8 ; remove macro from x86util.asm but yasm doesn't have this yet
%ifdef __NASM_VER__
%if __NASM_MAJOR__ >= 2 && __NASM_MINOR__ >= 4
%unmacro STORE_DIFFx2 8 ; remove macro from x86util.asm but yasm doesn't have this yet
%endif
%endif
%macro STORE_DIFFx2 8 ; add1, add2, reg1, reg2, zero, shift, source, stride
%macro STORE_DIFFx2 8 ; add1, add2, reg1, reg2, zero, shift, source, stride
movd %3, [%7]
movd %3, [%7]
movd %4, [%7+%8]
movd %4, [%7+%8]
Write
Preview
Loading…
Cancel
Save