Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
40f2e517
Commit
40f2e517
authored
Nov 09, 2008
by
Rémi Denis-Courmont
Browse files
Move RTP to access/rtp
parent
5b0e367e
Changes
8
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
40f2e517
...
...
@@ -5759,6 +5759,7 @@ AC_CONFIG_FILES([
modules/access/dvb/Makefile
modules/access/mms/Makefile
modules/access/cdda/Makefile
modules/access/rtp/Makefile
modules/access/rtsp/Makefile
modules/access/rtmp/Makefile
modules/access/v4l2/Makefile
...
...
modules/access/Modules.am
View file @
40f2e517
...
...
@@ -3,7 +3,7 @@
# obviously does not. Here is a fix for that.
LIBTOOL=@LIBTOOL@ --tag=CC
BASE_SUBDIRS = dvb mms cdda rtsp rtmp v4l2 vcd vcdx screen
BASE_SUBDIRS = dvb mms cdda
rtp
rtsp rtmp v4l2 vcd vcdx screen
EXTRA_SUBDIRS = bda dshow
SUBDIRS = $(BASE_SUBDIRS)
DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
...
...
modules/access/rtp/Modules.am
0 → 100644
View file @
40f2e517
if HAVE_LIBGCRYPT
# RTP plugin
libvlc_LTLIBRARIES += \
librtp_plugin.la
librtp_plugin_la_SOURCES = \
rtp.c rtp.h session.c
librtp_plugin_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/libs/srtp
librtp_plugin_la_LIBADD = $(AM_LIBADD) \
$(top_builddir)/libs/srtp/libvlc_srtp.la
librtp_plugin_la_DEPENDENCIES = \
$(top_builddir)/libs/srtp/libvlc_srtp.la
endif
modules/
demux
/rtp.c
→
modules/
access/rtp
/rtp.c
View file @
40f2e517
File moved
modules/
demux
/rtp.h
→
modules/
access/rtp
/rtp.h
View file @
40f2e517
File moved
modules/
demux
/rtpsession.c
→
modules/
access
/rtp
/
session.c
View file @
40f2e517
File moved
modules/
demux
/rtpxiph.c
→
modules/
access
/rtp
/
xiph.c
View file @
40f2e517
File moved
modules/demux/Modules.am
View file @
40f2e517
...
...
@@ -56,16 +56,3 @@ libvlc_LTLIBRARIES += \
libwav_plugin.la \
libxa_plugin.la \
$(NULL)
if HAVE_LIBGCRYPT
# RTP plugin
libvlc_LTLIBRARIES += \
librtp_plugin.la
librtp_plugin_la_SOURCES = \
rtp.c rtp.h rtpsession.c
librtp_plugin_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/libs/srtp
librtp_plugin_la_LIBADD = $(AM_LIBADD) \
$(top_builddir)/libs/srtp/libvlc_srtp.la
librtp_plugin_la_DEPENDENCIES = \
$(top_builddir)/libs/srtp/libvlc_srtp.la
endif
Write
Preview
Supports
Markdown
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