From e998ba4fbc680cbdad296eb3d1f3dd474b869bae Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Thu, 11 Dec 2008 22:34:14 +0000 Subject: avoid POSIX reserved _t suffix Originally committed as revision 16067 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/vocdec.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavformat/vocdec.c') diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c index 7aec2ab6df..8ad690929a 100644 --- a/libavformat/vocdec.c +++ b/libavformat/vocdec.c @@ -38,7 +38,7 @@ static int voc_probe(AVProbeData *p) static int voc_read_header(AVFormatContext *s, AVFormatParameters *ap) { - voc_dec_context_t *voc = s->priv_data; + VocDecContext *voc = s->priv_data; ByteIOContext *pb = s->pb; int header_size; AVStream *st; @@ -62,10 +62,10 @@ static int voc_read_header(AVFormatContext *s, AVFormatParameters *ap) int voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size) { - voc_dec_context_t *voc = s->priv_data; + VocDecContext *voc = s->priv_data; AVCodecContext *dec = st->codec; ByteIOContext *pb = s->pb; - voc_type_t type; + VocType type; int size; int sample_rate = 0; int channels = 1; @@ -137,7 +137,7 @@ static int voc_read_packet(AVFormatContext *s, AVPacket *pkt) AVInputFormat voc_demuxer = { "voc", NULL_IF_CONFIG_SMALL("Creative Voice file format"), - sizeof(voc_dec_context_t), + sizeof(VocDecContext), voc_probe, voc_read_header, voc_read_packet, -- cgit v1.2.3