mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-03 14:32:16 +02:00
libx265: Support SAR
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
parent
d102925a6d
commit
73ee4cf307
@ -77,6 +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;
|
||||||
uint8_t *buf;
|
uint8_t *buf;
|
||||||
|
int sar_num, sar_den;
|
||||||
int nnal;
|
int nnal;
|
||||||
int ret;
|
int ret;
|
||||||
int i;
|
int i;
|
||||||
@ -113,6 +114,15 @@ 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;
|
||||||
|
|
||||||
|
av_reduce(&sar_num, &sar_den,
|
||||||
|
avctx->sample_aspect_ratio.num,
|
||||||
|
avctx->sample_aspect_ratio.den, 4096);
|
||||||
|
ctx->params->bEnableVuiParametersPresentFlag = 1;
|
||||||
|
ctx->params->bEnableAspectRatioIdc = 1;
|
||||||
|
ctx->params->aspectRatioIdc = 255;
|
||||||
|
ctx->params->sarWidth = sar_num;
|
||||||
|
ctx->params->sarHeight = sar_den;
|
||||||
|
|
||||||
if (x265_max_bit_depth == 8)
|
if (x265_max_bit_depth == 8)
|
||||||
ctx->params->internalBitDepth = 8;
|
ctx->params->internalBitDepth = 8;
|
||||||
else if (x265_max_bit_depth == 12)
|
else if (x265_max_bit_depth == 12)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user