Browse Source

chroma: copy: fix typo

Harmless since the typo was done everywhere
pull/59/merge
Thomas Guillem 9 years ago
parent
commit
d78a9a20d3
  1. 2
      modules/video_chroma/Makefile.am
  2. 4
      modules/video_chroma/copy.c

2
modules/video_chroma/Makefile.am

@ -155,7 +155,7 @@ chroma_copy_sse_test_CFLAGS = -DCOPY_TEST
chroma_copy_sse_test_LDADD = ../src/libvlccore.la
chroma_copy_test_SOURCES = $(libchroma_copy_la_SOURCES)
chroma_copy_test_CFLAGS = -DCOPY_TEST -DCOPY_TEST_NOOTPIM
chroma_copy_test_CFLAGS = -DCOPY_TEST -DCOPY_TEST_NOOPTIM
chroma_copy_test_LDADD = ../src/libvlccore.la
if HAVE_SSE2

4
modules/video_chroma/copy.c

@ -110,7 +110,7 @@ void CopyCleanCache(copy_cache_t *cache)
# define vlc_CPU_SSE2() ((cpu & VLC_CPU_SSE2) != 0)
#endif
#ifdef COPY_TEST_NOOTPIM
#ifdef COPY_TEST_NOOPTIM
# undef vlc_CPU_SSE4_1
# define vlc_CPU_SSE4_1() (0)
# undef vlc_CPU_SSE3
@ -1027,7 +1027,7 @@ int main(void)
alarm(10);
unsigned cpu = vlc_CPU();
#ifndef COPY_TEST_NOOTPIM
#ifndef COPY_TEST_NOOPTIM
if (!vlc_CPU_SSE2())
{
fprintf(stderr, "WARNING: could not test SSE\n");

Loading…
Cancel
Save