summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libhb/encavcodec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c
index 0f84121fb..278dc926e 100644
--- a/libhb/encavcodec.c
+++ b/libhb/encavcodec.c
@@ -346,8 +346,8 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job )
//Work around an ffmpeg issue mentioned in issue #3447
if (job->vcodec == HB_VCODEC_FFMPEG_VCE_H265)
{
- av_dict_set( &av_opts, "qmin", 0, 0 );
- av_dict_set( &av_opts, "qmax", 51, 0 );
+ av_dict_set( &av_opts, "qmin", "0", 0 );
+ av_dict_set( &av_opts, "qmax", "51", 0 );
}
hb_log( "encavcodec: encoding at rc=vbr_peak Bitrate %d", job->vbitrate );
}