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
883ce264
Commit
883ce264
authored
Mar 15, 2017
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_showinfo: Display spherical properties
parent
3f128fc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
vf_showinfo.c
libavfilter/vf_showinfo.c
+41
-0
No files found.
libavfilter/vf_showinfo.c
View file @
883ce264
...
...
@@ -29,6 +29,7 @@
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/pixdesc.h"
#include "libavutil/spherical.h"
#include "libavutil/stereo3d.h"
#include "avfilter.h"
...
...
@@ -39,6 +40,43 @@ typedef struct ShowInfoContext {
unsigned
int
frame
;
}
ShowInfoContext
;
static
void
dump_spherical
(
AVFilterContext
*
ctx
,
AVFrame
*
frame
,
AVFrameSideData
*
sd
)
{
AVSphericalMapping
*
spherical
=
(
AVSphericalMapping
*
)
sd
->
data
;
double
yaw
,
pitch
,
roll
;
av_log
(
ctx
,
AV_LOG_INFO
,
"spherical information: "
);
if
(
sd
->
size
<
sizeof
(
*
spherical
))
{
av_log
(
ctx
,
AV_LOG_INFO
,
"invalid data"
);
return
;
}
if
(
spherical
->
projection
==
AV_SPHERICAL_EQUIRECTANGULAR
)
av_log
(
ctx
,
AV_LOG_INFO
,
"equirectangular "
);
else
if
(
spherical
->
projection
==
AV_SPHERICAL_CUBEMAP
)
av_log
(
ctx
,
AV_LOG_INFO
,
"cubemap "
);
else
if
(
spherical
->
projection
==
AV_SPHERICAL_EQUIRECTANGULAR_TILE
)
av_log
(
ctx
,
AV_LOG_INFO
,
"tiled equirectangular "
);
else
{
av_log
(
ctx
,
AV_LOG_WARNING
,
"unknown"
);
return
;
}
yaw
=
((
double
)
spherical
->
yaw
)
/
(
1
<<
16
);
pitch
=
((
double
)
spherical
->
pitch
)
/
(
1
<<
16
);
roll
=
((
double
)
spherical
->
roll
)
/
(
1
<<
16
);
av_log
(
ctx
,
AV_LOG_INFO
,
"(%f/%f/%f) "
,
yaw
,
pitch
,
roll
);
if
(
spherical
->
projection
==
AV_SPHERICAL_EQUIRECTANGULAR_TILE
)
{
size_t
l
,
t
,
r
,
b
;
av_spherical_tile_bounds
(
spherical
,
frame
->
width
,
frame
->
height
,
&
l
,
&
t
,
&
r
,
&
b
);
av_log
(
ctx
,
AV_LOG_INFO
,
"[%zu, %zu, %zu, %zu] "
,
l
,
t
,
r
,
b
);
}
else
if
(
spherical
->
projection
==
AV_SPHERICAL_CUBEMAP
)
{
av_log
(
ctx
,
AV_LOG_INFO
,
"[pad %"
PRIu32
"] "
,
spherical
->
padding
);
}
}
static
void
dump_stereo3d
(
AVFilterContext
*
ctx
,
AVFrameSideData
*
sd
)
{
AVStereo3D
*
stereo
;
...
...
@@ -105,6 +143,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
case
AV_FRAME_DATA_A53_CC
:
av_log
(
ctx
,
AV_LOG_INFO
,
"A/53 closed captions (%d bytes)"
,
sd
->
size
);
break
;
case
AV_FRAME_DATA_SPHERICAL
:
dump_spherical
(
ctx
,
frame
,
sd
);
break
;
case
AV_FRAME_DATA_STEREO3D
:
dump_stereo3d
(
ctx
,
sd
);
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