Skip to content

Commit

Permalink
Expose min_quantizer
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
  • Loading branch information
dwbuiten committed Jul 3, 2019
1 parent c245abd commit f41a343
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/capi.rs
Expand Up @@ -271,6 +271,7 @@ unsafe fn option_match(

"tune" => enc.tune = value.parse().map_err(|_| ())?,
"quantizer" => enc.quantizer = value.parse().map_err(|_| ())?,
"min_quantizer" => enc.min_quantizer = value.parse().map_err(|_| ())?,
"bitrate" => enc.bitrate = value.parse().map_err(|_| ())?,

"key_frame_interval" => enc.max_key_frame_interval = value.parse().map_err(|_| ())?,
Expand Down

0 comments on commit f41a343

Please sign in to comment.