Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2ae03968
Commit
2ae03968
authored
May 27, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/mpsubdec: change multipler to int, it only stores 1 and 100
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e89e23e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mpsubdec.c
libavformat/mpsubdec.c
+2
-2
No files found.
libavformat/mpsubdec.c
View file @
2ae03968
...
...
@@ -58,7 +58,7 @@ static int mpsub_read_header(AVFormatContext *s)
AVBPrint
buf
;
AVRational
pts_info
=
(
AVRational
){
100
,
1
};
// ts based by default
int
res
=
0
;
float
multiplier
=
100
.
0
;
int
multiplier
=
10
0
;
float
current_pts
=
0
;
av_bprint_init
(
&
buf
,
0
,
AV_BPRINT_SIZE_UNLIMITED
);
...
...
@@ -76,7 +76,7 @@ static int mpsub_read_header(AVFormatContext *s)
if
(
sscanf
(
line
,
"FORMAT=%d"
,
&
fps
)
==
1
&&
fps
>
3
&&
fps
<
100
)
{
/* frame based timing */
pts_info
=
(
AVRational
){
fps
,
1
};
multiplier
=
1
.
0
;
multiplier
=
1
;
}
else
if
(
sscanf
(
line
,
"%f %f"
,
&
start
,
&
duration
)
==
2
)
{
AVPacket
*
sub
;
const
int64_t
pos
=
avio_tell
(
s
->
pb
);
...
...
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