Commit 6ae7bd00 authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Backport from trunk [24695]: set qmin=3 in ffmpeg encode when bitrate is set...

Backport from trunk [24695]: set qmin=3 in ffmpeg encode when bitrate is set and user hasn't defined qmin/qmax self
parent bab3008a
...@@ -528,7 +528,7 @@ int E_(OpenEncoder)( vlc_object_t *p_this ) ...@@ -528,7 +528,7 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
(p_sys->i_qmax == 0) && (p_sys->i_qmin == 0) ) (p_sys->i_qmax == 0) && (p_sys->i_qmin == 0) )
{ {
p_sys->i_qmax = 51; p_sys->i_qmax = 51;
p_sys->i_qmin = 10; p_sys->i_qmin = 3;
} }
if( p_sys->i_qmin > 0 ) if( p_sys->i_qmin > 0 )
......
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