diff options
author | Max Kellermann <max@duempel.org> | 2013-01-30 22:25:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-30 22:25:17 +0100 |
commit | 6e47e797909564460fbf30372000c8a879e0f891 (patch) | |
tree | b1d0dab0ed9c720dc7707a927c24554c15f76698 /test/run_encoder.cxx | |
parent | d9ea3082fb608935c72620e272f4b3e74b2c3a44 (diff) |
ConfigData: move functions into the class
Diffstat (limited to 'test/run_encoder.cxx')
-rw-r--r-- | test/run_encoder.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_encoder.cxx b/test/run_encoder.cxx index e2ecab583..9039f2db5 100644 --- a/test/run_encoder.cxx +++ b/test/run_encoder.cxx @@ -74,7 +74,7 @@ int main(int argc, char **argv) } config_param param; - config_add_block_param(¶m, "quality", "5.0", -1); + param.AddBlockParam("quality", "5.0", -1); encoder = encoder_init(plugin, ¶m, &error); if (encoder == NULL) { |