avidec: use designated initializers for AVClass

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2012-06-19 13:59:17 +00:00
parent ef8bea9107
commit 7238ed6c84

View File

@ -84,10 +84,10 @@ static const AVOption options[] = {
};
static const AVClass demuxer_class = {
"AVI demuxer",
av_default_item_name,
options,
LIBAVUTIL_VERSION_INT,
.class_name = "AVI demuxer",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
};