diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-14 18:44:38 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-17 18:26:41 +0200 |
commit | 738fab17ead04b7d8fc34359747a0ea3989afdfa (patch) | |
tree | 2a42b4d05c942cf31f54b0162dcc3b69e9bb4f05 /libavfilter/vf_fieldorder.c | |
parent | 3c0cc3ae67661bc047a33c41a04f1cf0d2acc2bb (diff) | |
download | ffmpeg-738fab17ead04b7d8fc34359747a0ea3989afdfa.tar.gz |
vf_fieldorder: fix permissions.
Diffstat (limited to 'libavfilter/vf_fieldorder.c')
-rw-r--r-- | libavfilter/vf_fieldorder.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c index e012b29def..8026580827 100644 --- a/libavfilter/vf_fieldorder.c +++ b/libavfilter/vf_fieldorder.c @@ -247,8 +247,7 @@ AVFilter avfilter_vf_fieldorder = { .get_video_buffer = get_video_buffer, .draw_slice = draw_slice, .end_frame = end_frame, - .min_perms = AV_PERM_READ, - .rej_perms = AV_PERM_REUSE2|AV_PERM_PRESERVE,}, + .min_perms = AV_PERM_READ | AV_PERM_PRESERVE }, { .name = NULL}}, .outputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, }, |