avcodec/dolby_e: add AV_CODEC_CAP_CHANNEL_CONF capability

This commit is contained in:
foo86 2017-07-22 17:18:47 +03:00
parent 56277f6d19
commit 0689cc2475

View File

@ -701,7 +701,7 @@ AVCodec ff_dolby_e_decoder = {
.decode = dolby_e_decode_frame,
.close = dolby_e_close,
.flush = dolby_e_flush,
.capabilities = AV_CODEC_CAP_DR1,
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_NONE },
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};