diff options
author | Martin Storsjö <martin@martin.st> | 2011-12-16 16:10:02 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-12-21 22:52:44 +0200 |
commit | ce94948198f3d22fd1ed53b99ee31e0a3f791f87 (patch) | |
tree | 9b958ada0270defefd675870a97f8135b3f87555 | |
parent | f13db94d0aadc4f27aea715383a18df461ed9b5d (diff) | |
download | ffmpeg-ce94948198f3d22fd1ed53b99ee31e0a3f791f87.tar.gz |
nellymoserdec: Indicate that the decoder can handle changed parameters
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/nellymoserdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 7723c5827b..af286fbf87 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -221,7 +221,7 @@ AVCodec ff_nellymoser_decoder = { .init = decode_init, .close = decode_end, .decode = decode_tag, - .capabilities = CODEC_CAP_DR1, + .capabilities = CODEC_CAP_DR1 | CODEC_CAP_PARAM_CHANGE, .long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"), .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, |