libx265: Remove unneeded bit depth check

This is no longer needed since the version bump.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
Derek Buitenhuis 2014-06-11 21:20:43 +01:00
parent 6ee95af8a1
commit 7ed89addb7
1 changed files with 0 additions and 5 deletions

View File

@ -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: