GNOME Bugzilla – Bug 619169
[vp8enc] Limit DEFAULT_MAX_LATENCY to 25 to match libvpx
Last modified: 2010-05-20 14:18:03 UTC
Created attachment 161522 [details] [review] patch From libvpx/vp8/encoder/onyx_int.h: While we don't need to be tied to what libvpx does internally, it doesn't make sense to pretend to support longer frame lags than are actually possible.
Thanks... higher values make it impossible to initialize the encoder anyway. If this limit changes at some point we can still update the maximum value of that property. commit 2f4ea3b73449050996e19bf65cedd4005b27ab1f Author: Philip Jägenstedt <philipj@opera.com> Date: Thu May 20 09:24:53 2010 +0200 vp8enc: Limit max-latency to 25 to match libvpx From libvpx/vp8/encoder/onyx_int.h: #define MAX_LAG_BUFFERS (CONFIG_REALTIME_ONLY? 1 : 25) While we don't need to be tied to what libvpx does internally, it doesn't make sense to pretend to support longer frame lags than are actually possible.