Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
f0b4a505
Commit
f0b4a505
authored
Mar 08, 2012
by
Michael Niedermayer
Committed by
Anton Khirnov
Mar 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oggparseogm: fix order of arguments of avpriv_set_pts_info().
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
677df4d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
oggparseogm.c
libavformat/oggparseogm.c
+1
-1
No files found.
libavformat/oggparseogm.c
View file @
f0b4a505
...
@@ -80,7 +80,7 @@ ogm_header(AVFormatContext *s, int idx)
...
@@ -80,7 +80,7 @@ ogm_header(AVFormatContext *s, int idx)
if
(
st
->
codec
->
codec_type
==
AVMEDIA_TYPE_VIDEO
){
if
(
st
->
codec
->
codec_type
==
AVMEDIA_TYPE_VIDEO
){
st
->
codec
->
width
=
bytestream_get_le32
(
&
p
);
st
->
codec
->
width
=
bytestream_get_le32
(
&
p
);
st
->
codec
->
height
=
bytestream_get_le32
(
&
p
);
st
->
codec
->
height
=
bytestream_get_le32
(
&
p
);
avpriv_set_pts_info
(
st
,
64
,
spu
*
10000000
,
time_unit
);
avpriv_set_pts_info
(
st
,
64
,
time_unit
,
spu
*
10000000
);
}
else
{
}
else
{
st
->
codec
->
channels
=
bytestream_get_le16
(
&
p
);
st
->
codec
->
channels
=
bytestream_get_le16
(
&
p
);
p
+=
2
;
/* block_align */
p
+=
2
;
/* block_align */
...
...
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