shithub: libvpx

Download patch

ref: 5dccce558c9e5a77e19a794e0cca1f7c918dbe6c
parent: bbb9ca4535bf0f32706209fd4463e16cc8d42d7a
author: Jingning Han <[email protected]>
date: Sat Aug 15 11:57:54 EDT 2015

Set VP9 as vpxenc default encoder

Change-Id: Idb8a133364fc29ac762ad344262bcc47c568a55c

--- a/tools_common.c
+++ b/tools_common.c
@@ -133,6 +133,10 @@
 #if CONFIG_ENCODERS
 
 static const VpxInterface vpx_encoders[] = {
+#if CONFIG_VP10_ENCODER
+  {"vp10", VP10_FOURCC, &vpx_codec_vp10_cx},
+#endif
+
 #if CONFIG_VP8_ENCODER
   {"vp8", VP8_FOURCC, &vpx_codec_vp8_cx},
 #endif
@@ -139,10 +143,6 @@
 
 #if CONFIG_VP9_ENCODER
   {"vp9", VP9_FOURCC, &vpx_codec_vp9_cx},
-#endif
-
-#if CONFIG_VP10_ENCODER
-  {"vp10", VP10_FOURCC, &vpx_codec_vp10_cx},
 #endif
 };