summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJérôme Martinez <jerome@mediaarea.net>2018-02-01 13:15:54 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2018-02-03 00:22:47 +0100
commite3d946b3f48fa000e2ba917ecb1bf21e5fe947fb (patch)
tree511ac1bf1d24d31c67bc8609bccafd9f5c8a290e /libavcodec
parent94eb5505ad7b061e17e1c338f04bec0d05e10ca0 (diff)
downloadffmpeg-e3d946b3f48fa000e2ba917ecb1bf21e5fe947fb.tar.gz
avcodec/ffv1enc: mark RGB48 support as non-experimental
Remove the 2nd mark, 1st mark was removed in 58e16a4 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ffv1enc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c
index c0c1558ffe..0778f84c9b 100644
--- a/libavcodec/ffv1enc.c
+++ b/libavcodec/ffv1enc.c
@@ -657,10 +657,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
s->chroma_planes = 1;
if (s->bits_per_raw_sample >= 16) {
s->use32bit = 1;
- if (avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
- av_log(avctx, AV_LOG_ERROR, "16bit RGB is experimental and under development, only use it for experiments\n");
- return AVERROR_INVALIDDATA;
- }
}
s->version = FFMAX(s->version, 1);
break;