mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-04 05:57:49 +02:00
libx265: Only set the SAR if it is valid
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
parent
cd0ac6f6e5
commit
25fbfeed98
@ -113,6 +113,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
|
|||||||
ctx->params->sourceWidth = avctx->width;
|
ctx->params->sourceWidth = avctx->width;
|
||||||
ctx->params->sourceHeight = avctx->height;
|
ctx->params->sourceHeight = avctx->height;
|
||||||
|
|
||||||
|
if (avctx->sample_aspect_ratio.num > 0 && avctx->sample_aspect_ratio.den > 0) {
|
||||||
av_reduce(&sar_num, &sar_den,
|
av_reduce(&sar_num, &sar_den,
|
||||||
avctx->sample_aspect_ratio.num,
|
avctx->sample_aspect_ratio.num,
|
||||||
avctx->sample_aspect_ratio.den, 65535);
|
avctx->sample_aspect_ratio.den, 65535);
|
||||||
@ -121,6 +122,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
|
|||||||
av_log(avctx, AV_LOG_ERROR, "Invalid SAR: %d:%d.\n", sar_num, sar_den);
|
av_log(avctx, AV_LOG_ERROR, "Invalid SAR: %d:%d.\n", sar_num, sar_den);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (x265_max_bit_depth == 8)
|
if (x265_max_bit_depth == 8)
|
||||||
ctx->params->internalBitDepth = 8;
|
ctx->params->internalBitDepth = 8;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user