Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
4c7fcb01
Commit
4c7fcb01
authored
Sep 14, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sse2: merge back into video_chroma (refs #9367)
parent
4ec424aa
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
43 deletions
+19
-43
configure.ac
configure.ac
+0
-1
modules/Makefile.am
modules/Makefile.am
+0
-4
modules/sse2/Makefile.am
modules/sse2/Makefile.am
+0
-37
modules/video_chroma/Makefile.am
modules/video_chroma/Makefile.am
+18
-0
modules/video_chroma/i420_rgb16.c
modules/video_chroma/i420_rgb16.c
+1
-1
modules/video_chroma/i420_rgb_sse2.h
modules/video_chroma/i420_rgb_sse2.h
+0
-0
No files found.
configure.ac
View file @
4c7fcb01
...
...
@@ -4277,7 +4277,6 @@ AC_CONFIG_FILES([
modules/video_output/Makefile
modules/video_splitter/Makefile
modules/visualization/Makefile
modules/sse2/Makefile
modules/altivec/Makefile
modules/arm_neon/Makefile
modules/hw/vdpau/Makefile
...
...
modules/Makefile.am
View file @
4c7fcb01
...
...
@@ -24,7 +24,6 @@ EXTRA_SUBDIRS = \
access_output
\
mux
\
stream_out
\
sse2
\
altivec
\
arm_neon
\
hw/vdpau
\
...
...
@@ -35,9 +34,6 @@ DIST_SUBDIRS = . $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
if
ENABLE_SOUT
SUBDIRS
+=
access_output mux stream_out
endif
if
HAVE_SSE2
SUBDIRS
+=
sse2
endif
if
HAVE_ALTIVEC
SUBDIRS
+=
altivec
endif
...
...
modules/sse2/Makefile.am
deleted
100644 → 0
View file @
4ec424aa
AUTOMAKE_OPTIONS
=
subdir-objects
basedir
=
sse2
include
$(top_srcdir)/modules/common.am
libi420_rgb_sse2_plugin_la_SOURCES
=
\
../video_chroma/i420_rgb.c
\
../video_chroma/i420_rgb.h
\
../video_chroma/i420_rgb16.c
\
../sse2/i420_rgb_sse2.h
libi420_rgb_sse2_plugin_la_CFLAGS
=
$(AM_CFLAGS)
libi420_rgb_sse2_plugin_la_LIBADD
=
$(AM_LIBADD)
if
HAVE_WIN32
libi420_rgb_sse2_plugin_la_DEPENDENCIES
=
libi420_rgb_sse2_plugin.rc.o
endif
libi420_yuy2_sse2_plugin_la_SOURCES
=
\
../video_chroma/i420_yuy2.c
\
../video_chroma/i420_yuy2.h
libi420_yuy2_sse2_plugin_la_CFLAGS
=
$(AM_CFLAGS)
libi420_yuy2_sse2_plugin_la_LIBADD
=
$(AM_LIBADD)
if
HAVE_WIN32
libi420_yuy2_sse2_plugin_la_DEPENDENCIES
=
libi420_yuy2_sse2_plugin.rc.o
endif
libi422_yuy2_sse2_plugin_la_SOURCES
=
\
../video_chroma/i422_yuy2.c
\
../video_chroma/i422_yuy2.h
libi422_yuy2_sse2_plugin_la_CFLAGS
=
$(AM_CFLAGS)
libi422_yuy2_sse2_plugin_la_LIBADD
=
$(AM_LIBADD)
if
HAVE_WIN32
libi422_yuy2_sse2_plugin_la_DEPENDENCIES
=
libi422_yuy2_sse2_plugin.rc.o
endif
libvlc_LTLIBRARIES
=
\
libi420_rgb_sse2_plugin.la
\
libi420_yuy2_sse2_plugin.la
\
libi422_yuy2_sse2_plugin.la
modules/video_chroma/Makefile.am
View file @
4c7fcb01
...
...
@@ -71,3 +71,21 @@ libvlc_LTLIBRARIES += \
libi420_yuy2_mmx_plugin.la
\
libi422_yuy2_mmx_plugin.la
endif
# SSE2
libi420_rgb_sse2_plugin_la_SOURCES
=
i420_rgb.c i420_rgb.h
\
i420_rgb16.c i420_rgb_sse2.h
libi420_rgb_sse2_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
libi420_yuy2_sse2_plugin_la_SOURCES
=
i420_yuy2.c i420_yuy2.h
libi420_yuy2_sse2_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
libi422_yuy2_sse2_plugin_la_SOURCES
=
i422_yuy2.c i422_yuy2.h
libi422_yuy2_sse2_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
if
HAVE_SSE2
libvlc_LTLIBRARIES
+=
\
libi420_rgb_sse2_plugin.la
\
libi420_yuy2_sse2_plugin.la
\
libi422_yuy2_sse2_plugin.la
endif
modules/video_chroma/i420_rgb16.c
View file @
4c7fcb01
...
...
@@ -42,7 +42,7 @@
# include "i420_rgb_mmx.h"
# define VLC_TARGET VLC_MMX
#elif defined (MODULE_NAME_IS_i420_rgb_sse2)
# include "
../sse2/
i420_rgb_sse2.h"
# include "i420_rgb_sse2.h"
# define VLC_TARGET VLC_SSE
#endif
...
...
modules/
sse2
/i420_rgb_sse2.h
→
modules/
video_chroma
/i420_rgb_sse2.h
View file @
4c7fcb01
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment