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
eeaf19ce
Commit
eeaf19ce
authored
Sep 15, 2015
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_stereo3d: simplify blank calculations and check height
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
040ddd27
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
vf_stereo3d.c
libavfilter/vf_stereo3d.c
+6
-4
No files found.
libavfilter/vf_stereo3d.c
View file @
eeaf19ce
...
...
@@ -445,10 +445,12 @@ static int config_output(AVFilterLink *outlink)
s
->
out
.
row_right
=
s
->
height
;
break
;
case
HDMI
:
if
(
s
->
in
.
height
<=
720
)
s
->
blanks
=
30
;
else
s
->
blanks
=
45
;
if
(
s
->
height
!=
720
&&
s
->
height
!=
1080
)
{
av_log
(
ctx
,
AV_LOG_ERROR
,
"Only 720 and 1080 height supported
\n
"
);
return
AVERROR
(
EINVAL
);
}
s
->
blanks
=
s
->
height
/
24
;
s
->
out
.
height
=
s
->
height
*
2
+
s
->
blanks
;
s
->
out
.
row_right
=
s
->
height
+
s
->
blanks
;
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