[vlc-commits] commit: access_udp: remove obsolete shortcuts. ( Rémi Duraffort )
git at videolan.org
git at videolan.org
Tue Aug 17 21:57:58 CEST 2010
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Aug 17 21:55:38 2010 +0200| [49c2f12198ba1db7da45db41fed128313ae399a1] | committer: Rémi Duraffort
access_udp: remove obsolete shortcuts.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=49c2f12198ba1db7da45db41fed128313ae399a1
---
modules/access/udp.c | 7 +------
1 files changed, 1 insertions(+), 6 deletions(-)
diff --git a/modules/access/udp.c b/modules/access/udp.c
index 5cc485f..a57e8da 100644
--- a/modules/access/udp.c
+++ b/modules/access/udp.c
@@ -63,14 +63,9 @@ vlc_module_begin ()
add_integer( "udp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
CACHING_LONGTEXT, true )
change_safe()
- add_obsolete_integer( "rtp-late" )
- add_obsolete_bool( "udp-auto-mtu" )
set_capability( "access", 0 )
- add_shortcut( "udp" )
- add_shortcut( "udpstream" )
- add_shortcut( "udp4" )
- add_shortcut( "udp6" )
+ add_shortcut( "udp", "udpstream", "udp4", "udp6" )
set_callbacks( Open, Close )
vlc_module_end ()
More information about the vlc-commits
mailing list