summaryrefslogtreecommitdiff
path: root/libavcodec/bitpacked.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2020-02-07 14:17:28 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2020-05-21 09:31:08 +0200
commita629cec58ea6c15305d983d0dbc9d1499a4665b9 (patch)
treeb607370500074b2e3d2f51f10a55637ad5c8218f /libavcodec/bitpacked.c
parentdaa2482871dffa9af12fa6d874a3d2dedd73f42e (diff)
avcodec/bitpacked: Add codec_tags list
This should improve coverage Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/bitpacked.c')
-rw-r--r--libavcodec/bitpacked.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/bitpacked.c b/libavcodec/bitpacked.c
index f0b417d595..be7d1e3629 100644
--- a/libavcodec/bitpacked.c
+++ b/libavcodec/bitpacked.c
@@ -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,
+ },
};