diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2014-04-10 13:17:48 +0100 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2014-04-10 16:49:03 +0100 |
commit | fcc43e02d30279b2ca4c69811311aa05acab4184 (patch) | |
tree | f7dd200e0a36249e0b18f109e3b3866db1ebccd3 /libavcodec | |
parent | d1e6e5c88733e268d8a099191602d1aefe858a45 (diff) | |
download | ffmpeg-fcc43e02d30279b2ca4c69811311aa05acab4184.tar.gz |
libx265: Use 16-bit SAR
The spec says it is 16 bits.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/libx265.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c index e9e059b7d5..56ee063c9e 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); |