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
ceac5c54
Commit
ceac5c54
authored
Mar 11, 2013
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to the "ff" variant of buffersink.
parent
9a268882
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
filtering_audio.c
doc/examples/filtering_audio.c
+1
-1
filtering_video.c
doc/examples/filtering_video.c
+1
-1
ffmpeg_filter.c
ffmpeg_filter.c
+2
-2
ffplay.c
ffplay.c
+1
-1
lavfi.c
libavdevice/lavfi.c
+2
-2
No files found.
doc/examples/filtering_audio.c
View file @
ceac5c54
...
...
@@ -85,7 +85,7 @@ static int init_filters(const char *filters_descr)
char
args
[
512
];
int
ret
;
AVFilter
*
abuffersrc
=
avfilter_get_by_name
(
"abuffer"
);
AVFilter
*
abuffersink
=
avfilter_get_by_name
(
"
ff
abuffersink"
);
AVFilter
*
abuffersink
=
avfilter_get_by_name
(
"abuffersink"
);
AVFilterInOut
*
outputs
=
avfilter_inout_alloc
();
AVFilterInOut
*
inputs
=
avfilter_inout_alloc
();
const
enum
AVSampleFormat
sample_fmts
[]
=
{
AV_SAMPLE_FMT_S16
,
-
1
};
...
...
doc/examples/filtering_video.c
View file @
ceac5c54
...
...
@@ -85,7 +85,7 @@ static int init_filters(const char *filters_descr)
char
args
[
512
];
int
ret
;
AVFilter
*
buffersrc
=
avfilter_get_by_name
(
"buffer"
);
AVFilter
*
buffersink
=
avfilter_get_by_name
(
"
ff
buffersink"
);
AVFilter
*
buffersink
=
avfilter_get_by_name
(
"buffersink"
);
AVFilterInOut
*
outputs
=
avfilter_inout_alloc
();
AVFilterInOut
*
inputs
=
avfilter_inout_alloc
();
enum
AVPixelFormat
pix_fmts
[]
=
{
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_NONE
};
...
...
ffmpeg_filter.c
View file @
ceac5c54
...
...
@@ -290,7 +290,7 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter,
snprintf
(
name
,
sizeof
(
name
),
"output stream %d:%d"
,
ost
->
file_index
,
ost
->
index
);
ret
=
avfilter_graph_create_filter
(
&
ofilter
->
filter
,
avfilter_get_by_name
(
"
ff
buffersink"
),
avfilter_get_by_name
(
"buffersink"
),
name
,
NULL
,
NULL
,
fg
->
graph
);
av_freep
(
&
buffersink_params
);
...
...
@@ -376,7 +376,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter,
params
->
all_channel_counts
=
1
;
snprintf
(
name
,
sizeof
(
name
),
"output stream %d:%d"
,
ost
->
file_index
,
ost
->
index
);
ret
=
avfilter_graph_create_filter
(
&
ofilter
->
filter
,
avfilter_get_by_name
(
"
ff
abuffersink"
),
avfilter_get_by_name
(
"abuffersink"
),
name
,
NULL
,
params
,
fg
->
graph
);
av_freep
(
&
params
);
if
(
ret
<
0
)
...
...
ffplay.c
View file @
ceac5c54
...
...
@@ -1756,7 +1756,7 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c
buffersink_params
->
pixel_fmts
=
pix_fmts
;
ret
=
avfilter_graph_create_filter
(
&
filt_out
,
avfilter_get_by_name
(
"
ff
buffersink"
),
avfilter_get_by_name
(
"buffersink"
),
"ffplay_buffersink"
,
NULL
,
buffersink_params
,
graph
);
if
(
ret
<
0
)
goto
fail
;
...
...
libavdevice/lavfi.c
View file @
ceac5c54
...
...
@@ -103,8 +103,8 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
avfilter_register_all
();
buffersink
=
avfilter_get_by_name
(
"
ff
buffersink"
);
abuffersink
=
avfilter_get_by_name
(
"
ff
abuffersink"
);
buffersink
=
avfilter_get_by_name
(
"buffersink"
);
abuffersink
=
avfilter_get_by_name
(
"abuffersink"
);
if
(
lavfi
->
graph_filename
&&
lavfi
->
graph_str
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
...
...
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