X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fudp.c;h=d243a290eac32e8dbdfd9159b0651d5c81fd3a5d;hb=f659703fb4033420e0607d34bc7cd880a5802ea7;hp=433ccfb98e822b13217c07391cfaaea885f89ecb;hpb=53a3b8597e4aa5079c067f3741f06da574912736;p=vlc diff --git a/modules/access/udp.c b/modules/access/udp.c index 433ccfb98e..d243a290ea 100644 --- a/modules/access/udp.c +++ b/modules/access/udp.c @@ -23,9 +23,9 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** @@ -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 () @@ -90,7 +85,7 @@ static int Open( vlc_object_t *p_this ) { access_t *p_access = (access_t*)p_this; - char *psz_name = strdup( p_access->psz_path ); + char *psz_name = strdup( p_access->psz_location ); char *psz_parser; const char *psz_server_addr, *psz_bind_addr = ""; int i_bind_port, i_server_port = 0; @@ -115,7 +110,7 @@ static int Open( vlc_object_t *p_this ) } } - i_bind_port = var_CreateGetInteger( p_access, "server-port" ); + i_bind_port = var_InheritInteger( p_access, "server-port" ); /* Parse psz_name syntax : * [serveraddr[:serverport]][@[bindaddr]:[bindport]] */ @@ -205,7 +200,7 @@ static int Control( access_t *p_access, int i_query, va_list args ) /* */ case ACCESS_GET_PTS_DELAY: pi_64 = (int64_t*)va_arg( args, int64_t * ); - *pi_64 = var_GetInteger( p_access, "udp-caching" ) * 1000; + *pi_64 = var_GetInteger(p_access,"udp-caching") * 1000; break; /* */