Skip to content

Commit

Permalink
decoder/vorbis: rename struct vorbis_input_stream to VorbisInputStream
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed May 22, 2014
1 parent 437caeb commit a3142ee
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/decoder/plugins/VorbisDecoderPlugin.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

#include <errno.h>

struct vorbis_input_stream {
struct VorbisInputStream {
Decoder *decoder;

InputStream *input_stream;
Expand All @@ -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);

Expand All @@ -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 &&
Expand All @@ -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();
}
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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))
Expand Down

0 comments on commit a3142ee

Please sign in to comment.