[FFmpeg-cvslog] libx265: Support SAR
Derek Buitenhuis
git at videolan.org
Mon Feb 24 17:11:25 CET 2014
ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Fri Feb 21 12:05:50 2014 -0500| [73ee4cf3073bd3b98580cd0b31521972746bd2d4] | committer: Derek Buitenhuis
libx265: Support SAR
Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=73ee4cf3073bd3b98580cd0b31521972746bd2d4
---
libavcodec/libx265.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
index 27c3fbf..cc4e61e 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)
More information about the ffmpeg-cvslog
mailing list