shithub: libvpx

Download patch

ref: 185eb700113f27b8cb6fa49204069e52e60eddf3
parent: 6a4ff6f32595918f91dd734700313b9fc86b13c2
parent: c1c5932260935f9a400675bf78076f473fff55e9
author: John Koleszar <jkoleszar@google.com>
date: Wed Jan 18 11:04:51 EST 2012

Merge "Remove duplicate line in parameter parsing."

--- a/vpxenc.c
+++ b/vpxenc.c
@@ -1644,8 +1644,6 @@
             cfg.rc_resize_up_thresh = arg_parse_uint(&arg);
         else if (arg_match(&arg, &resize_down_thresh, argi))
             cfg.rc_resize_down_thresh = arg_parse_uint(&arg);
-        else if (arg_match(&arg, &resize_down_thresh, argi))
-            cfg.rc_resize_down_thresh = arg_parse_uint(&arg);
         else if (arg_match(&arg, &end_usage, argi))
             cfg.rc_end_usage = arg_parse_enum_or_int(&arg);
         else if (arg_match(&arg, &target_bitrate, argi))
--