Commit 58cabb53 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

theora: avoid simple->double->simple precision

parent 0e623d01
......@@ -727,7 +727,7 @@ static int OpenEncoder( vlc_object_t *p_this )
}
p_sys->ti.target_bitrate = p_enc->fmt_out.i_bitrate;
p_sys->ti.quality = ((float)i_quality) * 6.3;
p_sys->ti.quality = ((float)i_quality) * 6.3f;
p_sys->tcx = th_encode_alloc( &p_sys->ti );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment