Convert all AVClass struct declarations to designated initializers.

This commit is contained in:
Diego Biurrun
2017-06-10 16:45:06 +02:00
parent 98ea98069b
commit 97cfe1d8bd
19 changed files with 98 additions and 39 deletions

View File

@@ -59,9 +59,9 @@ static const char *test_get_name(void *ctx)
}
static const AVClass test_class = {
"TestContext",
test_get_name,
test_options
.class_name = "TestContext",
.item_name = test_get_name,
.option = test_options,
};
int main(void)