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
b077d8d9
Commit
b077d8d9
authored
Sep 07, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: remove redundant .get_(audio/video)_buffer initializations
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
5a16a1d5
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
0 additions
and
39 deletions
+0
-39
af_ashowinfo.c
libavfilter/af_ashowinfo.c
+0
-1
af_silencedetect.c
libavfilter/af_silencedetect.c
+0
-1
af_volumedetect.c
libavfilter/af_volumedetect.c
+0
-1
f_ebur128.c
libavfilter/f_ebur128.c
+0
-1
f_select.c
libavfilter/f_select.c
+0
-2
f_sendcmd.c
libavfilter/f_sendcmd.c
+0
-2
f_settb.c
libavfilter/f_settb.c
+0
-2
f_zmq.c
libavfilter/f_zmq.c
+0
-1
fifo.c
libavfilter/fifo.c
+0
-2
setpts.c
libavfilter/setpts.c
+0
-2
split.c
libavfilter/split.c
+0
-2
vf_alphamerge.c
libavfilter/vf_alphamerge.c
+0
-1
vf_aspect.c
libavfilter/vf_aspect.c
+0
-2
vf_blackdetect.c
libavfilter/vf_blackdetect.c
+0
-1
vf_blackframe.c
libavfilter/vf_blackframe.c
+0
-1
vf_copy.c
libavfilter/vf_copy.c
+0
-1
vf_crop.c
libavfilter/vf_crop.c
+0
-1
vf_cropdetect.c
libavfilter/vf_cropdetect.c
+0
-1
vf_delogo.c
libavfilter/vf_delogo.c
+0
-1
vf_drawbox.c
libavfilter/vf_drawbox.c
+0
-1
vf_drawtext.c
libavfilter/vf_drawtext.c
+0
-1
vf_fade.c
libavfilter/vf_fade.c
+0
-1
vf_field.c
libavfilter/vf_field.c
+0
-1
vf_format.c
libavfilter/vf_format.c
+0
-2
vf_il.c
libavfilter/vf_il.c
+0
-1
vf_mpdecimate.c
libavfilter/vf_mpdecimate.c
+0
-1
vf_overlay.c
libavfilter/vf_overlay.c
+0
-1
vf_removelogo.c
libavfilter/vf_removelogo.c
+0
-1
vf_setfield.c
libavfilter/vf_setfield.c
+0
-1
vf_showinfo.c
libavfilter/vf_showinfo.c
+0
-1
vf_thumbnail.c
libavfilter/vf_thumbnail.c
+0
-1
No files found.
libavfilter/af_ashowinfo.c
View file @
b077d8d9
...
...
@@ -103,7 +103,6 @@ static const AVFilterPad inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
},
...
...
libavfilter/af_silencedetect.c
View file @
b077d8d9
...
...
@@ -141,7 +141,6 @@ static const AVFilterPad silencedetect_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/af_volumedetect.c
View file @
b077d8d9
...
...
@@ -135,7 +135,6 @@ static const AVFilterPad volumedetect_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/f_ebur128.c
View file @
b077d8d9
...
...
@@ -779,7 +779,6 @@ static const AVFilterPad ebur128_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
.
config_props
=
config_audio_input
,
},
...
...
libavfilter/f_select.c
View file @
b077d8d9
...
...
@@ -470,7 +470,6 @@ static const AVFilterPad avfilter_af_aselect_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
config_props
=
config_input
,
.
filter_frame
=
filter_frame
,
},
...
...
@@ -514,7 +513,6 @@ static const AVFilterPad avfilter_vf_select_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
config_props
=
config_input
,
.
filter_frame
=
filter_frame
,
},
...
...
libavfilter/f_sendcmd.c
View file @
b077d8d9
...
...
@@ -514,7 +514,6 @@ static const AVFilterPad sendcmd_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
@@ -550,7 +549,6 @@ static const AVFilterPad asendcmd_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/f_settb.c
View file @
b077d8d9
...
...
@@ -129,7 +129,6 @@ static const AVFilterPad avfilter_vf_settb_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
@@ -165,7 +164,6 @@ static const AVFilterPad avfilter_af_asettb_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/f_zmq.c
View file @
b077d8d9
...
...
@@ -248,7 +248,6 @@ static const AVFilterPad azmq_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/fifo.c
View file @
b077d8d9
...
...
@@ -254,7 +254,6 @@ static const AVFilterPad avfilter_vf_fifo_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
add_to_queue
,
},
{
NULL
}
...
...
@@ -286,7 +285,6 @@ static const AVFilterPad avfilter_af_afifo_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
add_to_queue
,
},
{
NULL
}
...
...
libavfilter/setpts.c
View file @
b077d8d9
...
...
@@ -232,7 +232,6 @@ static const AVFilterPad avfilter_vf_setpts_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
config_props
=
config_input
,
.
filter_frame
=
filter_frame
,
},
...
...
@@ -270,7 +269,6 @@ static const AVFilterPad asetpts_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
config_props
=
config_input
,
.
filter_frame
=
filter_frame
,
},
...
...
libavfilter/split.c
View file @
b077d8d9
...
...
@@ -108,7 +108,6 @@ static const AVFilterPad avfilter_vf_split_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
@@ -134,7 +133,6 @@ static const AVFilterPad avfilter_af_asplit_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
get_audio_buffer
=
ff_null_get_audio_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_alphamerge.c
View file @
b077d8d9
...
...
@@ -175,7 +175,6 @@ static const AVFilterPad alphamerge_inputs[] = {
.
name
=
"main"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_input_main
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
needs_writable
=
1
,
},{
...
...
libavfilter/vf_aspect.c
View file @
b077d8d9
...
...
@@ -143,7 +143,6 @@ static const AVFilterPad avfilter_vf_setdar_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
setdar_config_props
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
@@ -208,7 +207,6 @@ static const AVFilterPad avfilter_vf_setsar_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
setsar_config_props
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_blackdetect.c
View file @
b077d8d9
...
...
@@ -179,7 +179,6 @@ static const AVFilterPad blackdetect_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_input
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_blackframe.c
View file @
b077d8d9
...
...
@@ -107,7 +107,6 @@ static const AVFilterPad avfilter_vf_blackframe_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_copy.c
View file @
b077d8d9
...
...
@@ -48,7 +48,6 @@ static const AVFilterPad avfilter_vf_copy_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_crop.c
View file @
b077d8d9
...
...
@@ -318,7 +318,6 @@ static const AVFilterPad avfilter_vf_crop_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
config_props
=
config_input
,
},
{
NULL
}
...
...
libavfilter/vf_cropdetect.c
View file @
b077d8d9
...
...
@@ -226,7 +226,6 @@ static const AVFilterPad avfilter_vf_cropdetect_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_input
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_delogo.c
View file @
b077d8d9
...
...
@@ -264,7 +264,6 @@ static const AVFilterPad avfilter_vf_delogo_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_drawbox.c
View file @
b077d8d9
...
...
@@ -257,7 +257,6 @@ static const AVFilterPad drawbox_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_input
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
needs_writable
=
1
,
},
...
...
libavfilter/vf_drawtext.c
View file @
b077d8d9
...
...
@@ -1041,7 +1041,6 @@ static const AVFilterPad avfilter_vf_drawtext_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
config_props
=
config_input
,
.
needs_writable
=
1
,
...
...
libavfilter/vf_fade.c
View file @
b077d8d9
...
...
@@ -326,7 +326,6 @@ static const AVFilterPad avfilter_vf_fade_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_props
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
needs_writable
=
1
,
},
...
...
libavfilter/vf_field.c
View file @
b077d8d9
...
...
@@ -88,7 +88,6 @@ static const AVFilterPad field_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_format.c
View file @
b077d8d9
...
...
@@ -116,7 +116,6 @@ static const AVFilterPad avfilter_vf_format_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
},
{
NULL
}
};
...
...
@@ -159,7 +158,6 @@ static const AVFilterPad avfilter_vf_noformat_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
},
{
NULL
}
};
...
...
libavfilter/vf_il.c
View file @
b077d8d9
...
...
@@ -186,7 +186,6 @@ static const AVFilterPad inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
config_props
=
config_input
,
},
...
...
libavfilter/vf_mpdecimate.c
View file @
b077d8d9
...
...
@@ -229,7 +229,6 @@ static const AVFilterPad mpdecimate_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
config_props
=
config_input
,
.
filter_frame
=
filter_frame
,
},
...
...
libavfilter/vf_overlay.c
View file @
b077d8d9
...
...
@@ -601,7 +601,6 @@ static const AVFilterPad avfilter_vf_overlay_inputs[] = {
{
.
name
=
"main"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
config_props
=
config_input_main
,
.
filter_frame
=
filter_frame_main
,
.
needs_writable
=
1
,
...
...
libavfilter/vf_removelogo.c
View file @
b077d8d9
...
...
@@ -553,7 +553,6 @@ static const AVFilterPad removelogo_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
config_props
=
config_props_input
,
.
filter_frame
=
filter_frame
,
},
...
...
libavfilter/vf_setfield.c
View file @
b077d8d9
...
...
@@ -71,7 +71,6 @@ static const AVFilterPad setfield_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_showinfo.c
View file @
b077d8d9
...
...
@@ -79,7 +79,6 @@ static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
libavfilter/vf_thumbnail.c
View file @
b077d8d9
...
...
@@ -212,7 +212,6 @@ static const AVFilterPad thumbnail_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_props
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
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