From a3142ee4e6e9d2fd04be9442d15ba5c7d6891c11 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 22 May 2014 13:04:00 +0200 Subject: decoder/vorbis: rename struct vorbis_input_stream to VorbisInputStream --- src/decoder/plugins/VorbisDecoderPlugin.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/decoder/plugins/VorbisDecoderPlugin.cxx') diff --git a/src/decoder/plugins/VorbisDecoderPlugin.cxx b/src/decoder/plugins/VorbisDecoderPlugin.cxx index 052dff420..4fdf6cff8 100644 --- a/src/decoder/plugins/VorbisDecoderPlugin.cxx +++ b/src/decoder/plugins/VorbisDecoderPlugin.cxx @@ -48,7 +48,7 @@ #include -struct vorbis_input_stream { +struct VorbisInputStream { Decoder *decoder; InputStream *input_stream; @@ -57,7 +57,7 @@ struct vorbis_input_stream { static size_t ogg_read_cb(void *ptr, size_t size, size_t nmemb, void *data) { - struct vorbis_input_stream *vis = (struct vorbis_input_stream *)data; + VorbisInputStream *vis = (VorbisInputStream *)data; size_t ret = decoder_read(vis->decoder, *vis->input_stream, ptr, size * nmemb); @@ -68,7 +68,7 @@ static size_t ogg_read_cb(void *ptr, size_t size, size_t nmemb, void *data) static int ogg_seek_cb(void *data, ogg_int64_t offset, int whence) { - struct vorbis_input_stream *vis = (struct vorbis_input_stream *)data; + VorbisInputStream *vis = (VorbisInputStream *)data; Error error; return vis->seekable && @@ -86,7 +86,7 @@ static int ogg_close_cb(gcc_unused void *data) static long ogg_tell_cb(void *data) { - struct vorbis_input_stream *vis = (struct vorbis_input_stream *)data; + VorbisInputStream *vis = (VorbisInputStream *)data; return (long)vis->input_stream->GetOffset(); } @@ -123,7 +123,7 @@ vorbis_strerror(int code) } static bool -vorbis_is_open(struct vorbis_input_stream *vis, OggVorbis_File *vf, +vorbis_is_open(VorbisInputStream *vis, OggVorbis_File *vf, Decoder *decoder, InputStream &input_stream) { vis->decoder = decoder; @@ -192,7 +192,7 @@ vorbis_stream_decode(Decoder &decoder, moved it */ input_stream.LockRewind(IgnoreError()); - struct vorbis_input_stream vis; + VorbisInputStream vis; OggVorbis_File vf; if (!vorbis_is_open(&vis, &vf, &decoder, input_stream)) return; @@ -313,7 +313,7 @@ static bool vorbis_scan_stream(InputStream &is, const struct tag_handler *handler, void *handler_ctx) { - struct vorbis_input_stream vis; + VorbisInputStream vis; OggVorbis_File vf; if (!vorbis_is_open(&vis, &vf, nullptr, is)) -- cgit v1.2.3