mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
vp8enc: Use VPX defines for REALTIME, GOOD/BEST quality deadlines instead of our own
These are the values used for the speed property.
This commit is contained in:
parent
268636c880
commit
c2809e6843
1 changed files with 3 additions and 3 deletions
|
@ -636,9 +636,9 @@ gst_vp8_enc_buffer_to_image (GstVP8Enc * enc, GstBuffer * buffer)
|
|||
}
|
||||
|
||||
static const int speed_table[] = {
|
||||
0,
|
||||
100000,
|
||||
1,
|
||||
VPX_DL_BEST_QUALITY,
|
||||
VPX_DL_GOOD_QUALITY,
|
||||
VPX_DL_REALTIME,
|
||||
};
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue