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
7495b869
Commit
7495b869
authored
Sep 09, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove recursion into modules/demux/playlist/
parent
5fd4ccc7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
25 deletions
+24
-25
configure.ac
configure.ac
+0
-1
modules/demux/Modules.am
modules/demux/Modules.am
+24
-1
modules/demux/playlist/Modules.am
modules/demux/playlist/Modules.am
+0
-23
No files found.
configure.ac
View file @
7495b869
...
...
@@ -4077,7 +4077,6 @@ AC_CONFIG_FILES([
modules/demux/Makefile
modules/demux/avformat/Makefile
modules/demux/mkv/Makefile
modules/demux/playlist/Makefile
modules/gui/Makefile
modules/gui/macosx/Makefile
modules/gui/minimal_macosx/Makefile
...
...
modules/demux/Modules.am
View file @
7495b869
SUBDIRS = avformat mkv
playlist
SUBDIRS = avformat mkv
SOURCES_flacsys = flac.c
SOURCES_ogg = ogg.c ogg.h oggseek.c oggseek.h vorbis.h kate_categories.c \
kate_categories.h xiph.h
...
...
@@ -65,6 +65,28 @@ libmpgv_plugin_la_SOURCES = mpeg/mpgv.c
libmpgv_plugin_la_CFLAGS = $(AM_CFLAGS)
libmpgv_plugin_la_LIBADD = $(AM_LIBADD)
libplaylist_plugin_la_SOURCES = \
playlist/asx.c \
playlist/b4s.c \
playlist/dvb.c \
playlist/gvp.c \
playlist/ifo.c \
playlist/itml.c \
playlist/itml.h \
playlist/m3u.c \
playlist/pls.c \
playlist/podcast.c \
playlist/qtl.c \
playlist/ram.c \
playlist/sgimb.c \
playlist/shoutcast.c \
playlist/wpl.c \
playlist/xspf.c \
playlist/zpl.c \
playlist/playlist.c playlist/playlist.h
libplaylist_plugin_la_CFLAGS = $(AM_CFLAGS)
libplaylist_plugin_la_LIBADD = $(AM_LIBADD)
libts_plugin_la_SOURCES = ts.c ../mux/mpeg/csa.c dvb-text.h
libts_plugin_la_CFLAGS = $(AM_CFLAGS) $(DVBPSI_CFLAGS)
libts_plugin_la_LIBADD = $(AM_LIBADD) $(DVBPSI_LIBS) $(SOCKET_LIBS)
...
...
@@ -90,6 +112,7 @@ libvlc_LTLIBRARIES += \
libnsc_plugin.la \
libnsv_plugin.la \
libnuv_plugin.la \
libplaylist_plugin.la \
libpva_plugin.la \
libps_plugin.la \
librawdv_plugin.la \
...
...
modules/demux/playlist/Modules.am
deleted
100644 → 0
View file @
5fd4ccc7
SOURCES_playlist = \
asx.c \
b4s.c \
dvb.c \
gvp.c \
ifo.c \
itml.c \
itml.h \
m3u.c \
playlist.c \
playlist.h \
pls.c \
podcast.c \
qtl.c \
ram.c \
sgimb.c \
shoutcast.c \
wpl.c \
xspf.c \
zpl.c \
$(NULL)
libvlc_LTLIBRARIES += libplaylist_plugin.la
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