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
fb0d0da7
Commit
fb0d0da7
authored
Jan 02, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better display of the fps.
parent
2ac915c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/video_parser/video_parser.c
src/video_parser/video_parser.c
+3
-3
No files found.
src/video_parser/video_parser.c
View file @
fb0d0da7
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* video_parser.c : video parser thread
* video_parser.c : video parser thread
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: video_parser.c,v 1.
59 2000/12/29 12:49:29
massiot Exp $
* $Id: video_parser.c,v 1.
60 2001/01/02 14:03:30
massiot Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
@@ -345,9 +345,9 @@ static void EndThread( vpar_thread_t *p_vpar )
...
@@ -345,9 +345,9 @@ static void EndThread( vpar_thread_t *p_vpar )
p_vpar
->
pc_malformed_pictures
[
P_CODING_TYPE
],
p_vpar
->
pc_malformed_pictures
[
P_CODING_TYPE
],
p_vpar
->
pc_malformed_pictures
[
B_CODING_TYPE
]);
p_vpar
->
pc_malformed_pictures
[
B_CODING_TYPE
]);
#define S p_vpar->sequence
#define S p_vpar->sequence
intf_Msg
(
"vpar info: %s stream (%dx%d), %d pi/s"
,
intf_Msg
(
"vpar info: %s stream (%dx%d), %d
.%d
pi/s"
,
S
.
b_mpeg2
?
"MPEG-2"
:
"MPEG-1"
,
S
.
b_mpeg2
?
"MPEG-2"
:
"MPEG-1"
,
S
.
i_width
,
S
.
i_height
,
S
.
i_frame_rate
/
1001
);
S
.
i_width
,
S
.
i_height
,
S
.
i_frame_rate
/
1001
,
S
.
i_frame_rate
%
1001
);
intf_Msg
(
"vpar info: %s, %s, matrix_coeff: %d"
,
intf_Msg
(
"vpar info: %s, %s, matrix_coeff: %d"
,
S
.
b_progressive
?
"Progressive"
:
"Non-progressive"
,
S
.
b_progressive
?
"Progressive"
:
"Non-progressive"
,
S
.
i_scalable_mode
?
"scalable"
:
"non-scalable"
,
S
.
i_scalable_mode
?
"scalable"
:
"non-scalable"
,
...
...
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