mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 01:02:33 +00:00
libx265: Use 16-bit SAR
The spec says it is 16 bits. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
parent
4a2226451e
commit
cd0ac6f6e5
@ -77,7 +77,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
|
|||||||
{
|
{
|
||||||
libx265Context *ctx = avctx->priv_data;
|
libx265Context *ctx = avctx->priv_data;
|
||||||
x265_nal *nal;
|
x265_nal *nal;
|
||||||
char sar[10];
|
char sar[12];
|
||||||
int sar_num, sar_den;
|
int sar_num, sar_den;
|
||||||
int nnal;
|
int nnal;
|
||||||
|
|
||||||
@ -115,7 +115,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
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, 4096);
|
avctx->sample_aspect_ratio.den, 65535);
|
||||||
snprintf(sar, sizeof(sar), "%d:%d", sar_num, sar_den);
|
snprintf(sar, sizeof(sar), "%d:%d", sar_num, sar_den);
|
||||||
if (x265_param_parse(ctx->params, "sar", sar) == X265_PARAM_BAD_VALUE) {
|
if (x265_param_parse(ctx->params, "sar", sar) == X265_PARAM_BAD_VALUE) {
|
||||||
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);
|
||||||
|
Loading…
Reference in New Issue
Block a user