diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-10 02:32:35 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-03-10 02:38:21 +0100 |
commit | 96e4b00d62ac12bf16f40d00c1b36670503231a5 (patch) | |
tree | 16353d65048173fc243cd20f726eaf7b898b6178 /libavfilter/sink_buffer.c | |
parent | 806a66fd08a395486e763fb10588c5fd02e8d54e (diff) | |
download | ffmpeg-96e4b00d62ac12bf16f40d00c1b36670503231a5.tar.gz |
lavfi: remove remaining forgotten min/rej perms.
Diffstat (limited to 'libavfilter/sink_buffer.c')
-rw-r--r-- | libavfilter/sink_buffer.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavfilter/sink_buffer.c b/libavfilter/sink_buffer.c index 07e4d04e45..8db3aa1769 100644 --- a/libavfilter/sink_buffer.c +++ b/libavfilter/sink_buffer.c @@ -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 }, }; |