diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-14 18:42:36 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-17 18:26:40 +0200 |
commit | 0238806f64d60d8d898b1fc3d76ffbf48a3fc43a (patch) | |
tree | 11207046769e4eac037053c7cbaada208563a5dc /libavfilter | |
parent | 84923555bb975137a8dc8b2458a7ab0284697e59 (diff) | |
download | ffmpeg-0238806f64d60d8d898b1fc3d76ffbf48a3fc43a.tar.gz |
vf_drawtext: fix permissions.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_drawbox.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/vf_drawbox.c b/libavfilter/vf_drawbox.c index 2e02be4756..3067f21cff 100644 --- a/libavfilter/vf_drawbox.c +++ b/libavfilter/vf_drawbox.c @@ -138,8 +138,7 @@ AVFilter avfilter_vf_drawbox = { .start_frame = ff_null_start_frame, .draw_slice = draw_slice, .end_frame = ff_null_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, }, |