On Fri, 21 Feb 2014 19:10:34 +0000, Derek Buitenhuis <[email protected]> wrote: > Signed-off-by: Derek Buitenhuis <[email protected]> > --- > libavcodec/libx265.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c > index 079a5b7..b71b49a 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; > @@ -104,6 +105,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) > -- > 1.9.0.rc3 >
It'd be nice if you mentioned what changed, so people don't have to diff the patches manually. Patch still looks fine, assuming you tested it. -- Anton Khirnov _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
