From f4020e2338a1786b1db0f67075ceb7d9c01be6a3 Mon Sep 17 00:00:00 2001 From: Yaowu Xu Date: Wed, 23 Jun 2010 14:45:51 -0700 Subject: [PATCH] Enable vp8x encoder to recognize vp8 specific options Change-Id: Ib309c8c0a6c7073b71f0e6d131028501cb241daf --- ivfenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ivfenc.c b/ivfenc.c index 1600e0371..b7a9f2ece 100644 --- a/ivfenc.c +++ b/ivfenc.c @@ -758,7 +758,8 @@ int main(int argc, const char **argv_) /* Handle codec specific options */ #if CONFIG_VP8_ENCODER - if (codec->iface == &vpx_codec_vp8_cx_algo) + if (codec->iface == &vpx_codec_vp8_cx_algo || + codec->iface == &vpx_codec_vp8x_cx_algo) { ctrl_args = vp8_args; ctrl_args_map = vp8_arg_ctrl_map; -- 2.40.0