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
5a69ded1
Commit
5a69ded1
authored
Mar 24, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_showinfo: print display transformation values
parent
27631796
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
vf_showinfo.c
libavfilter/vf_showinfo.c
+5
-0
No files found.
libavfilter/vf_showinfo.c
View file @
5a69ded1
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
#include <inttypes.h>
#include <inttypes.h>
#include "libavutil/adler32.h"
#include "libavutil/adler32.h"
#include "libavutil/display.h"
#include "libavutil/imgutils.h"
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/internal.h"
#include "libavutil/pixdesc.h"
#include "libavutil/pixdesc.h"
...
@@ -117,6 +118,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
...
@@ -117,6 +118,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
case
AV_FRAME_DATA_STEREO3D
:
case
AV_FRAME_DATA_STEREO3D
:
dump_stereo3d
(
ctx
,
sd
);
dump_stereo3d
(
ctx
,
sd
);
break
;
break
;
case
AV_FRAME_DATA_DISPLAYMATRIX
:
av_log
(
ctx
,
AV_LOG_INFO
,
"displaymatrix: rotation of %.2f degrees"
,
av_display_rotation_get
((
int32_t
*
)
sd
->
data
));
break
;
default:
default:
av_log
(
ctx
,
AV_LOG_WARNING
,
"unknown side data type %d (%d bytes)"
,
av_log
(
ctx
,
AV_LOG_WARNING
,
"unknown side data type %d (%d bytes)"
,
sd
->
type
,
sd
->
size
);
sd
->
type
,
sd
->
size
);
...
...
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