This is similar to what is done in libx264.c

Fixes Ticket3567

Signed-off-by: Michael Niedermayer <michae...@gmx.at>
---
 libavcodec/libx265.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
index 55019d4..923c750 100644
--- a/libavcodec/libx265.c
+++ b/libavcodec/libx265.c
@@ -111,6 +111,7 @@ static av_cold int libx265_encode_init(AVCodecContext 
*avctx)
     ctx->params->fpsDenom        = avctx->time_base.num * 
avctx->ticks_per_frame;
     ctx->params->sourceWidth     = avctx->width;
     ctx->params->sourceHeight    = avctx->height;
+    ctx->params->bEnablePsnr     = !!(avctx->flags & CODEC_FLAG_PSNR);
 
     if (avctx->sample_aspect_ratio.num > 0 && avctx->sample_aspect_ratio.den > 
0) {
         av_reduce(&sar_num, &sar_den,
-- 
1.7.9.5

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to