Commit b3bbc6fd authored by Clément Bœsch's avatar Clément Bœsch Committed by Diego Biurrun

oggdec: use explicit AVInputFormat struct initializers

Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent f95257d2
...@@ -648,15 +648,15 @@ static int ogg_probe(AVProbeData *p) ...@@ -648,15 +648,15 @@ static int ogg_probe(AVProbeData *p)
} }
AVInputFormat ff_ogg_demuxer = { AVInputFormat ff_ogg_demuxer = {
"ogg", .name = "ogg",
NULL_IF_CONFIG_SMALL("Ogg"), .long_name = NULL_IF_CONFIG_SMALL("Ogg"),
sizeof (struct ogg), .priv_data_size = sizeof(struct ogg),
ogg_probe, .read_probe = ogg_probe,
ogg_read_header, .read_header = ogg_read_header,
ogg_read_packet, .read_packet = ogg_read_packet,
ogg_read_close, .read_close = ogg_read_close,
ogg_read_seek, .read_seek = ogg_read_seek,
ogg_read_timestamp, .read_timestamp = ogg_read_timestamp,
.extensions = "ogg", .extensions = "ogg",
.flags = AVFMT_GENERIC_INDEX, .flags = AVFMT_GENERIC_INDEX,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment