diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-14 18:42:12 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-17 18:26:40 +0200 |
commit | 84923555bb975137a8dc8b2458a7ab0284697e59 (patch) | |
tree | 6c008c82662deadbf2952aedce04a36dba565fb7 /libavfilter | |
parent | f3133a48e50bf2258498035c0330b22ba7f34653 (diff) | |
download | ffmpeg-84923555bb975137a8dc8b2458a7ab0284697e59.tar.gz |
vf_deshake: fix permissions.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_deshake.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c index d03671c453..ac0a0139c0 100644 --- a/libavfilter/vf_deshake.c +++ b/libavfilter/vf_deshake.c @@ -553,7 +553,7 @@ AVFilter avfilter_vf_deshake = { .draw_slice = draw_slice, .end_frame = end_frame, .config_props = config_props, - .min_perms = AV_PERM_READ, }, + .min_perms = AV_PERM_READ | AV_PERM_PRESERVE, }, { .name = NULL}}, .outputs = (const AVFilterPad[]) {{ .name = "default", |