Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
ad59f04f
Commit
ad59f04f
authored
Oct 24, 2000
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* correction de l'affichage des fps (affichage, pas calcul).
* changements mineurs dans les fichiers Debian.
parent
9c88ff4f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
8 deletions
+22
-8
ChangeLog
ChangeLog
+8
-3
debian/changelog
debian/changelog
+6
-0
debian/control
debian/control
+1
-1
src/video_output/video_output.c
src/video_output/video_output.c
+6
-3
vlc.spec
vlc.spec
+1
-1
No files found.
ChangeLog
View file @
ad59f04f
* fixe a 100% cpu usage bug, in the dummy aout
* Added a 'f' shortcut to switch between Windowed and Fullscreened
0.1.99j:
* 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.
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
bugs in the video parser and video decoder.
...
...
debian/changelog
View file @
ad59f04f
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
* fixed the support for field pictures, which involved a few dozens
...
...
debian/control
View file @
ad59f04f
Source: vlc
Section: graphics
Priority: optional
Maintainer: Samuel Hocevar <sam@
via.ecp.fr
>
Maintainer: Samuel Hocevar <sam@
zoy.org
>
Standards-Version: 3.0.1
Package: vlc
...
...
src/video_output/video_output.c
View file @
ad59f04f
...
...
@@ -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
)
{
sprintf
(
psz_buffer
,
"%lli/10 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
%
VOUT_FPS_SAMPLES
]
)
);
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
%
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
);
}
...
...
vlc.spec
View file @
ad59f04f
...
...
@@ -5,7 +5,7 @@ Copyright: GPL
Url: http://www.videolan.org/
Group: X11/Applications/Graphics
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
Summary: VideoLAN Client.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment