diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-14 18:41:49 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-17 18:26:40 +0200 |
commit | f3133a48e50bf2258498035c0330b22ba7f34653 (patch) | |
tree | ef593f8855f7b37b7cc2f50949f7b68b612a0793 /libavfilter | |
parent | 12ff3faec053e97bf910c69c7e1962a5ce88a221 (diff) | |
download | ffmpeg-f3133a48e50bf2258498035c0330b22ba7f34653.tar.gz |
vf_delogo: fix permissions.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_delogo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_delogo.c index 0c17d54b6a..1ac3d0a89e 100644 --- a/libavfilter/vf_delogo.c +++ b/libavfilter/vf_delogo.c @@ -257,8 +257,7 @@ AVFilter avfilter_vf_delogo = { .start_frame = ff_inplace_start_frame, .draw_slice = null_draw_slice, .end_frame = end_frame, - .min_perms = AV_PERM_WRITE | AV_PERM_READ, - .rej_perms = AV_PERM_PRESERVE }, + .min_perms = AV_PERM_WRITE | AV_PERM_READ }, { .name = NULL}}, .outputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, }, |