- 30 Nov, 2009 1 commit
-
-
svitoos authored
If we define id3v1_encoding, then the tags are not added to the database.
-
- 15 Nov, 2009 1 commit
-
-
Max Kellermann authored
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?).
-
- 12 Nov, 2009 1 commit
-
-
Max Kellermann authored
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.
-
- 13 Oct, 2009 1 commit
-
-
Max Kellermann authored
-
- 03 Aug, 2009 5 commits
-
-
Max Kellermann authored
The ID3_FRAME_GENRE field is queried only in tag_id3_import_text(). Don't pass the tag type to import_id3_string().
-
Max Kellermann authored
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.
-
Max Kellermann authored
Changed "int type" to "enum tag_type". Converted "int is_id3v1" to "bool".
-
Max Kellermann authored
Prefer C over CPP.
-
Max Kellermann authored
Renamed functions.
-
- 09 Jul, 2009 1 commit
-
-
Bart Nagel authored
-
- 07 Jul, 2009 2 commits
-
-
Max Kellermann authored
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".
-
Max Kellermann authored
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.
-
- 06 May, 2009 1 commit
-
-
Max Kellermann authored
If the UFID frame's owner is "http://musicbrainz.org", assume its value is the MusicBrainz track id.
-
- 13 Mar, 2009 1 commit
-
-
Avuton Olrich authored
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.
-
- 02 Mar, 2009 2 commits
-
-
Max Kellermann authored
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.
-
Max Kellermann authored
Added a small RIFF parser library. Look for an "id3" chunk, and let libid3tag parse it.
-
- 24 Jan, 2009 2 commits
-
-
Max Kellermann authored
Added support for the MusicBrainz TXXX tags, documented on: http://musicbrainz.org/doc/MusicBrainzTag
-
Max Kellermann authored
Save some code: always allocate the tag object, and free it when it turns out to be empty.
-
- 17 Jan, 2009 1 commit
-
-
Max Kellermann authored
Don't return a writable pointer.
-
- 14 Jan, 2009 1 commit
-
-
Daniele Sluijters authored
Read the id3 tags "TPE2" and "TSO2" into the "album artist" tag.
-
- 04 Jan, 2009 1 commit
-
-
Max Kellermann authored
Pass NULL instead of &error to g_convert(). We're not interested in the error object.
-
- 03 Jan, 2009 1 commit
-
-
Max Kellermann authored
-
- 29 Dec, 2008 2 commits
-
-
Max Kellermann authored
-
Thomas Jansen authored
Fix for bug #1491.
-
- 02 Dec, 2008 1 commit
-
-
Thomas Jansen authored
We want to remove gcc.h eventually. This takes care of all the G_LIKELY/G_UNLIKELY macros.
-
- 17 Oct, 2008 1 commit
-
-
Max Kellermann authored
If a feature is disabled, don't compile the source file at all, disable it completely in Makefile.am instead.
-
- 15 Oct, 2008 2 commits
-
-
Max Kellermann authored
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.
-
Max Kellermann authored
Indentation was broken in tag_id3.c: it used 4 spaces instead of tabs.
-
- 29 Aug, 2008 4 commits
-
-
Max Kellermann authored
Yet another patch which converts pointer arguments to "const".
-
Max Kellermann authored
The ID3 code uses only the public tag API, but is otherwise unrelated. Move it to a separate source file.
-
Max Kellermann authored
-
Max Kellermann authored
Getting rid of CamelCase; not having typedefs also allows us to forward-declare the structures.
-
- 28 Aug, 2008 2 commits
-
-
Max Kellermann authored
The usual bunch of pointer arguments which should be const.
-
Max Kellermann authored
Use "unsigned int" whenever negative values are not meaningful. Use size_t whenever we are going to describe buffer sizes.
-
- 26 Aug, 2008 1 commit
-
-
Max Kellermann authored
Don't use CPP macros when you can use C enum... this also allows better type checking.
-
- 12 Apr, 2008 3 commits
-
-
Max Kellermann authored
Try to only include headers which are really needed. We should particularly check all "headers including other headers". The long-term goal is to have a manageable, small API for plugins (decoders, output) without so many mpd internals cluttering the namespace. git-svn-id: https://svn.musicpd.org/mpd/trunk@7319 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-
Max Kellermann authored
git-svn-id: https://svn.musicpd.org/mpd/trunk@7287 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-
Max Kellermann authored
git-svn-id: https://svn.musicpd.org/mpd/trunk@7286 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-
- 26 Mar, 2008 2 commits
-
-
Max Kellermann authored
When dealing with in-memory lengths, the standard type "size_t" should be used. Missing one can be quite dangerous, because an attacker could provoke an integer under-/overflow, which may provide an attack vector. git-svn-id: https://svn.musicpd.org/mpd/trunk@7205 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-
Max Kellermann authored
Local variables which are never read before the first assignment don't need initialization. Saves a few bytes of text. Also don't reset variables which are never read until function return. git-svn-id: https://svn.musicpd.org/mpd/trunk@7199 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-