Browse Source

oggdec: use explicit AVInputFormat struct initializers

Signed-off-by: Diego Biurrun <diego@biurrun.de>
tags/n0.8
Clément Bœsch Diego Biurrun 14 years ago
parent
commit
b3bbc6fdc5
1 changed files with 11 additions and 11 deletions
  1. +11
    -11
      libavformat/oggdec.c

+ 11
- 11
libavformat/oggdec.c View File

@@ -648,15 +648,15 @@ static int ogg_probe(AVProbeData *p)
}

AVInputFormat ff_ogg_demuxer = {
"ogg",
NULL_IF_CONFIG_SMALL("Ogg"),
sizeof (struct ogg),
ogg_probe,
ogg_read_header,
ogg_read_packet,
ogg_read_close,
ogg_read_seek,
ogg_read_timestamp,
.extensions = "ogg",
.flags = AVFMT_GENERIC_INDEX,
.name = "ogg",
.long_name = NULL_IF_CONFIG_SMALL("Ogg"),
.priv_data_size = sizeof(struct ogg),
.read_probe = ogg_probe,
.read_header = ogg_read_header,
.read_packet = ogg_read_packet,
.read_close = ogg_read_close,
.read_seek = ogg_read_seek,
.read_timestamp = ogg_read_timestamp,
.extensions = "ogg",
.flags = AVFMT_GENERIC_INDEX,
};

Loading…
Cancel
Save