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
460e7b4f
Commit
460e7b4f
authored
Feb 25, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_cropdetect: switch to an AVOptions-based system.
parent
fba0156a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
10 deletions
+21
-10
filters.texi
doc/filters.texi
+1
-4
vf_cropdetect.c
libavfilter/vf_cropdetect.c
+20
-6
No files found.
doc/filters.texi
View file @
460e7b4f
...
...
@@ -742,10 +742,7 @@ Calculate necessary cropping parameters and prints the recommended
parameters through the logging system. The detected dimensions
correspond to the non-black area of the input video.
It accepts the syntax:
@example
cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
@end example
This filter accepts the following options:
@table @option
...
...
libavfilter/vf_cropdetect.c
View file @
460e7b4f
...
...
@@ -27,12 +27,15 @@
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
typedef
struct
{
const
AVClass
*
class
;
int
x1
,
y1
,
x2
,
y2
;
int
limit
;
int
round
;
...
...
@@ -87,14 +90,8 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
{
CropDetectContext
*
cd
=
ctx
->
priv
;
cd
->
limit
=
24
;
cd
->
round
=
0
;
cd
->
reset_count
=
0
;
cd
->
frame_nb
=
-
2
;
if
(
args
)
sscanf
(
args
,
"%d:%d:%d"
,
&
cd
->
limit
,
&
cd
->
round
,
&
cd
->
reset_count
);
av_log
(
ctx
,
AV_LOG_VERBOSE
,
"limit:%d round:%d reset_count:%d
\n
"
,
cd
->
limit
,
cd
->
round
,
cd
->
reset_count
);
...
...
@@ -196,6 +193,22 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
return
ff_filter_frame
(
inlink
->
dst
->
outputs
[
0
],
frame
);
}
#define OFFSET(x) offsetof(CropDetectContext, x)
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
static
const
AVOption
options
[]
=
{
{
"limit"
,
"Threshold below which the pixel is considered black"
,
OFFSET
(
limit
),
AV_OPT_TYPE_INT
,
{
.
i64
=
24
},
0
,
INT_MAX
,
FLAGS
},
{
"round"
,
"Value by which the width/height should be divisible"
,
OFFSET
(
round
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
INT_MAX
,
FLAGS
},
{
"reset"
,
"Recalculate the crop area after this many frames"
,
OFFSET
(
reset_count
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
INT_MAX
,
FLAGS
},
{
NULL
},
};
static
const
AVClass
cropdetect_class
=
{
.
class_name
=
"cropdetect"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
const
AVFilterPad
avfilter_vf_cropdetect_inputs
[]
=
{
{
.
name
=
"default"
,
...
...
@@ -220,6 +233,7 @@ AVFilter avfilter_vf_cropdetect = {
.
description
=
NULL_IF_CONFIG_SMALL
(
"Auto-detect crop size."
),
.
priv_size
=
sizeof
(
CropDetectContext
),
.
priv_class
=
&
cropdetect_class
,
.
init
=
init
,
.
query_formats
=
query_formats
,
...
...
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