Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
b894ea27
Commit
b894ea27
authored
Sep 09, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove recursion into modules/codec/omxil/
parent
242da5cd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
10 deletions
+30
-10
configure.ac
configure.ac
+0
-2
modules/codec/Modules.am
modules/codec/Modules.am
+30
-1
modules/codec/omxil/Modules.am
modules/codec/omxil/Modules.am
+0
-7
No files found.
configure.ac
View file @
b894ea27
...
...
@@ -2112,7 +2112,6 @@ AC_ARG_ENABLE(omxil,
if test "${enable_omxil}" = "yes"
then
VLC_ADD_PLUGIN([omxil])
VLC_ADD_LIBS([omxil], [$LIBDL])
fi
dnl
...
...
@@ -4068,7 +4067,6 @@ AC_CONFIG_FILES([
modules/codec/Makefile
modules/codec/avcodec/Makefile
modules/codec/loader/Makefile
modules/codec/omxil/Makefile
modules/control/Makefile
modules/demux/Makefile
modules/gui/Makefile
...
...
modules/codec/Modules.am
View file @
b894ea27
SUBDIRS = loader avcodec omxil
SUBDIRS = loader avcodec
noinst_HEADERS =
SOURCES_a52 = a52.c a52.h
SOURCES_dts = dts.c
SOURCES_flac = flac.c
...
...
@@ -78,3 +80,30 @@ libvlc_LTLIBRARIES += \
libt140_plugin.la \
libstl_plugin.la \
$(NULL)
### OpenMAX ###
noinst_HEADERS += \
omxil/OMX_Component.h \
omxil/OMX_Core.h \
omxil/OMX_Image.h \
omxil/OMX_IVCommon.h \
omxil/OMX_Types.h \
omxil/OMX_Audio.h \
omxil/OMX_Index.h \
omxil/OMX_Other.h \
omxil/OMX_Video.h
libomxil_plugin_la_SOURCES = \
omxil/utils.c omxil_utils.h \
omxil/h264_nal.h \
omxil/qcom.c omxil/qcom.h \
omxil/omxil.c omxil/omxil.h
libomxil_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/omxil
libomxil_plugin_la_LIBADD = $(AM_LIBADD) $(LIBDL)
libiomx_plugin_la_SOURCES = $(libomxil_plugin_la_SOURCES)
libiomx_plugin_la_CPPFLAGS = $(libomxil_plugin_la_CPPFLAGS) -DUSE_IOMX
libiomx_plugin_la_LIBADD = $(libomxil_plugin_la_LIBADD)
libvlc_LTLIBRARIES += $(LTLIBomxil) $(LTLIBiomx)
EXTRA_LTLIBRARIES += libomxil_plugin.la libiomx_plugin.la
modules/codec/omxil/Modules.am
deleted
100644 → 0
View file @
242da5cd
SOURCES_omxil = omxil.c utils.c omxil.h omxil_utils.h \
OMX_Component.h OMX_Core.h OMX_Image.h OMX_IVCommon.h OMX_Types.h \
OMX_Audio.h OMX_Index.h OMX_Other.h OMX_Video.h ../h264_nal.h \
qcom.h qcom.c
CPPFLAGS_iomx = -DUSE_IOMX
SOURCES_iomx = $(SOURCES_omxil)
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