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
557d4c4e
Commit
557d4c4e
authored
Apr 04, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: replace AVCodecContext.time_base with framerate
parent
2d6e5849
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
avconv.c
avconv.c
+5
-5
No files found.
avconv.c
View file @
557d4c4e
...
...
@@ -1401,10 +1401,10 @@ static int process_input_packet(InputStream *ist, const AVPacket *pkt)
else
if
(
ist
->
st
->
avg_frame_rate
.
num
)
ist
->
next_dts
+=
av_rescale_q
(
1
,
av_inv_q
(
ist
->
st
->
avg_frame_rate
),
AV_TIME_BASE_Q
);
else
if
(
ist
->
dec_ctx
->
time_bas
e
.
num
!=
0
)
{
else
if
(
ist
->
dec_ctx
->
framerat
e
.
num
!=
0
)
{
int
ticks
=
ist
->
st
->
parser
?
ist
->
st
->
parser
->
repeat_pict
+
1
:
ist
->
dec_ctx
->
ticks_per_frame
;
ist
->
next_dts
+=
av_rescale_q
(
ticks
,
ist
->
dec_ctx
->
time_bas
e
,
AV_TIME_BASE_Q
);
ist
->
next_dts
+=
av_rescale_q
(
ticks
,
ist
->
dec_ctx
->
framerat
e
,
AV_TIME_BASE_Q
);
}
break
;
case
AVMEDIA_TYPE_SUBTITLE
:
...
...
@@ -1435,11 +1435,11 @@ static int process_input_packet(InputStream *ist, const AVPacket *pkt)
ist
->
dec_ctx
->
sample_rate
;
break
;
case
AVMEDIA_TYPE_VIDEO
:
if
(
ist
->
dec_ctx
->
time_bas
e
.
num
!=
0
)
{
if
(
ist
->
dec_ctx
->
framerat
e
.
num
!=
0
)
{
int
ticks
=
ist
->
st
->
parser
?
ist
->
st
->
parser
->
repeat_pict
+
1
:
ist
->
dec_ctx
->
ticks_per_frame
;
ist
->
next_dts
+=
((
int64_t
)
AV_TIME_BASE
*
ist
->
dec_ctx
->
time_base
.
num
*
ticks
)
/
ist
->
dec_ctx
->
time_base
.
den
;
ist
->
dec_ctx
->
framerate
.
den
*
ticks
)
/
ist
->
dec_ctx
->
framerate
.
num
;
}
break
;
}
...
...
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