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
892d21f1
Commit
892d21f1
authored
Sep 21, 2013
by
Sébastien Toque
Committed by
Rafaël Carré
Sep 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
missing MODULE_NAME_IS_ for android
Signed-off-by:
Rafaël Carré
<
funman@videolan.org
>
parent
8b264d74
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
0 deletions
+12
-0
modules/access/Makefile.am
modules/access/Makefile.am
+3
-0
modules/audio_filter/Modules.am
modules/audio_filter/Modules.am
+1
-0
modules/audio_mixer/Makefile.am
modules/audio_mixer/Makefile.am
+2
-0
modules/audio_output/Modules.am
modules/audio_output/Modules.am
+2
-0
modules/demux/Makefile.am
modules/demux/Makefile.am
+4
-0
No files found.
modules/access/Makefile.am
View file @
892d21f1
...
...
@@ -10,6 +10,7 @@ libattachment_plugin_la_SOURCES = access/attachment.c
access_LTLIBRARIES
+=
libattachment_plugin.la
libfilesystem_plugin_la_SOURCES
=
access/fs.h access/file.c access/directory.c access/fs.c
libfilesystem_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_filesystem
if
HAVE_WIN32
libfilesystem_plugin_la_LIBADD
=
-lshlwapi
endif
...
...
@@ -24,6 +25,7 @@ access_LTLIBRARIES += libimem_plugin.la
librar_plugin_la_SOURCES
=
access/rar/rar.c access/rar/rar.h
\
access/rar/access.c access/rar/stream.c access/rar/module.c
librar_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_rar
access_LTLIBRARIES
+=
librar_plugin.la
libsdp_plugin_la_SOURCES
=
access/sdp.c
...
...
@@ -388,6 +390,7 @@ libaccess_realrtsp_plugin_la_SOURCES = \
access/rtsp/real_rmff.c access/rtsp/real_rmff.h
\
access/rtsp/real_sdpplin.c access/rtsp/real_sdpplin.h
\
access/rtsp/real_asmrp.c
libaccess_realrtsp_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_access_realrtsp
libaccess_realrtsp_plugin_la_LIBADD
=
$(SOCKET_LIBS)
libaccess_realrtsp_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(accessdir)
'
access_LTLIBRARIES
+=
$(LTLIBaccess_realrtsp)
...
...
modules/audio_filter/Modules.am
View file @
892d21f1
...
...
@@ -52,6 +52,7 @@ SOURCES_dtstospdif = converter/dtstospdif.c
SOURCES_dtstofloat32 = converter/dtstofloat32.c
SOURCES_mpgatofixed32 = converter/mpgatofixed32.c
libaudio_format_plugin_la_SOURCES = converter/format.c
libaudio_format_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -DMODULE_NAME_IS_audio_format
libaudio_format_plugin_la_LIBADD = $(LIBM)
audio_filter_LTLIBRARIES += \
...
...
modules/audio_mixer/Makefile.am
View file @
892d21f1
...
...
@@ -2,9 +2,11 @@ include $(top_srcdir)/modules/common.am
audio_mixerdir
=
$(pluginsdir)
/audio_mixer
libfloat_mixer_plugin_la_SOURCES
=
float.c
libfloat_mixer_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_float_mixer
libfloat_mixer_plugin_la_LIBADD
=
$(LIBM)
libinteger_mixer_plugin_la_SOURCES
=
integer.c
libinteger_mixer_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_integer_mixer
audio_mixer_LTLIBRARIES
=
\
libfloat_mixer_plugin.la
\
...
...
modules/audio_output/Modules.am
View file @
892d21f1
...
...
@@ -10,6 +10,7 @@ libopensles_android_plugin_la_SOURCES = opensles_android.c
libopensles_android_plugin_la_LIBADD = $(LIBDL) $(LIBM)
libandroid_audiotrack_plugin_la_SOURCES = audiotrack.c
libandroid_audiotrack_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -DMODULE_NAME_IS_android_audiotrack
libandroid_audiotrack_plugin_la_LIBADD = $(LIBDL)
if HAVE_ANDROID
...
...
@@ -19,6 +20,7 @@ endif
libadummy_plugin_la_SOURCES = adummy.c
libafile_plugin_la_SOURCES = file.c
libafile_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -DMODULE_NAME_IS_afile
libamem_plugin_la_SOURCES = amem.c
...
...
modules/demux/Makefile.am
View file @
892d21f1
...
...
@@ -2,6 +2,7 @@ demuxdir = $(pluginsdir)/demux
demux_LTLIBRARIES
=
libflacsys_plugin_la_SOURCES
=
demux/flac.c demux/xiph_metadata.h demux/xiph_metadata.c
libflacsys_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_flacsys
demux_LTLIBRARIES
+=
libflacsys_plugin.la
libogg_plugin_la_SOURCES
=
demux/ogg.c demux/ogg.h demux/oggseek.c demux/oggseek.h
\
...
...
@@ -89,6 +90,7 @@ libvc1_plugin_la_SOURCES = demux/vc1.c
demux_LTLIBRARIES
+=
libvc1_plugin.la
libdemux_cdg_plugin_la_SOURCES
=
demux/cdg.c
libdemux_cdg_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_demux_cdg
demux_LTLIBRARIES
+=
libdemux_cdg_plugin.la
libsmf_plugin_la_SOURCES
=
demux/smf.c
...
...
@@ -108,12 +110,14 @@ EXTRA_LTLIBRARIES += libsid_plugin.la
demux_LTLIBRARIES
+=
$(LTLIBsid)
libdiracsys_plugin_la_SOURCES
=
demux/dirac.c
libdiracsys_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_diracsys
demux_LTLIBRARIES
+=
libdiracsys_plugin.la
libimage_plugin_la_SOURCES
=
demux/image.c demux/mxpeg_helper.h
demux_LTLIBRARIES
+=
libimage_plugin.la
libdemux_stl_plugin_la_SOURCES
=
demux/stl.c
libdemux_stl_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
-DMODULE_NAME_IS_demux_stl
demux_LTLIBRARIES
+=
libdemux_stl_plugin.la
libasf_plugin_la_SOURCES
=
demux/asf/asf.c demux/asf/libasf.c demux/asf/libasf.h demux/asf/libasf_guid.h
...
...
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