GNOME Bugzilla – Bug 627977
add deadline parameter to vp8enc
Last modified: 2010-08-25 19:49:51 UTC
According to this documentation: http://www.webmproject.org/tools/vp8-sdk/vp8_api1_migration.html there is a deadline parameter what affect directly encoding speed (and quality), is it possible to add this to vp8enc? please :D Affected flugs are VPX_DL_REALTIME, VPX_DL_GOOD_QUALITY, VPX_DL_BEST_QUALITY set to: vpx_codec_encode(&encoder, img, pts, 1, 0, VPX_DL_REALTIME); i see gstreamer use this function. Hopefully adding this flags will be not a big problem. Regards, Alexey
You can choose between those via the speed property. realtime is 2, good is 1 and best is 0. I agree that this interface is not optimal though but that's going to be changed :)