Commit ad59f04f authored by Sam Hocevar's avatar Sam Hocevar

* correction de l'affichage des fps (affichage, pas calcul).

 * changements mineurs dans les fichiers Debian.
parent 9c88ff4f
* fixe a 100% cpu usage bug, in the dummy aout 0.1.99j:
* Added a 'f' shortcut to switch between Windowed and Fullscreened
* Minor changes in the Debian files.
* Fixed fps display.
* Fixed MPEG1 video decoding.
* Fixed a 100% cpu usage bug, in the dummy aout.
* Added a 'f' shortcut to switch between Windowed and Fullscreen
mode. mode.
Mon, 28 Aug 2000 02:34:18 +0200 Mon, 28 Aug 2000 02:34:18 +0200
O.1.99i : 0.1.99i :
* fixed the support for field pictures, which involved a few dozens * fixed the support for field pictures, which involved a few dozens
bugs in the video parser and video decoder. bugs in the video parser and video decoder.
......
vlc (0.1.99i) unstable; urgency=low
* Fixed the framerate display
-- Samuel Hocevar <sam@zoy.org> Tue, 24 Oct 2000 11:08:01 +0200
vlc (0.1.99i) unstable; urgency=low vlc (0.1.99i) unstable; urgency=low
* fixed the support for field pictures, which involved a few dozens * fixed the support for field pictures, which involved a few dozens
......
Source: vlc Source: vlc
Section: graphics Section: graphics
Priority: optional Priority: optional
Maintainer: Samuel Hocevar <sam@via.ecp.fr> Maintainer: Samuel Hocevar <sam@zoy.org>
Standards-Version: 3.0.1 Standards-Version: 3.0.1
Package: vlc Package: vlc
......
...@@ -1692,9 +1692,12 @@ static void RenderPictureInfo( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -1692,9 +1692,12 @@ static void RenderPictureInfo( vout_thread_t *p_vout, picture_t *p_pic )
*/ */
if( p_vout->c_fps_samples > VOUT_FPS_SAMPLES ) if( p_vout->c_fps_samples > VOUT_FPS_SAMPLES )
{ {
sprintf( psz_buffer, "%lli/10 fps", VOUT_FPS_SAMPLES * 1000000 * 10 / long i_fps = VOUT_FPS_SAMPLES * 1000000 * 10 /
( p_vout->p_fps_sample[ (p_vout->c_fps_samples - 1) % VOUT_FPS_SAMPLES ] - ( p_vout->p_fps_sample[ (p_vout->c_fps_samples - 1)
p_vout->p_fps_sample[ p_vout->c_fps_samples % VOUT_FPS_SAMPLES ] ) ); % VOUT_FPS_SAMPLES ] -
p_vout->p_fps_sample[ p_vout->c_fps_samples
% VOUT_FPS_SAMPLES ] );
sprintf( psz_buffer, "%li.%i fps", i_fps / 10, (int)i_fps % 10 );
Print( p_vout, 0, 0, RIGHT_RALIGN, TOP_RALIGN, psz_buffer ); Print( p_vout, 0, 0, RIGHT_RALIGN, TOP_RALIGN, psz_buffer );
} }
......
...@@ -5,7 +5,7 @@ Copyright: GPL ...@@ -5,7 +5,7 @@ Copyright: GPL
Url: http://www.videolan.org/ Url: http://www.videolan.org/
Group: X11/Applications/Graphics Group: X11/Applications/Graphics
Source0: http://www.videolan.org/packages/0.1.99i/vlc-0.1.99i.tar.gz Source0: http://www.videolan.org/packages/0.1.99i/vlc-0.1.99i.tar.gz
Packager: Samuel Hocevar <sam@via.ecp.fr> Packager: Samuel Hocevar <sam@zoy.org>
Buildroot: /tmp/vlc-build Buildroot: /tmp/vlc-build
Summary: VideoLAN Client. Summary: VideoLAN Client.
......
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