Browse Source

af_channelmap: require AV_PERM_PRESERVE.

tags/n1.0
Nicolas George 12 years ago
parent
commit
368f368e59
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/af_astreamsync.c

+ 2
- 2
libavfilter/af_astreamsync.c View File

@@ -192,11 +192,11 @@ AVFilter avfilter_af_astreamsync = {
{ .name = "in1",
.type = AVMEDIA_TYPE_AUDIO,
.filter_samples = filter_samples,
.min_perms = AV_PERM_READ, },
.min_perms = AV_PERM_READ | AV_PERM_PRESERVE, },
{ .name = "in2",
.type = AVMEDIA_TYPE_AUDIO,
.filter_samples = filter_samples,
.min_perms = AV_PERM_READ, },
.min_perms = AV_PERM_READ | AV_PERM_PRESERVE, },
{ .name = NULL }
},
.outputs = (const AVFilterPad[]) {


Loading…
Cancel
Save