diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-12 15:09:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-15 22:13:02 +0200 |
commit | f2dd45d06c606c41bcbf227ffc47e1ac0ce37d65 (patch) | |
tree | 530cfd308b2317e22371b4f488eee3040ed3a5a1 | |
parent | af980aa4f68e49695c25c6a7cdaa175ec8cba2f3 (diff) | |
download | ffmpeg-f2dd45d06c606c41bcbf227ffc47e1ac0ce37d65.tar.gz |
lavc/hevc: mark decoder as experimental
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/hevc.c | 2 |
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, }; |