summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2010-06-23 14:45:51 -0700
committerYaowu Xu <yaowu@google.com>2010-06-23 14:45:51 -0700
commitf4020e2338a1786b1db0f67075ceb7d9c01be6a3 (patch)
treec6c2912c653e768eb76af9ffce277a7c333e8673
parent0952acb79af7319b64cc598712450f6766108a0d (diff)
downloadlibvpx-f4020e2338a1786b1db0f67075ceb7d9c01be6a3.tar
libvpx-f4020e2338a1786b1db0f67075ceb7d9c01be6a3.tar.gz
libvpx-f4020e2338a1786b1db0f67075ceb7d9c01be6a3.tar.bz2
libvpx-f4020e2338a1786b1db0f67075ceb7d9c01be6a3.zip
Enable vp8x encoder to recognize vp8 specific options
Change-Id: Ib309c8c0a6c7073b71f0e6d131028501cb241daf
-rw-r--r--ivfenc.c3
1 files changed, 2 insertions, 1 deletions
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;