avcodec/bitpacked: Add codec_tags list

This should improve coverage

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2020-02-07 14:17:28 +01:00
parent daa2482871
commit a629cec58e

View File

@ -146,4 +146,8 @@ AVCodec ff_bitpacked_decoder = {
.init = bitpacked_init_decoder,
.decode = bitpacked_decode,
.capabilities = AV_CODEC_CAP_EXPERIMENTAL,
.codec_tags = (const uint32_t []){
MKTAG('U', 'Y', 'V', 'Y')
FF_CODEC_TAGS_END,
},
};