Commit c97e986e authored by James Almer's avatar James Almer

Merge commit '7911186e'

* commit '7911186e':
  emms: Give apriv_emms_yasm() a more general name
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 0dcfa02f 7911186e
......@@ -23,8 +23,8 @@
SECTION .text
;-----------------------------------------------------------------------------
; void avpriv_emms_yasm(void)
; void avpriv_emms_asm(void)
;-----------------------------------------------------------------------------
cvisible emms_yasm, 0, 0
cvisible emms_asm, 0, 0
emms
RET
......@@ -23,7 +23,7 @@
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
void avpriv_emms_yasm(void);
void avpriv_emms_asm(void);
#if HAVE_MMX_INLINE
# define emms_c emms_c
......@@ -49,7 +49,7 @@ static av_always_inline void emms_c(void)
# include <mmintrin.h>
# define emms_c _mm_empty
#elif HAVE_MMX_EXTERNAL
# define emms_c avpriv_emms_yasm
# define emms_c avpriv_emms_asm
#endif /* HAVE_MMX_INLINE */
#endif /* AVUTIL_X86_EMMS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment