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
59d72f8b
Commit
59d72f8b
authored
Sep 19, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/pad,crop,scale: remove options description from filter description
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
8ac0eb2c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
vf_crop.c
libavfilter/vf_crop.c
+1
-1
vf_pad.c
libavfilter/vf_pad.c
+1
-1
vf_scale.c
libavfilter/vf_scale.c
+1
-1
No files found.
libavfilter/vf_crop.c
View file @
59d72f8b
...
@@ -334,7 +334,7 @@ static const AVFilterPad avfilter_vf_crop_outputs[] = {
...
@@ -334,7 +334,7 @@ static const AVFilterPad avfilter_vf_crop_outputs[] = {
AVFilter
avfilter_vf_crop
=
{
AVFilter
avfilter_vf_crop
=
{
.
name
=
"crop"
,
.
name
=
"crop"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Crop the input video
to width:height:x:y
."
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Crop the input video."
),
.
priv_size
=
sizeof
(
CropContext
),
.
priv_size
=
sizeof
(
CropContext
),
.
priv_class
=
&
crop_class
,
.
priv_class
=
&
crop_class
,
.
query_formats
=
query_formats
,
.
query_formats
=
query_formats
,
...
...
libavfilter/vf_pad.c
View file @
59d72f8b
...
@@ -394,7 +394,7 @@ static const AVFilterPad avfilter_vf_pad_outputs[] = {
...
@@ -394,7 +394,7 @@ static const AVFilterPad avfilter_vf_pad_outputs[] = {
AVFilter
avfilter_vf_pad
=
{
AVFilter
avfilter_vf_pad
=
{
.
name
=
"pad"
,
.
name
=
"pad"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Pad
input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)
."
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Pad
the input video
."
),
.
priv_size
=
sizeof
(
PadContext
),
.
priv_size
=
sizeof
(
PadContext
),
.
priv_class
=
&
pad_class
,
.
priv_class
=
&
pad_class
,
.
query_formats
=
query_formats
,
.
query_formats
=
query_formats
,
...
...
libavfilter/vf_scale.c
View file @
59d72f8b
...
@@ -569,7 +569,7 @@ static const AVFilterPad avfilter_vf_scale_outputs[] = {
...
@@ -569,7 +569,7 @@ static const AVFilterPad avfilter_vf_scale_outputs[] = {
AVFilter
avfilter_vf_scale
=
{
AVFilter
avfilter_vf_scale
=
{
.
name
=
"scale"
,
.
name
=
"scale"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Scale the input video
to width:height
size and/or convert the image format."
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Scale the input video size and/or convert the image format."
),
.
init_dict
=
init_dict
,
.
init_dict
=
init_dict
,
.
uninit
=
uninit
,
.
uninit
=
uninit
,
.
query_formats
=
query_formats
,
.
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