[vlc-commits] Avcodec: fix typo for SSSE3

Jean-Baptiste Kempf git at videolan.org
Mon Oct 1 15:58:44 CEST 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Oct  1 15:39:53 2012 +0200| [08a51ba6b0ac6e7e4c7de2431df669dd3f42ceb0] | committer: Jean-Baptiste Kempf

Avcodec: fix typo for SSSE3

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=08a51ba6b0ac6e7e4c7de2431df669dd3f42ceb0
---

 modules/codec/avcodec/cpu.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/avcodec/cpu.c b/modules/codec/avcodec/cpu.c
index 97d795f..9035a59 100644
--- a/modules/codec/avcodec/cpu.c
+++ b/modules/codec/avcodec/cpu.c
@@ -52,7 +52,7 @@ unsigned GetVlcDspMask( void )
         mask |= AV_CPU_FLAG_SSE3;
 # endif
 # ifdef AV_CPU_FLAG_SSSE3
-    if( !vlc_CPU_SSE3() )
+    if( !vlc_CPU_SSSE3() )
         mask |= AV_CPU_FLAG_SSSE3;
 # endif
 # ifdef AV_CPU_FLAG_SSE4



More information about the vlc-commits mailing list