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
976e3439
Commit
976e3439
authored
Apr 11, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/flite: switch to AVOption-based system
parent
160ed967
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
13 deletions
+1
-13
filters.texi
doc/filters.texi
+1
-4
asrc_flite.c
libavfilter/asrc_flite.c
+0
-8
avfilter.c
libavfilter/avfilter.c
+0
-1
No files found.
doc/filters.texi
View file @
976e3439
...
...
@@ -1664,10 +1664,7 @@ To enable compilation of this filter you need to configure FFmpeg with
Note that the flite library is not thread-safe.
The source accepts parameters as a list of @var{key}=@var{value} pairs,
separated by ":".
The description of the accepted parameters follows.
The filter accepts the following options:
@table @option
...
...
libavfilter/asrc_flite.c
View file @
976e3439
...
...
@@ -136,12 +136,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
FliteContext
*
flite
=
ctx
->
priv
;
int
ret
=
0
;
flite
->
class
=
&
flite_class
;
av_opt_set_defaults
(
flite
);
if
((
ret
=
av_set_options_string
(
flite
,
args
,
"="
,
":"
))
<
0
)
return
ret
;
if
(
flite
->
list_voices
)
{
list_voices
(
ctx
,
"
\n
"
);
return
AVERROR_EXIT
;
...
...
@@ -200,8 +194,6 @@ static av_cold void uninit(AVFilterContext *ctx)
{
FliteContext
*
flite
=
ctx
->
priv
;
av_opt_free
(
flite
);
if
(
!--
flite
->
voice_entry
->
usage_count
)
flite
->
voice_entry
->
unregister_fn
(
flite
->
voice
);
flite
->
voice
=
NULL
;
...
...
libavfilter/avfilter.c
View file @
976e3439
...
...
@@ -678,7 +678,6 @@ static const char *const filters_left_to_update[] = {
"aconvert"
,
"atempo"
,
"buffer"
,
"flite"
,
"mp"
,
"pan"
,
"scale"
,
...
...
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