Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
6e69de35
Commit
6e69de35
authored
May 16, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/ogg.c: fill-in frame rate info in es_format_t.
parent
1152f57a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
modules/demux/ogg.c
modules/demux/ogg.c
+6
-0
No files found.
modules/demux/ogg.c
View file @
6e69de35
...
...
@@ -870,6 +870,9 @@ static int Ogg_FindLogicalStreams( demux_t *p_demux )
msg_Dbg
(
p_demux
,
"found video header of type: %.4s"
,
(
char
*
)
&
p_stream
->
fmt
.
i_codec
);
p_stream
->
fmt
.
video
.
i_frame_rate
=
10000000
;
p_stream
->
fmt
.
video
.
i_frame_rate_base
=
GetQWLE
((
oggpacket
.
packet
+
164
));
p_stream
->
f_rate
=
10000000
.
0
/
GetQWLE
((
oggpacket
.
packet
+
164
));
p_stream
->
fmt
.
video
.
i_bits_per_pixel
=
...
...
@@ -969,6 +972,9 @@ static int Ogg_FindLogicalStreams( demux_t *p_demux )
msg_Dbg
(
p_demux
,
"found video header of type: %.4s"
,
(
char
*
)
&
p_stream
->
fmt
.
i_codec
);
p_stream
->
fmt
.
video
.
i_frame_rate
=
10000000
;
p_stream
->
fmt
.
video
.
i_frame_rate_base
=
GetQWLE
(
&
st
->
time_unit
);
p_stream
->
f_rate
=
10000000
.
0
/
GetQWLE
(
&
st
->
time_unit
);
p_stream
->
fmt
.
video
.
i_bits_per_pixel
=
...
...
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