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
96e4b00d
Commit
96e4b00d
authored
Mar 10, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: remove remaining forgotten min/rej perms.
parent
806a66fd
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
3 additions
and
21 deletions
+3
-21
af_apad.c
libavfilter/af_apad.c
+0
-1
af_channelmap.c
libavfilter/af_channelmap.c
+2
-2
f_select.c
libavfilter/f_select.c
+0
-1
sink_buffer.c
libavfilter/sink_buffer.c
+0
-4
split.c
libavfilter/split.c
+0
-1
vf_alphamerge.c
libavfilter/vf_alphamerge.c
+1
-2
vf_bbox.c
libavfilter/vf_bbox.c
+0
-1
vf_deshake.c
libavfilter/vf_deshake.c
+0
-1
vf_fps.c
libavfilter/vf_fps.c
+0
-2
vf_idet.c
libavfilter/vf_idet.c
+0
-2
vf_noise.c
libavfilter/vf_noise.c
+0
-1
vf_overlay.c
libavfilter/vf_overlay.c
+0
-1
vf_smartblur.c
libavfilter/vf_smartblur.c
+0
-1
vf_yadif.c
libavfilter/vf_yadif.c
+0
-1
No files found.
libavfilter/af_apad.c
View file @
96e4b00d
...
...
@@ -139,7 +139,6 @@ static const AVFilterPad apad_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
,
},
{
NULL
},
};
...
...
libavfilter/af_channelmap.c
View file @
96e4b00d
...
...
@@ -388,9 +388,9 @@ static const AVFilterPad avfilter_af_channelmap_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_WRITE
,
.
filter_frame
=
channelmap_filter_frame
,
.
config_props
=
channelmap_config_input
.
config_props
=
channelmap_config_input
,
.
needs_writable
=
1
,
},
{
NULL
}
};
...
...
libavfilter/f_select.c
View file @
96e4b00d
...
...
@@ -480,7 +480,6 @@ static const AVFilterPad avfilter_vf_select_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
min_perms
=
AV_PERM_PRESERVE
,
.
config_props
=
config_input
,
.
filter_frame
=
filter_frame
,
},
...
...
libavfilter/sink_buffer.c
View file @
96e4b00d
...
...
@@ -331,7 +331,6 @@ static const AVFilterPad ffbuffersink_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_PRESERVE
,
},
{
NULL
},
};
...
...
@@ -353,7 +352,6 @@ static const AVFilterPad buffersink_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_PRESERVE
,
},
{
NULL
},
};
...
...
@@ -467,7 +465,6 @@ static const AVFilterPad ffabuffersink_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_PRESERVE
,
},
{
NULL
},
};
...
...
@@ -488,7 +485,6 @@ static const AVFilterPad abuffersink_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_PRESERVE
,
},
{
NULL
},
};
...
...
libavfilter/split.c
View file @
96e4b00d
...
...
@@ -52,7 +52,6 @@ static int split_init(AVFilterContext *ctx, const char *args)
snprintf
(
name
,
sizeof
(
name
),
"output%d"
,
i
);
pad
.
type
=
ctx
->
filter
->
inputs
[
0
].
type
;
pad
.
name
=
av_strdup
(
name
);
pad
.
rej_perms
=
AV_PERM_WRITE
;
ff_insert_outpad
(
ctx
,
i
,
&
pad
);
}
...
...
libavfilter/vf_alphamerge.c
View file @
96e4b00d
...
...
@@ -176,12 +176,11 @@ static const AVFilterPad alphamerge_inputs[] = {
.
config_props
=
config_input_main
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_WRITE
|
AV_PERM_PRESERVE
,
.
needs_writable
=
1
,
},{
.
name
=
"alpha"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_PRESERVE
,
},
{
NULL
}
};
...
...
libavfilter/vf_bbox.c
View file @
96e4b00d
...
...
@@ -94,7 +94,6 @@ static const AVFilterPad bbox_inputs[] = {
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_READ
,
},
{
NULL
}
};
...
...
libavfilter/vf_deshake.c
View file @
96e4b00d
...
...
@@ -560,7 +560,6 @@ static const AVFilterPad deshake_inputs[] = {
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
config_props
=
config_props
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_PRESERVE
,
},
{
NULL
}
};
...
...
libavfilter/vf_fps.c
View file @
96e4b00d
...
...
@@ -273,7 +273,6 @@ static const AVFilterPad avfilter_vf_fps_inputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
min_perms
=
AV_PERM_READ
|
AV_PERM_PRESERVE
,
.
filter_frame
=
filter_frame
,
},
{
NULL
}
...
...
@@ -283,7 +282,6 @@ static const AVFilterPad avfilter_vf_fps_outputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
rej_perms
=
AV_PERM_WRITE
,
.
request_frame
=
request_frame
,
.
config_props
=
config_props
},
...
...
libavfilter/vf_idet.c
View file @
96e4b00d
...
...
@@ -299,7 +299,6 @@ static const AVFilterPad idet_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_PRESERVE
,
},
{
NULL
}
};
...
...
@@ -308,7 +307,6 @@ static const AVFilterPad idet_outputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
rej_perms
=
AV_PERM_WRITE
,
.
request_frame
=
request_frame
,
},
{
NULL
}
...
...
libavfilter/vf_noise.c
View file @
96e4b00d
...
...
@@ -343,7 +343,6 @@ static const AVFilterPad noise_inputs[] = {
.
get_video_buffer
=
ff_null_get_video_buffer
,
.
filter_frame
=
filter_frame
,
.
config_props
=
config_input
,
.
min_perms
=
AV_PERM_READ
,
},
{
NULL
}
};
...
...
libavfilter/vf_overlay.c
View file @
96e4b00d
...
...
@@ -654,7 +654,6 @@ static const AVFilterPad avfilter_vf_overlay_outputs[] = {
{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
rej_perms
=
AV_PERM_WRITE
,
.
config_props
=
config_output
,
.
request_frame
=
request_frame
,
},
...
...
libavfilter/vf_smartblur.c
View file @
96e4b00d
...
...
@@ -287,7 +287,6 @@ static const AVFilterPad smartblur_inputs[] = {
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
config_props
=
config_props
,
.
min_perms
=
AV_PERM_READ
,
},
{
NULL
}
};
...
...
libavfilter/vf_yadif.c
View file @
96e4b00d
...
...
@@ -479,7 +479,6 @@ static const AVFilterPad avfilter_vf_yadif_inputs[] = {
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
min_perms
=
AV_PERM_PRESERVE
,
},
{
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