After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 627977 - add deadline parameter to vp8enc
add deadline parameter to vp8enc
Status: RESOLVED INVALID
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
0.10.x
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2010-08-25 19:17 UTC by Oleksij Rempel
Modified: 2010-08-25 19:49 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Oleksij Rempel 2010-08-25 19:17:37 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
Comment 1 Sebastian Dröge (slomo) 2010-08-25 19:49:51 UTC
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 :)