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
567feaaf
Commit
567feaaf
authored
Apr 11, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/bbox: remove unused variables and functions
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
580a0600
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
vf_bbox.c
libavfilter/vf_bbox.c
+0
-10
No files found.
libavfilter/vf_bbox.c
View file @
567feaaf
...
...
@@ -31,16 +31,8 @@
typedef
struct
{
unsigned
int
frame
;
int
vsub
,
hsub
;
}
BBoxContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
BBoxContext
*
bbox
=
ctx
->
priv
;
bbox
->
frame
=
0
;
return
0
;
}
static
int
query_formats
(
AVFilterContext
*
ctx
)
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
...
...
@@ -92,7 +84,6 @@ static const AVFilterPad bbox_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
@@ -111,7 +102,6 @@ AVFilter avfilter_vf_bbox = {
.
description
=
NULL_IF_CONFIG_SMALL
(
"Compute bounding box for each frame."
),
.
priv_size
=
sizeof
(
BBoxContext
),
.
query_formats
=
query_formats
,
.
init
=
init
,
.
inputs
=
bbox_inputs
,
.
outputs
=
bbox_outputs
,
};
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