summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-06-14 15:51:30 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-06-14 15:52:28 +0200
commitc2809e68430d4b1037f053771d9dd7a83bfd0e0a (patch)
tree5ec0c6a121857ef4124f3dfc3fc57a83b7186e4f
parent268636c880bdadf85a24bf2acb183fba5946d35f (diff)
vp8enc: Use VPX defines for REALTIME, GOOD/BEST quality deadlines instead of our own
These are the values used for the speed property.
-rw-r--r--ext/vp8/gstvp8enc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/vp8/gstvp8enc.c b/ext/vp8/gstvp8enc.c
index 39d0df694..efc0e510d 100644
--- a/ext/vp8/gstvp8enc.c
+++ b/ext/vp8/gstvp8enc.c
@@ -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