Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-10-12 17:09:08 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-10-16 00:13:02 +0400
commitf2dd45d06c606c41bcbf227ffc47e1ac0ce37d65 (patch)
tree530cfd308b2317e22371b4f488eee3040ed3a5a1 /libavcodec
parentaf980aa4f68e49695c25c6a7cdaa175ec8cba2f3 (diff)
lavc/hevc: mark decoder as experimental
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/hevc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 0b784b593f..d59b4e48fe 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -3114,5 +3114,5 @@ AVCodec ff_hevc_decoder = {
.flush = hevc_decode_flush,
.update_thread_context = hevc_update_thread_context,
.init_thread_copy = hevc_init_thread_copy,
- .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_FRAME_THREADS,
+ .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_FRAME_THREADS | CODEC_CAP_EXPERIMENTAL,
};