opt-test: Move some variable declarations to avoid block braces

This commit is contained in:
Diego Biurrun 2016-03-21 19:26:29 +01:00
parent a84713e70d
commit d3044cf37f

View File

@ -801,9 +801,6 @@ static const AVClass test_class = {
int main(void)
{
int i;
printf("\nTesting av_set_options_string()\n");
{
TestContext test_ctx;
const char *options[] = {
"",
@ -828,6 +825,9 @@ int main(void)
};
test_ctx.class = &test_class;
printf("\nTesting av_set_options_string()\n");
av_opt_set_defaults(&test_ctx);
test_ctx.string = av_strdup("default");
if (!test_ctx.string)
@ -841,7 +841,6 @@ int main(void)
av_log(&test_ctx, AV_LOG_ERROR, "Error setting options string: '%s'\n", options[i]);
printf("\n");
}
}
return 0;
}