Browse Source

vf_fieldorder: require write permissions

This filter modifies the input frame.
tags/n1.1
Anton Khirnov 12 years ago
parent
commit
4c973de9a5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_fieldorder.c

+ 1
- 1
libavfilter/vf_fieldorder.c View File

@@ -184,7 +184,7 @@ static const AVFilterPad avfilter_vf_fieldorder_inputs[] = {
.config_props = config_input,
.get_video_buffer = get_video_buffer,
.filter_frame = filter_frame,
.min_perms = AV_PERM_READ,
.min_perms = AV_PERM_READ | AV_PERM_WRITE,
.rej_perms = AV_PERM_REUSE2 | AV_PERM_PRESERVE,
},
{ NULL }


Loading…
Cancel
Save