Commit 5158f316 authored by Christophe Massiot's avatar Christophe Massiot

* Bumped up revision number to 0.5.3-test2

* modules/access_output/udp.c: Now supports IPv6 IP addresses (patch
  courtesy of Alexis Guillard)
* po/*: Updated po files to send out to the translators
* Mac OS X port: Cosmetics
parent ad273906
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
AC_INIT(vlc,0.5.3-test1) AC_INIT(vlc,0.5.3-test2)
CONFIGURE_LINE="$0 $*" CONFIGURE_LINE="$0 $*"
CODENAME="Natalya" CODENAME="Natalya"
...@@ -12,7 +12,7 @@ AC_CANONICAL_SYSTEM ...@@ -12,7 +12,7 @@ AC_CANONICAL_SYSTEM
dnl XXX: we don't put any flags here, because automake 1.5 doesn't support dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
dnl them. And we need the comma otherwize automake will choke on it. dnl them. And we need the comma otherwize automake will choke on it.
AM_INIT_AUTOMAKE(vlc,0.5.3-test1) AM_INIT_AUTOMAKE(vlc,0.5.3-test2)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
dnl dnl
......
...@@ -21,6 +21,10 @@ ...@@ -21,6 +21,10 @@
<array> <array>
<integer>977</integer> <integer>977</integer>
</array> </array>
<key>IBOpenObjects</key>
<array>
<integer>636</integer>
</array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>6I32</string> <string>6I32</string>
</dict> </dict>
......
...@@ -367,7 +367,7 @@ ...@@ -367,7 +367,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>VLC</string> <string>VLC</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>VLC media player 0.5.3-test1, Copyright (c) 1996-2003 VideoLAN.</string> <string>VLC media player 0.5.3-test2, Copyright (c) 1996-2003 VideoLAN.</string>
<key>CFBundleIconFile</key> <key>CFBundleIconFile</key>
<string>vlc.icns</string> <string>vlc.icns</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
...@@ -379,7 +379,7 @@ ...@@ -379,7 +379,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.5.3-test1</string> <string>0.5.3-test2</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>VLC#</string> <string>VLC#</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
...@@ -426,7 +426,7 @@ ...@@ -426,7 +426,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.5.3-test1</string> <string>0.5.3-test2</string>
<key>NSAppleScriptEnabled</key> <key>NSAppleScriptEnabled</key>
<string>YES</string> <string>YES</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* udp.c * udp.c
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: udp.c,v 1.6 2003/03/11 19:02:30 fenrir Exp $ * $Id: udp.c,v 1.7 2003/04/01 22:29:41 massiot Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org> * Eric Petit <titer@videolan.org>
...@@ -142,6 +142,13 @@ static int Open( vlc_object_t *p_this ) ...@@ -142,6 +142,13 @@ static int Open( vlc_object_t *p_this )
psz_dst_addr = psz_parser; psz_dst_addr = psz_parser;
i_dst_port = 0; i_dst_port = 0;
if ( *psz_parser == '[' )
{
while( *psz_parser && *psz_parser != ']' )
{
psz_parser++;
}
}
while( *psz_parser && *psz_parser != ':' ) while( *psz_parser && *psz_parser != ':' )
{ {
psz_parser++; psz_parser++;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* open.m: MacOS X plugin for vlc * open.m: MacOS X plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2002-2003 VideoLAN * Copyright (C) 2002-2003 VideoLAN
* $Id: open.m,v 1.26 2003/03/26 03:13:30 hartman Exp $ * $Id: open.m,v 1.27 2003/04/01 22:29:41 massiot Exp $
* *
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
...@@ -182,7 +182,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) ...@@ -182,7 +182,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
[o_sout_cbox setTitle: _NS("Stream output:")]; [o_sout_cbox setTitle: _NS("Stream output:")];
[o_sout_btn_ok setTitle: _NS("OK")]; [o_sout_btn_ok setTitle: _NS("OK")];
[o_sout_settings setTitle: _NS("Settings")]; [o_sout_settings setTitle: _NS("Settings...")];
[o_sout_mrl_lbl setTitle: _NS("Stream output MRL")]; [o_sout_mrl_lbl setTitle: _NS("Stream output MRL")];
[o_sout_access_lbl setTitle: _NS("Output Method")]; [o_sout_access_lbl setTitle: _NS("Output Method")];
...@@ -202,7 +202,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) ...@@ -202,7 +202,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
[[o_sout_mux cellAtRow:0 column:3] setTitle: _NS("Ogg")]; [[o_sout_mux cellAtRow:0 column:3] setTitle: _NS("Ogg")];
[o_file_sub_ckbox setTitle: _NS("Load subtitles file:")]; [o_file_sub_ckbox setTitle: _NS("Load subtitles file:")];
[o_file_sub_btn_settings setTitle: _NS("Settings")]; [o_file_sub_btn_settings setTitle: _NS("Settings...")];
[o_file_sub_btn_browse setTitle: _NS("Browse...")]; [o_file_sub_btn_browse setTitle: _NS("Browse...")];
[o_file_sub_override setTitle: _NS("Override")]; [o_file_sub_override setTitle: _NS("Override")];
[o_file_sub_delay_lbl setStringValue: _NS("delay")]; [o_file_sub_delay_lbl setStringValue: _NS("delay")];
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment