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
3f128fc4
Commit
3f128fc4
authored
Mar 15, 2017
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_showinfo: Simplify reporting stereo3d information
parent
5f90ad99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
vf_showinfo.c
libavfilter/vf_showinfo.c
+1
-13
No files found.
libavfilter/vf_showinfo.c
View file @
3f128fc4
...
...
@@ -51,19 +51,7 @@ static void dump_stereo3d(AVFilterContext *ctx, AVFrameSideData *sd)
stereo
=
(
AVStereo3D
*
)
sd
->
data
;
av_log
(
ctx
,
AV_LOG_INFO
,
"type - "
);
switch
(
stereo
->
type
)
{
case
AV_STEREO3D_2D
:
av_log
(
ctx
,
AV_LOG_INFO
,
"2D"
);
break
;
case
AV_STEREO3D_SIDEBYSIDE
:
av_log
(
ctx
,
AV_LOG_INFO
,
"side by side"
);
break
;
case
AV_STEREO3D_TOPBOTTOM
:
av_log
(
ctx
,
AV_LOG_INFO
,
"top and bottom"
);
break
;
case
AV_STEREO3D_FRAMESEQUENCE
:
av_log
(
ctx
,
AV_LOG_INFO
,
"frame alternate"
);
break
;
case
AV_STEREO3D_CHECKERBOARD
:
av_log
(
ctx
,
AV_LOG_INFO
,
"checkerboard"
);
break
;
case
AV_STEREO3D_LINES
:
av_log
(
ctx
,
AV_LOG_INFO
,
"interleaved lines"
);
break
;
case
AV_STEREO3D_COLUMNS
:
av_log
(
ctx
,
AV_LOG_INFO
,
"interleaved columns"
);
break
;
case
AV_STEREO3D_SIDEBYSIDE_QUINCUNX
:
av_log
(
ctx
,
AV_LOG_INFO
,
"side by side "
"(quincunx subsampling)"
);
break
;
default:
av_log
(
ctx
,
AV_LOG_WARNING
,
"unknown"
);
break
;
}
av_log
(
ctx
,
AV_LOG_INFO
,
"type - %s"
,
av_stereo3d_type_name
(
stereo
->
type
));
if
(
stereo
->
flags
&
AV_STEREO3D_FLAG_INVERT
)
av_log
(
ctx
,
AV_LOG_INFO
,
" (inverted)"
);
...
...
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