ref: 388a807e4985ed3fe9d25c2478f1dad3c935cc51
parent: 0ca0a536f5d42c338cc21b76f95c5617867ff756
parent: ed0d9dc836123e512b0c8c2cf1eb4ef44bbe8e55
author: Tom Finegan <[email protected]>
date: Tue Sep 29 14:56:21 EDT 2015
Merge "vpxenc: Allow non i420 input for VP10."
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -1996,7 +1996,7 @@
usage_exit();
/* Decide if other chroma subsamplings than 4:2:0 are supported */
- if (global.codec->fourcc == VP9_FOURCC)
+ if (global.codec->fourcc == VP9_FOURCC || global.codec->fourcc == VP10_FOURCC)
input.only_i420 = 0;
for (pass = global.pass ? global.pass - 1 : 0; pass < global.passes; pass++) {