aboutsummaryrefslogtreecommitdiff
path: root/src/tag_id3.c
Commit message (Collapse)AuthorAge
* Add tag support for DSD (DSDIFF & DSF) decodersJurgen Kramer2012-10-27
|
* PlaylistFile, client_file, tag_id3: don't use g_file_error_quark()Max Kellermann2012-10-04
| | | | | | | | | g_file_error_quark() is meant to be used with the GFileError enum which does not correspond with errno, but must be converted with g_file_error_from_errno(). At the same time, this removes g_strerror() use for g_file_error_quark().
* tag_id3: export tag_id3_load()Max Kellermann2012-04-23
|
* use g_strerror() instead of strerror()Max Kellermann2012-03-06
| | | | Make sure we get a UTF-8 encoded string.
* tag_{ape,id3}: remove the _load() functionsMax Kellermann2012-02-12
| | | | Use _scan() instead, to have more control.
* tag_handler: handle arbitrary name/value pairsMax Kellermann2012-02-12
| | | | | The new method pair() receives an arbitrary name/value pair. Support for this is being added to a few decoder plugins.
* decoder_plugin: scan tags with callback tableMax Kellermann2012-02-11
| | | | | Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object.
* tag_id3: use the tag_table library for TXXXMax Kellermann2012-02-11
|
* copyright year 2011Max Kellermann2011-01-29
|
* tag_id3: support multiple valuesMax Kellermann2010-12-07
| | | | | Loop over all frames with a specific id, and import all of them - not just the first one (index 0).
* tag_{id3,ape}: explicitly open files in binary modeMax Kellermann2010-05-20
| | | | Add the flag "b" to fopen(). Windows compatibility.
* Update copyright notices.Avuton Olrich2009-12-31
|
* Merge branch 'v0.15.x'Max Kellermann2009-12-14
|\ | | | | | | | | Conflicts: src/decoder/ffmpeg_plugin.c
| * tag_id3: fix ID3v1 charset conversionsvitoos2009-11-30
| | | | | | | | | | If we define id3v1_encoding, then the tags are not added to the database.
* | Merged release 0.15.6 from branch 'v0.15.x'Max Kellermann2009-11-19
|\| | | | | | | | | | | | | Conflicts: NEWS configure.ac
| * id3: allow 4 MB RIFF/AIFF tagsMax Kellermann2009-11-15
| | | | | | | | | | | | | | Allow RIFF/AIFF ID3 tags up to 4 MB (old limit was 256 kB). This might still be too small for some users, and when somebody complains, we might do something more clever (like streaming the data into libid3tag?).
* | include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | | | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* | tag: removed the "_ITEM_" suffix from the enum namesMax Kellermann2009-10-13
| |
* | tag_id3: moved id3_genre_name() call to tag_id3_import_text()Max Kellermann2009-08-04
| | | | | | | | | | The ID3_FRAME_GENRE field is queried only in tag_id3_import_text(). Don't pass the tag type to import_id3_string().
* | tag_id3: splitted function tag_id3_import_frame()Max Kellermann2009-08-04
| | | | | | | | | | | | Splitted tag_id3_import_frame() into two specialized functions: tag_id3_import_text() and tag_id3_import_comment(). Use id3_frame_field() instead of directly accessing id3_frame.fields.
* | tag_id3: corrected parameter typesMax Kellermann2009-08-04
| | | | | | | | | | Changed "int type" to "enum tag_type". Converted "int is_id3v1" to "bool".
* | tag_id3: converted tag_is_id3v1() to an inline functionMax Kellermann2009-08-04
| | | | | | | | Prefer C over CPP.
* | tag_id3: no CamelCaseMax Kellermann2009-08-04
| | | | | | | | Renamed functions.
* | Implement ArtistSort tagBart Nagel2009-07-09
| |
* | tag_id3: revised "performer" tag supportMax Kellermann2009-07-07
| | | | | | | | | | | | | | According to the ID3 2.4 documentation, "TOPE" is "Original artist/performer", not "performer". Removed "TOPE" support. Instead, map TPE3 ("Conductor/performer refinement") and TPE4 ("Interpreted, remixed, or otherwise modified by") to "performer".
* | tag: added tag "AlbumArtistSort"Max Kellermann2009-07-07
|/ | | | | | | | The tag_id3.c library supports both the documented "TSO2" tag, and the inofficial TXXX/ALBUMARTISTSORT. The Vorbis/FLAC decoder automatically supports the new tag, without further change.
* tag_id3: added support for the UFID frameMax Kellermann2009-05-06
| | | | | If the UFID frame's owner is "http://musicbrainz.org", assume its value is the MusicBrainz track id.
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
* tag_id3: parse ID3 tags in AIFF filesMax Kellermann2009-03-02
| | | | | | Added a small AIFF parser library, code copied from the RIFF parser (big-endian integers). Look for an "ID3" chunk, and let libid3tag parse it.
* tag_id3: parse ID3 tags in RIFF/WAV filesMax Kellermann2009-03-02
| | | | | Added a small RIFF parser library. Look for an "id3" chunk, and let libid3tag parse it.
* tag_id3: added MusicBrainz tag supportMax Kellermann2009-01-24
| | | | | | Added support for the MusicBrainz TXXX tags, documented on: http://musicbrainz.org/doc/MusicBrainzTag
* tag_id3: always allocate tag objectMax Kellermann2009-01-24
| | | | | Save some code: always allocate the tag object, and free it when it turns out to be empty.
* conf: replaced getConfigParamValue() with config_get_string()Max Kellermann2009-01-17
| | | | Don't return a writable pointer.
* tag_id3: added support for the "album artist" tagDaniele Sluijters2009-01-14
| | | | Read the id3 tags "TPE2" and "TSO2" into the "album artist" tag.
* path, tag: don't allocate GError for charset conversionMax Kellermann2009-01-04
| | | | | Pass NULL instead of &error to g_convert(). We're not interested in the error object.
* tag_id3: use GLib instead of utils.hMax Kellermann2009-01-03
|
* tag_id3: use GLib loggingMax Kellermann2008-12-29
|
* tag_id3: strip leading and trailing whitespace from ID3 tagsThomas Jansen2008-12-29
| | | | Fix for bug #1491.
* replaced mpd_likely/mpd_unlikely by G_LIKELY/G_UNLIKELYThomas Jansen2008-12-02
| | | | | We want to remove gcc.h eventually. This takes care of all the G_LIKELY/G_UNLIKELY macros.
* Makefile.am: don't compile disabled sourcesMax Kellermann2008-10-17
| | | | | If a feature is disabled, don't compile the source file at all, disable it completely in Makefile.am instead.
* path, tag_id3: use g_convert() instead of charConv.cMax Kellermann2008-10-15
| | | | | | | GLib provides an easier API for character set conversion than iconv(). Use g_convert() / g_convert_with_fallback() for all character conversions. We should optimize the path.h API later to return a newly allocated buffer, so we can just pass GLib's return value.
* tag_id3: fix indentationMax Kellermann2008-10-15
| | | | Indentation was broken in tag_id3.c: it used 4 spaces instead of tabs.
* const pointersMax Kellermann2008-08-29
| | | | Yet another patch which converts pointer arguments to "const".
* tag: moved code to tag_id3.cMax Kellermann2008-08-29
The ID3 code uses only the public tag API, but is otherwise unrelated. Move it to a separate source file.