diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:11 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:11 +0200 |
commit | d0556dc9839627f899939e9419181a4ad9b2053d (patch) | |
tree | 5b444b608c281f57cb717d356f2fd52a5b0951da /src/inputPlugins/flac_plugin.c | |
parent | f42de62aa23dc238a767a6fcf0e92fd2c5f3a8f3 (diff) | |
download | mpd-d0556dc9839627f899939e9419181a4ad9b2053d.tar.gz mpd-d0556dc9839627f899939e9419181a4ad9b2053d.tar.xz mpd-d0556dc9839627f899939e9419181a4ad9b2053d.zip |
tag: renamed MpdTag and MpdTagItem to struct tag, struct mpd_tag_item
Getting rid of CamelCase; not having typedefs also allows us to
forward-declare the structures.
Diffstat (limited to 'src/inputPlugins/flac_plugin.c')
-rw-r--r-- | src/inputPlugins/flac_plugin.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/inputPlugins/flac_plugin.c b/src/inputPlugins/flac_plugin.c index 4d9f8e8d4..a8dcc0b41 100644 --- a/src/inputPlugins/flac_plugin.c +++ b/src/inputPlugins/flac_plugin.c @@ -290,9 +290,9 @@ static FLAC__StreamDecoderWriteStatus flacWrite(const flac_decoder *dec, return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; } -static MpdTag *flacMetadataDup(char *file, int *vorbisCommentFound) +static struct tag *flacMetadataDup(char *file, int *vorbisCommentFound) { - MpdTag *ret = NULL; + struct tag *ret = NULL; FLAC__Metadata_SimpleIterator *it; FLAC__StreamMetadata *block = NULL; @@ -348,9 +348,9 @@ static MpdTag *flacMetadataDup(char *file, int *vorbisCommentFound) return ret; } -static MpdTag *flacTagDup(char *file) +static struct tag *flacTagDup(char *file) { - MpdTag *ret = NULL; + struct tag *ret = NULL; int foundVorbisComment = 0; ret = flacMetadataDup(file, &foundVorbisComment); @@ -360,7 +360,7 @@ static MpdTag *flacTagDup(char *file) return NULL; } if (!foundVorbisComment) { - MpdTag *temp = id3Dup(file); + struct tag *temp = id3Dup(file); if (temp) { temp->time = ret->time; freeMpdTag(ret); @@ -464,9 +464,9 @@ static int flac_decode(struct decoder * decoder, InputStream * inStream) /* some of this stuff is duplicated from oggflac_plugin.c */ extern struct decoder_plugin oggflacPlugin; -static MpdTag *oggflac_tag_dup(char *file) +static struct tag *oggflac_tag_dup(char *file) { - MpdTag *ret = NULL; + struct tag *ret = NULL; FLAC__Metadata_Iterator *it; FLAC__StreamMetadata *block; FLAC__Metadata_Chain *chain = FLAC__metadata_chain_new(); |