[FFmpeg-cvslog] libx265: Use 16-bit SAR

Derek Buitenhuis git at videolan.org
Thu Apr 10 21:41:31 CEST 2014


ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Thu Apr 10 13:17:48 2014 +0100| [cd0ac6f6e5c353cadf678d9f194868f7d846566b] | committer: Derek Buitenhuis

libx265: Use 16-bit SAR

The spec says it is 16 bits.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cd0ac6f6e5c353cadf678d9f194868f7d846566b
---

 libavcodec/libx265.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
index 94b08a7..223ec78 100644
--- a/libavcodec/libx265.c
+++ b/libavcodec/libx265.c
@@ -77,7 +77,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
 {
     libx265Context *ctx = avctx->priv_data;
     x265_nal *nal;
-    char sar[10];
+    char sar[12];
     int sar_num, sar_den;
     int nnal;
 
@@ -115,7 +115,7 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx)
 
     av_reduce(&sar_num, &sar_den,
               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);
     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);



More information about the ffmpeg-cvslog mailing list