Commit f982997d authored by Gildas Bazin's avatar Gildas Bazin

* ALL: preparation for 0.7.1-test2.
parent acbd501e
This diff is collapsed.
$Id: NEWS,v 1.83 2004/02/10 17:36:45 gbazin Exp $
$Id: NEWS,v 1.84 2004/02/22 00:15:33 gbazin Exp $
Changes between 0.7.0 and 0.7.1:
---------------------------------
......@@ -23,13 +23,14 @@ Input:
small and strange formats.
* New PVA demux.
* New MOD audio demux.
* Support for DTS wav files.
* Support for DTS audio CD.
* Support for DTS and A52/AC3 wav files.
* Support for DTS and A52/AC3 audio CD.
* New and experimental DVD input plugin with menus support (using libdvdnav).
Stream output:
* MP4/MOV muxer improvements (fast-start, aac in mov, etc...).
* Fixed a nasty bug in the mpeg video packetizer.
* Improved transcoding (multithreading, more tuning, etc...).
Service discovery:
* Fixed sdp in SAP.
......@@ -39,6 +40,7 @@ Mac OS X port:
Win32 port:
* A few improvements to the DirectShow input plugin.
* Fixed ipv6 name resolution.
Changes between 0.6.2 and 0.7.0:
---------------------------------
......
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.182 2004/02/20 22:07:51 gbazin Exp $
dnl $Id: configure.ac,v 1.183 2004/02/22 00:15:33 gbazin Exp $
AC_INIT(vlc,0.7.1-test1)
AC_INIT(vlc,0.7.1-test2)
CONFIGURE_LINE="$0 $*"
CODENAME="Bond"
......@@ -13,7 +13,7 @@ AC_CANONICAL_SYSTEM
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.
AM_INIT_AUTOMAKE(vlc,0.7.1-test1)
AM_INIT_AUTOMAKE(vlc,0.7.1-test2)
AM_CONFIG_HEADER(config.h)
dnl
......
/* Localized versions of Info.plist keys */
CFBundleName = "VLC";
CFBundleShortVersionString = "0.7.1-test1";
CFBundleGetInfoString = "VLC media player 0.7.1-test1, Copyright (c) 1996-2004 VideoLAN.";
CFBundleShortVersionString = "0.7.1-test2";
CFBundleGetInfoString = "VLC media player 0.7.1-test2, Copyright (c) 1996-2004 VideoLAN.";
NSHumanReadableCopyright = "Copyright (c) 1996-2004 VideoLAN.";
......@@ -525,7 +525,7 @@
<key>CFBundleExecutable</key>
<string>VLC</string>
<key>CFBundleGetInfoString</key>
<string>VLC media player 0.7.1-test1, Copyright (c) 1996-2003 VideoLAN.</string>
<string>VLC media player 0.7.1-test2, Copyright (c) 1996-2003 VideoLAN.</string>
<key>CFBundleIconFile</key>
<string>vlc.icns</string>
<key>CFBundleIdentifier</key>
......@@ -537,7 +537,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.7.1-test1</string>
<string>0.7.1-test2</string>
<key>CFBundleSignature</key>
<string>VLC#</string>
<key>CFBundleURLTypes</key>
......@@ -584,7 +584,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0.7.1-test1</string>
<string>0.7.1-test2</string>
<key>NSAppleScriptEnabled</key>
<string>YES</string>
<key>NSMainNibFile</key>
......
......@@ -2,7 +2,7 @@
* video_output.h : video output thread
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: video_output.h,v 1.107 2003/12/11 23:12:46 gbazin Exp $
* $Id: video_output.h,v 1.108 2004/02/22 00:15:33 gbazin Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
......@@ -206,7 +206,7 @@ VLC_EXPORT( int, vout_ChromaCmp, ( uint32_t, uint32_t ) );
VLC_EXPORT( picture_t *, vout_CreatePicture, ( vout_thread_t *, vlc_bool_t, vlc_bool_t, unsigned int ) );
VLC_EXPORT( void, vout_InitFormat, ( video_frame_format_t *, uint32_t, int, int, int ) );
VLC_EXPORT( void, vout_InitPicture, ( vlc_object_t *, picture_t *, uint32_t, int, int, int ) );
VLC_EXPORT( void, vout_AllocatePicture,( vout_thread_t *, picture_t *, uint32_t, int, int, int ) );
VLC_EXPORT( void, vout_AllocatePicture,( vlc_object_t *, picture_t *, uint32_t, int, int, int ) );
VLC_EXPORT( void, vout_DestroyPicture, ( vout_thread_t *, picture_t * ) );
VLC_EXPORT( void, vout_DisplayPicture, ( vout_thread_t *, picture_t * ) );
VLC_EXPORT( void, vout_DatePicture, ( vout_thread_t *, picture_t *, mtime_t ) );
......
......@@ -2,7 +2,7 @@
* vout_pictures.c : picture management functions
*****************************************************************************
* Copyright (C) 2000-2004 VideoLAN
* $Id: vout_pictures.c,v 1.45 2004/01/25 17:16:06 zorglub Exp $
* $Id: vout_pictures.c,v 1.46 2004/02/22 00:15:33 gbazin Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
......@@ -165,7 +165,8 @@ picture_t *vout_CreatePicture( vout_thread_t *p_vout,
*/
if( p_freepic != NULL )
{
vout_AllocatePicture( p_vout, p_freepic, p_vout->render.i_chroma,
vout_AllocatePicture( VLC_OBJECT(p_vout),
p_freepic, p_vout->render.i_chroma,
p_vout->render.i_width, p_vout->render.i_height,
p_vout->render.i_aspect );
......@@ -455,13 +456,13 @@ void vout_PlacePicture( vout_thread_t *p_vout,
* used exactly like a video buffer. The video output thread then manages
* how it gets displayed.
*****************************************************************************/
void vout_AllocatePicture( vout_thread_t *p_vout, picture_t *p_pic,
void vout_AllocatePicture( vlc_object_t *p_this, picture_t *p_pic,
vlc_fourcc_t i_chroma,
int i_width, int i_height, int i_aspect )
{
int i_bytes, i_index;
vout_InitPicture( VLC_OBJECT(p_vout), p_pic, i_chroma,
vout_InitPicture( p_this, p_pic, i_chroma,
i_width, i_height, i_aspect );
/* Calculate how big the new image should be */
......
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