Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
61a35dcd
Commit
61a35dcd
authored
Jan 14, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport [18589]
parent
0123bbfc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
modules/codec/ffmpeg/encoder.c
modules/codec/ffmpeg/encoder.c
+7
-7
No files found.
modules/codec/ffmpeg/encoder.c
View file @
61a35dcd
...
...
@@ -836,10 +836,10 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
}
else
{
frame
.
pts
=
AV_NOPTS_VALUE
;
frame
.
pts
=
(
int64_t
)
AV_NOPTS_VALUE
;
}
if
(
frame
.
pts
!=
(
int64_t
)
AV_NOPTS_VALUE
&&
frame
.
pts
!=
0
)
if
(
frame
.
pts
!=
(
int64_t
)
AV_NOPTS_VALUE
&&
frame
.
pts
!=
0
)
{
if
(
p_sys
->
i_last_pts
==
frame
.
pts
)
{
...
...
@@ -891,7 +891,7 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
/* No delay -> output pts == input pts */
p_block
->
i_pts
=
p_block
->
i_dts
=
p_pict
->
date
;
}
else
if
(
p_sys
->
p_context
->
coded_frame
->
pts
!=
(
signed
int
)
AV_NOPTS_VALUE
&&
else
if
(
p_sys
->
p_context
->
coded_frame
->
pts
!=
(
int64_t
)
AV_NOPTS_VALUE
&&
p_sys
->
p_context
->
coded_frame
->
pts
!=
0
&&
p_sys
->
i_buggy_pts_detect
!=
p_sys
->
p_context
->
coded_frame
->
pts
)
{
...
...
@@ -901,11 +901,11 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
/* Ugly work-around for stupid libavcodec behaviour */
#if LIBAVCODEC_BUILD >= 4722
{
int64_t
i_framenum
=
p_block
->
i_pts
*
p_enc
->
fmt_in
.
video
.
i_frame_rate
/
p_enc
->
fmt_in
.
video
.
i_frame_rate_base
/
AV_TIME_BASE
;
int64_t
i_framenum
=
p_block
->
i_pts
*
p_enc
->
fmt_in
.
video
.
i_frame_rate
/
p_enc
->
fmt_in
.
video
.
i_frame_rate_base
/
AV_TIME_BASE
;
p_block
->
i_pts
=
p_sys
->
pi_delay_pts
[
i_framenum
%
MAX_FRAME_DELAY
];
p_block
->
i_pts
=
p_sys
->
pi_delay_pts
[
i_framenum
%
MAX_FRAME_DELAY
];
}
#endif
/* End work-around */
...
...
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