Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2014-02-21 21:05:50 +0400
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2014-02-24 20:10:23 +0400
commit73ee4cf3073bd3b98580cd0b31521972746bd2d4 (patch)
treede020a4b68e8677d64c8821088cd5aa488e043ca /libavcodec
parentd102925a6d4ac1c6fb901fe2df052811e5814d60 (diff)
libx265: Support SAR
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/libx265.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
index 27c3fbfec5..cc4e61e23b 100644
--- a/libavcodec/libx265.c
+++ b/libavcodec/libx265.c
@@ -77,6 +77,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
libx265Context *ctx = avctx->priv_data;
x265_nal *nal;
uint8_t *buf;
+ int sar_num, sar_den;
int nnal;
int ret;
int i;
@@ -113,6 +114,15 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
ctx->params->sourceWidth = avctx->width;
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)
ctx->params->internalBitDepth = 8;
else if (x265_max_bit_depth == 12)