summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-08-14 18:39:08 +0200
committerNicolas George <nicolas.george@normalesup.org>2012-08-17 18:26:39 +0200
commit368f368e593f60da32ec43a40e262e943e781b3d (patch)
tree4aa5bb4a3f0530ee31bdf928b0f069ef0d141cd3 /libavfilter
parent44aeb06290bd5b8eeeb896e0dbaffc83630af217 (diff)
af_channelmap: require AV_PERM_PRESERVE.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/af_astreamsync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/af_astreamsync.c b/libavfilter/af_astreamsync.c
index 3c5b77e0ab..97686472a9 100644
--- a/libavfilter/af_astreamsync.c
+++ b/libavfilter/af_astreamsync.c
@@ -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[]) {