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
a1e7e02e
Commit
a1e7e02e
authored
Apr 12, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
abuffersink: switch from opaque to AVOptions for params
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f16a6f66
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
lavfi.c
libavdevice/lavfi.c
+3
-4
No files found.
libavdevice/lavfi.c
View file @
a1e7e02e
...
@@ -243,13 +243,12 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
...
@@ -243,13 +243,12 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
AV_SAMPLE_FMT_S32
,
AV_SAMPLE_FMT_S32
,
AV_SAMPLE_FMT_FLT
,
AV_SAMPLE_FMT_FLT
,
AV_SAMPLE_FMT_DBL
,
-
1
};
AV_SAMPLE_FMT_DBL
,
-
1
};
AVABufferSinkParams
*
abuffersink_params
=
av_abuffersink_params_alloc
();
abuffersink_params
->
sample_fmts
=
sample_fmts
;
ret
=
avfilter_graph_create_filter
(
&
sink
,
abuffersink
,
ret
=
avfilter_graph_create_filter
(
&
sink
,
abuffersink
,
inout
->
name
,
NULL
,
inout
->
name
,
NULL
,
abuffersink_params
,
lavfi
->
graph
);
NULL
,
lavfi
->
graph
);
av_free
(
abuffersink_params
);
av_opt_set_int_list
(
sink
,
"sample_fmts"
,
sample_fmts
,
AV_SAMPLE_FMT_NONE
,
AV_OPT_SEARCH_CHILDREN
);
if
(
ret
<
0
)
if
(
ret
<
0
)
goto
end
;
goto
end
;
}
}
...
...
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