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
9d35fa43
Commit
9d35fa43
authored
Jan 19, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: add missing periods in descriptions.
parent
dcea7ca7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
af_pan.c
libavfilter/af_pan.c
+1
-1
vf_fade.c
libavfilter/vf_fade.c
+1
-1
vf_yadif.c
libavfilter/vf_yadif.c
+1
-1
vsrc_color.c
libavfilter/vsrc_color.c
+1
-1
vsrc_mandelbrot.c
libavfilter/vsrc_mandelbrot.c
+1
-1
No files found.
libavfilter/af_pan.c
View file @
9d35fa43
...
...
@@ -285,7 +285,7 @@ static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
AVFilter
avfilter_af_pan
=
{
.
name
=
"pan"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Remix channels with coefficients (panning)"
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Remix channels with coefficients (panning)
.
"
),
.
priv_size
=
sizeof
(
PanContext
),
.
init
=
init
,
.
query_formats
=
query_formats
,
...
...
libavfilter/vf_fade.c
View file @
9d35fa43
...
...
@@ -278,7 +278,7 @@ static void end_frame(AVFilterLink *inlink)
AVFilter
avfilter_vf_fade
=
{
.
name
=
"fade"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Fade in/out input video"
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Fade in/out input video
.
"
),
.
init
=
init
,
.
uninit
=
uninit
,
.
priv_size
=
sizeof
(
FadeContext
),
...
...
libavfilter/vf_yadif.c
View file @
9d35fa43
...
...
@@ -396,7 +396,7 @@ static void null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir) { }
AVFilter
avfilter_vf_yadif
=
{
.
name
=
"yadif"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Deinterlace the input image"
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Deinterlace the input image
.
"
),
.
priv_size
=
sizeof
(
YADIFContext
),
.
init
=
init
,
...
...
libavfilter/vsrc_color.c
View file @
9d35fa43
...
...
@@ -156,7 +156,7 @@ static int color_request_frame(AVFilterLink *link)
AVFilter
avfilter_vsrc_color
=
{
.
name
=
"color"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Provide an uniformly colored input, syntax is: [color[:size[:rate]]]"
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Provide an uniformly colored input, syntax is: [color[:size[:rate]]]
.
"
),
.
priv_size
=
sizeof
(
ColorContext
),
.
init
=
color_init
,
...
...
libavfilter/vsrc_mandelbrot.c
View file @
9d35fa43
...
...
@@ -411,7 +411,7 @@ static int request_frame(AVFilterLink *link)
AVFilter
avfilter_vsrc_mandelbrot
=
{
.
name
=
"mandelbrot"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Mandelbrot fractal renderer"
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Mandelbrot fractal renderer
.
"
),
.
priv_size
=
sizeof
(
MBContext
),
.
init
=
init
,
...
...
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