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
9498ce0c
Commit
9498ce0c
authored
Nov 16, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_framepack: really fix
ef466a8b
parent
9db24ee2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vf_framepack.c
libavfilter/vf_framepack.c
+1
-1
No files found.
libavfilter/vf_framepack.c
View file @
9498ce0c
...
...
@@ -281,7 +281,7 @@ static int try_push_frame(AVFilterContext *ctx)
for
(
i
=
0
;
i
<
2
;
i
++
)
{
// set correct timestamps
if
(
pts
!=
AV_NOPTS_VALUE
)
s
->
input_views
[
i
]
->
pts
=
i
==
0
?
pts
*
2
:
s
->
input_views
[
1
]
->
pts
+
pts
;
s
->
input_views
[
i
]
->
pts
=
i
==
0
?
pts
*
2
:
pts
*
2
+
av_rescale_q
(
1
,
av_inv_q
(
outlink
->
frame_rate
),
outlink
->
time_base
)
;
// set stereo3d side data
stereo
=
av_stereo3d_create_side_data
(
s
->
input_views
[
i
]);
...
...
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