Commit 370e8f9a authored by Christophe Massiot's avatar Christophe Massiot

* Bumped up version number to 0.4.4.

* ./plugins/spudec/spu_decoder.c: Fixed a moronic endianness bug.
* ./src/audio_output/audio_output.c: The default rate is now fetched from
  the audio decoder, so avoid unnecessary resampling.
parent 90543ca0
...@@ -775,7 +775,7 @@ test "$host_alias" != "$target_alias" && ...@@ -775,7 +775,7 @@ test "$host_alias" != "$target_alias" &&
PACKAGE="vlc" PACKAGE="vlc"
VERSION="0.4.3" VERSION="0.4.4"
CODENAME=Ourumov CODENAME=Ourumov
save_CFLAGS="${CFLAGS}" save_CFLAGS="${CFLAGS}"
......
...@@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h) ...@@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h)
AC_CANONICAL_SYSTEM AC_CANONICAL_SYSTEM
PACKAGE="vlc" PACKAGE="vlc"
VERSION="0.4.3" VERSION="0.4.4"
CODENAME=Ourumov CODENAME=Ourumov
dnl Save CFLAGS and LDFLAGS dnl Save CFLAGS and LDFLAGS
......
vlc (0.4.4-1) unstable; urgency=low
* New upstream release.
-- Samuel Hocevar <sam@zoy.org> Wed, 7 Aug 2002 22:31:26 +0200
vlc (0.4.3-1) unstable; urgency=low vlc (0.4.3-1) unstable; urgency=low
* New upstream release. * New upstream release.
......
...@@ -284,11 +284,11 @@ ...@@ -284,11 +284,11 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.4.3</string> <string>0.4.4</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>VLC#</string> <string>VLC#</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.4.3</string> <string>0.4.4</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
<string>MainMenu</string> <string>MainMenu</string>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>
......
Package: vlc Package: vlc
Section: graphics Section: graphics
Priority: optional Priority: optional
Version: 0.4.3 Version: 0.4.4
Release: 1 Release: 1
Architecture: arm Architecture: arm
Maintainer: Jean-Paul Saman <jpsaman@wxs.nl>, Christophe Massiot <massiot@via.ecp.fr> Maintainer: Jean-Paul Saman <jpsaman@wxs.nl>, Christophe Massiot <massiot@via.ecp.fr>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* spu_decoder.c : spu decoder thread * spu_decoder.c : spu decoder thread
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001 VideoLAN * Copyright (C) 2000-2001 VideoLAN
* $Id: spu_decoder.c,v 1.24.2.2 2002/06/27 19:44:54 sam Exp $ * $Id: spu_decoder.c,v 1.24.2.3 2002/08/07 20:42:36 massiot Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* Rudolf Cornelissen <rag.cornelissen@inter.nl.net> * Rudolf Cornelissen <rag.cornelissen@inter.nl.net>
...@@ -465,15 +465,9 @@ static int ParseControlSequences( spudec_thread_t *p_spudec, ...@@ -465,15 +465,9 @@ static int ParseControlSequences( spudec_thread_t *p_spudec,
p_demux_data + sizeof(int)))[ p_demux_data + sizeof(int)))[
GetBits(&p_spudec->bit_stream, 4) ]; GetBits(&p_spudec->bit_stream, 4) ];
#ifndef WORDS_BIGENDIAN
p_spu->p_sys->pi_yuv[3-i][0] = (i_color>>16) & 0xff; p_spu->p_sys->pi_yuv[3-i][0] = (i_color>>16) & 0xff;
p_spu->p_sys->pi_yuv[3-i][1] = (i_color>>0) & 0xff; p_spu->p_sys->pi_yuv[3-i][1] = (i_color>>0) & 0xff;
p_spu->p_sys->pi_yuv[3-i][2] = (i_color>>8) & 0xff; p_spu->p_sys->pi_yuv[3-i][2] = (i_color>>8) & 0xff;
#else
p_spu->p_sys->pi_yuv[3-i][0] = (i_color>>8) & 0xff;
p_spu->p_sys->pi_yuv[3-i][1] = (i_color>>24) & 0xff;
p_spu->p_sys->pi_yuv[3-i][2] = (i_color>>16) & 0xff;
#endif
} }
} }
else else
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* audio_output.c : audio output thread * audio_output.c : audio output thread
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: audio_output.c,v 1.84 2002/04/23 14:16:20 sam Exp $ * $Id: audio_output.c,v 1.84.2.1 2002/08/07 20:42:37 massiot Exp $
* *
* Authors: Michel Kaempf <maxx@via.ecp.fr> * Authors: Michel Kaempf <maxx@via.ecp.fr>
* Cyril Deguet <asmax@via.ecp.fr> * Cyril Deguet <asmax@via.ecp.fr>
...@@ -112,9 +112,7 @@ aout_thread_t *aout_CreateThread( int *pi_status, int i_channels, int i_rate ) ...@@ -112,9 +112,7 @@ aout_thread_t *aout_CreateThread( int *pi_status, int i_channels, int i_rate )
if( p_aout->i_rate == 0 ) if( p_aout->i_rate == 0 )
{ {
intf_ErrMsg( "aout error: null sample rate" ); p_aout->i_rate = i_rate;
free( p_aout );
return( NULL );
} }
/* Choose the best module */ /* Choose the best module */
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* and spawn threads. * and spawn threads.
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: main.c,v 1.195.2.5 2002/07/29 16:12:24 gbazin Exp $ * $Id: main.c,v 1.195.2.6 2002/08/07 20:42:37 massiot Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -385,7 +385,7 @@ ADD_MODULE_WITH_SHORT ( "aout", 'A', MODULE_CAPABILITY_AOUT, NULL, NULL, AOUT_T ...@@ -385,7 +385,7 @@ ADD_MODULE_WITH_SHORT ( "aout", 'A', MODULE_CAPABILITY_AOUT, NULL, NULL, AOUT_T
ADD_BOOL ( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT ) ADD_BOOL ( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT )
ADD_BOOL ( "mono", 0, NULL, MONO_TEXT, MONO_LONGTEXT ) ADD_BOOL ( "mono", 0, NULL, MONO_TEXT, MONO_LONGTEXT )
ADD_INTEGER ( "volume", VOLUME_DEFAULT, NULL, VOLUME_TEXT, VOLUME_LONGTEXT ) ADD_INTEGER ( "volume", VOLUME_DEFAULT, NULL, VOLUME_TEXT, VOLUME_LONGTEXT )
ADD_INTEGER ( "rate", 44100, NULL, RATE_TEXT, RATE_LONGTEXT ) ADD_INTEGER ( "rate", 0, NULL, RATE_TEXT, RATE_LONGTEXT )
ADD_INTEGER ( "desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT ) ADD_INTEGER ( "desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT )
ADD_INTEGER ( "audio-format", 0, NULL, FORMAT_TEXT, FORMAT_LONGTEXT ) ADD_INTEGER ( "audio-format", 0, NULL, FORMAT_TEXT, FORMAT_LONGTEXT )
......
%define name vlc %define name vlc
%define vlc_ver 0.4.3 %define vlc_ver 0.4.4
%define version %vlc_ver %define version %vlc_ver
%define cvs 0 %define cvs 0
...@@ -411,6 +411,9 @@ rm -fr %buildroot ...@@ -411,6 +411,9 @@ rm -fr %buildroot
%{_libdir}/videolan/vlc/alsa.so %{_libdir}/videolan/vlc/alsa.so
%changelog %changelog
* Wed Aug 7 2002 Yves Duret <yduret@mandrakesoft.com> 0.4.4-1mdk
- new upstream release
* Fri Jul 26 2002 Yves Duret <yduret@mandrakesoft.com> 0.4.3-1mdk * Fri Jul 26 2002 Yves Duret <yduret@mandrakesoft.com> 0.4.3-1mdk
- new upstream release - new upstream release
......
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