diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-14 18:39:08 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-17 18:26:39 +0200 |
commit | 368f368e593f60da32ec43a40e262e943e781b3d (patch) | |
tree | 4aa5bb4a3f0530ee31bdf928b0f069ef0d141cd3 | |
parent | 44aeb06290bd5b8eeeb896e0dbaffc83630af217 (diff) | |
download | ffmpeg-368f368e593f60da32ec43a40e262e943e781b3d.tar.gz |
af_channelmap: require AV_PERM_PRESERVE.
-rw-r--r-- | libavfilter/af_astreamsync.c | 4 |
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[]) { |