summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorStephen Hutchinson <qyot27@gmail.com>2016-01-26 19:10:01 -0500
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-30 12:29:29 +0100
commit0dd201d947e213887960fe8835586c0b0d73a40e (patch)
treee30c0fa928720521cda7aaeb606fb961cbe3deaf /libavcodec
parente07e88cd82f78644ddcb10d7d3e0dd624fffe274 (diff)
libx265: Remove experimental flag when encoding 4:2:2 and 4:4:4
4:2:2 and 4:4:4 support in the HEVC standard was approved in October 2014 as part of HEVC Version 2 and published in January 2015: http://www.itu.int/ITU-T/recommendations/rec.aspx?rec=12296 http://www.itu.int/rec/T-REC-H.265-201410-S https://hevc.hhi.fraunhofer.de/rext Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/libx265.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
index a1770facb1..4c36f4c3c1 100644
--- a/libavcodec/libx265.c
+++ b/libavcodec/libx265.c
@@ -82,14 +82,6 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
if (!ctx->api)
ctx->api = x265_api_get(0);
- if (avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL &&
- !av_pix_fmt_desc_get(avctx->pix_fmt)->log2_chroma_w) {
- av_log(avctx, AV_LOG_ERROR,
- "4:2:2 and 4:4:4 support is not fully defined for HEVC yet. "
- "Set -strict experimental to encode anyway.\n");
- return AVERROR(ENOSYS);
- }
-
ctx->params = ctx->api->param_alloc();
if (!ctx->params) {
av_log(avctx, AV_LOG_ERROR, "Could not allocate x265 param structure.\n");