projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a22264
)
libx265: Use 16-bit SAR
author
Derek Buitenhuis
<derek.buitenhuis@gmail.com>
Thu, 10 Apr 2014 12:17:48 +0000
(13:17 +0100)
committer
Derek Buitenhuis
<derek.buitenhuis@gmail.com>
Thu, 10 Apr 2014 12:28:55 +0000
(13:28 +0100)
The spec says it is 16 bits.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
libavcodec/libx265.c
patch
|
blob
|
history
diff --git
a/libavcodec/libx265.c
b/libavcodec/libx265.c
index 94b08a713a6d617081c013c844a6828de2c32647..223ec783bc796e2104cb85ad294603d306686a8d 100644
(file)
--- 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[1
0
];
+ char sar[1
2
];
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);