From 4f841c208d72950c397bc3fe826cc21bba449358 Mon Sep 17 00:00:00 2001 From: Themaister Date: Mon, 7 Nov 2011 23:16:32 +0100 Subject: [PATCH] Use --qp 0 rather than --crf 0 for lossless. --- record/ffemu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/record/ffemu.c b/record/ffemu.c index 4ca02b70b3..864ff28eed 100644 --- a/record/ffemu.c +++ b/record/ffemu.c @@ -172,7 +172,7 @@ static bool init_video(struct video_info *video, const struct ffemu_params *para #ifdef HAVE_X264RGB video->codec->thread_count = 3; - av_dict_set(&opts, "crf", "0", 0); + av_dict_set(&opts, "qp", "0", 0); #else video->codec->thread_count = 2; #endif