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
a0b7853f
Commit
a0b7853f
authored
Oct 27, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_showinfo: print checksums in hexadecimal.
parent
c643ba81
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
9 deletions
+10
-9
filters.texi
doc/filters.texi
+7
-6
af_ashowinfo.c
libavfilter/af_ashowinfo.c
+1
-1
avfilter.h
libavfilter/avfilter.h
+1
-1
vf_showinfo.c
libavfilter/vf_showinfo.c
+1
-1
No files found.
doc/filters.texi
View file @
a0b7853f
...
...
@@ -216,11 +216,12 @@ sample rate for the audio frame
if the packing format is planar, 0 if packed
@item checksum
Adler-32 checksum of all the planes of the input frame
Adler-32 checksum
(printed in hexadecimal)
of all the planes of the input frame
@item plane_checksum
Adler-32 checksum for each input frame plane, expressed in the form
"[@var{c0} @var{c1} @var{c2} @var{c3} @var{c4} @var{c5} @var{c6} @var{c7}]"
Adler-32 checksum (printed in hexadecimal) for each input frame plane,
expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3} @var{c4} @var{c5}
@var{c6} @var{c7}]"
@end table
@c man end AUDIO FILTERS
...
...
@@ -2187,11 +2188,11 @@ the @code{av_get_picture_type_char} function defined in
@file{libavutil/avutil.h}.
@item checksum
Adler-32 checksum of all the planes of the input frame
Adler-32 checksum
(printed in hexadecimal)
of all the planes of the input frame
@item plane_checksum
Adler-32 checksum
of each plane of the input frame, expressed in the form
"[@var{c0} @var{c1} @var{c2} @var{c3}]"
Adler-32 checksum
(printed in hexadecimal) of each plane of the input frame,
expressed in the form
"[@var{c0} @var{c1} @var{c2} @var{c3}]"
@end table
@section slicify
...
...
libavfilter/af_ashowinfo.c
View file @
a0b7853f
...
...
@@ -65,7 +65,7 @@ static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *samplesref)
av_log
(
ctx
,
AV_LOG_INFO
,
"n:%d pts:%"
PRId64
" pts_time:%f pos:%"
PRId64
" "
"fmt:%s chlayout:%s nb_samples:%d rate:%d planar:%d "
"checksum:%
u plane_checksum[%u %u %u %u %u %u %u %u
]
\n
"
,
"checksum:%
08X plane_checksum[%08X %08X %08X %08X %08X %08X %08X %08X
]
\n
"
,
showinfo
->
frame
,
samplesref
->
pts
,
samplesref
->
pts
*
av_q2d
(
inlink
->
time_base
),
samplesref
->
pos
,
...
...
libavfilter/avfilter.h
View file @
a0b7853f
...
...
@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MINOR 45
#define LIBAVFILTER_VERSION_MICRO
0
#define LIBAVFILTER_VERSION_MICRO
1
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
libavfilter/vf_showinfo.c
View file @
a0b7853f
...
...
@@ -61,7 +61,7 @@ static void end_frame(AVFilterLink *inlink)
av_log
(
ctx
,
AV_LOG_INFO
,
"n:%d pts:%"
PRId64
" pts_time:%f pos:%"
PRId64
" "
"fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
"checksum:%
u plane_checksum:[%u %u %u %u
]
\n
"
,
"checksum:%
08X plane_checksum:[%08X %08X %08X %08X
]
\n
"
,
showinfo
->
frame
,
picref
->
pts
,
picref
->
pts
*
av_q2d
(
inlink
->
time_base
),
picref
->
pos
,
av_pix_fmt_descriptors
[
picref
->
format
].
name
,
...
...
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