From 77be08eeb199c8f3f78b3426e970decadbc1425c Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Thu, 6 Nov 2008 01:50:56 +0000 Subject: OGG: untypedef demuxer structs Originally committed as revision 15784 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/oggparseflac.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavformat/oggparseflac.c') diff --git a/libavformat/oggparseflac.c b/libavformat/oggparseflac.c index 28c6ce365f..b1332c618b 100644 --- a/libavformat/oggparseflac.c +++ b/libavformat/oggparseflac.c @@ -28,8 +28,8 @@ static int flac_header (AVFormatContext * s, int idx) { - ogg_t *ogg = s->priv_data; - ogg_stream_t *os = ogg->streams + idx; + struct ogg *ogg = s->priv_data; + struct ogg_stream *os = ogg->streams + idx; AVStream *st = s->streams[idx]; GetBitContext gb; int mdt; @@ -85,13 +85,13 @@ old_flac_header (AVFormatContext * s, int idx) return 0; } -const ogg_codec_t ff_flac_codec = { +const struct ogg_codec ff_flac_codec = { .magic = "\177FLAC", .magicsize = 5, .header = flac_header }; -const ogg_codec_t ff_old_flac_codec = { +const struct ogg_codec ff_old_flac_codec = { .magic = "fLaC", .magicsize = 4, .header = old_flac_header -- cgit v1.2.3