Are you using VPX_DL_REALTIME when you call vpx_codec_encode()?
Once you've set that, there are 16 complexity levels you can select
with libvpx. Use vpx_codec_control() to set VP8E_SET_CPUUSED. If you
set to 0 or a positive value 1-16, the codec will try to adapt its
complexity depending on the time it spends encoding. Increasing this
number will make the speed go up and the quality go down.
If you want even more fine-grained control over the complexity, you
can fix the speed step manually by using a negative value, -1
(slowest) to -16 (fastest). This approach is also necessary if you
care about deterministic behavior.
> --
> You received this message because you are subscribed to the Google Groups
> "WebM Discussion" group.
> To view this discussion on the web visit
>
https://groups.google.com/a/webmproject.org/d/msg/webm-discuss/-/WG-9TFCXQYcJ.
> To post to this group, send email to
webm-d...@webmproject.org.
> To unsubscribe from this group, send email to
>
webm-discuss...@webmproject.org.
> For more options, visit this group at
>
http://groups.google.com/a/webmproject.org/group/webm-discuss/?hl=en.