aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/vvc
diff options
context:
space:
mode:
authorKieran Kunhya <kierank@obe.tv>2024-02-07 21:10:08 +0000
committerJames Almer <jamrial@gmail.com>2024-03-13 20:46:10 -0300
commit110d8549d575aae6b2f627cd63e2eb7082ab8926 (patch)
treeef2b13b91102e3e2052526412f986c2c313c4270 /libavcodec/vvc
parentc1cdaef5cef731412fb5955206e435a171f778de (diff)
downloadffmpeg-110d8549d575aae6b2f627cd63e2eb7082ab8926.tar.gz
avcodec/vvcdec: Mark as experimental
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/vvc')
-rw-r--r--libavcodec/vvc/vvcdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vvc/vvcdec.c b/libavcodec/vvc/vvcdec.c
index a979ebd41c..d5704aca25 100644
--- a/libavcodec/vvc/vvcdec.c
+++ b/libavcodec/vvc/vvcdec.c
@@ -1040,7 +1040,8 @@ const FFCodec ff_vvc_decoder = {
.close = vvc_decode_free,
FF_CODEC_DECODE_CB(vvc_decode_frame),
.flush = vvc_decode_flush,
- .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS,
+ .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS |
+ AV_CODEC_CAP_EXPERIMENTAL,
.caps_internal = FF_CODEC_CAP_EXPORTS_CROPPING | FF_CODEC_CAP_INIT_CLEANUP |
FF_CODEC_CAP_AUTO_THREADS,
.p.profiles = NULL_IF_CONFIG_SMALL(ff_vvc_profiles),