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
8034e01d
Commit
8034e01d
authored
Feb 09, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
packetizer: remove Makefile recursion
Also fix dependency on codec/h264_nal.lo
parent
7e19ed8b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
3 deletions
+32
-3
configure.ac
configure.ac
+0
-1
modules/Makefile.am
modules/Makefile.am
+1
-1
modules/packetizer/.gitignore
modules/packetizer/.gitignore
+0
-1
modules/packetizer/Makefile.am
modules/packetizer/Makefile.am
+31
-0
No files found.
configure.ac
View file @
8034e01d
...
...
@@ -4150,7 +4150,6 @@ AC_CONFIG_FILES([
modules/gui/qt4/Makefile
modules/gui/skins2/Makefile
modules/mux/Makefile
modules/packetizer/Makefile
modules/stream_out/Makefile
modules/text_renderer/Makefile
modules/video_filter/Makefile
...
...
modules/Makefile.am
View file @
8034e01d
...
...
@@ -7,7 +7,6 @@ BASE_SUBDIRS = \
audio_filter
\
control
\
gui
\
packetizer
\
text_renderer
\
video_filter
\
visualization
...
...
@@ -46,6 +45,7 @@ include lua/Makefile.am
include
meta_engine/Makefile.am
include
misc/Makefile.am
include
notify/Makefile.am
include
packetizer/Makefile.am
include
services_discovery/Makefile.am
include
stream_filter/Makefile.am
include
video_chroma/Makefile.am
...
...
modules/packetizer/.gitignore
deleted
100644 → 0
View file @
7e19ed8b
Makefile.am
modules/packetizer/M
odules
.am
→
modules/packetizer/M
akefile
.am
View file @
8034e01d
SOURCES_packetizer_copy = copy.c
SOURCES_packetizer_mpegvideo = mpegvideo.c
SOURCES_packetizer_mpeg4video = mpeg4video.c
SOURCES_packetizer_mpeg4audio = mpeg4audio.c
SOURCES_packetizer_h264 = h264.c ../codec/h264_nal.c ../codec/h264_nal.h
SOURCES_packetizer_vc1 = vc1.c
SOURCES_packetizer_mlp = mlp.c
SOURCES_packetizer_dirac = dirac.c
SOURCES_packetizer_flac = flac.c
SOURCES_packetizer_hevc = hevc.c
packetizerdir
=
$(pluginsdir)
/packetizer
noinst_HEADERS = packetizer_helper.h
libpacketizer_copy_plugin_la_SOURCES
=
packetizer/copy.c
libpacketizer_mpegvideo_plugin_la_SOURCES
=
packetizer/mpegvideo.c
libpacketizer_mpeg4video_plugin_la_SOURCES
=
packetizer/mpeg4video.c
libpacketizer_mpeg4audio_plugin_la_SOURCES
=
packetizer/mpeg4audio.c
libpacketizer_h264_plugin_la_SOURCES
=
\
codec/h264_nal.c codec/h264_nal.h
\
packetizer/h264.c
libpacketizer_vc1_plugin_la_SOURCES
=
packetizer/vc1.c
libpacketizer_mlp_plugin_la_SOURCES
=
packetizer/mlp.c
libpacketizer_dirac_plugin_la_SOURCES
=
packetizer/dirac.c
libpacketizer_flac_plugin_la_SOURCES
=
packetizer/flac.c
libpacketizer_hevc_plugin_la_SOURCES
=
packetizer/hevc.c
packetizer_LTLIBRARIES += \
noinst_HEADERS
+=
packetizer/packetizer_helper.h
packetizer_LTLIBRARIES
=
\
libpacketizer_mpegvideo_plugin.la
\
libpacketizer_mpeg4video_plugin.la
\
libpacketizer_mpeg4audio_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