summaryrefslogtreecommitdiff
path: root/libavcodec/libx265.c
diff options
context:
space:
mode:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2014-06-11 21:20:43 +0100
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2014-06-12 16:43:31 +0100
commit7ed89addb7f6271d17c2ba21ec11204e37fa9917 (patch)
tree8b85413b1635464b7b65fb9644fdbbabc4d31434 /libavcodec/libx265.c
parent6ee95af8a1181f02e7f3adb9b5d488ba3314e220 (diff)
downloadffmpeg-7ed89addb7f6271d17c2ba21ec11204e37fa9917.tar.gz
libx265: Remove unneeded bit depth check
This is no longer needed since the version bump. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec/libx265.c')
-rw-r--r--libavcodec/libx265.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
index be5aa1ed76..4cf8c85729 100644
--- a/libavcodec/libx265.c
+++ b/libavcodec/libx265.c
@@ -123,11 +123,6 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
}
}
- if (x265_max_bit_depth == 8)
- ctx->params->internalBitDepth = 8;
- else if (x265_max_bit_depth == 12)
- ctx->params->internalBitDepth = 10;
-
switch (avctx->pix_fmt) {
case AV_PIX_FMT_YUV420P:
case AV_PIX_FMT_YUV420P10: