Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | tag/ApeLoader: use new[]/delete[] instead of g_malloc()/g_free() | Max Kellermann | 2013-12-04 | 1 | -5/+3 |
| | |||||
* | TagId3: make variables more local | Max Kellermann | 2013-12-04 | 1 | -76/+41 |
| | |||||
* | TagId3: use std::string for partial string copy | Max Kellermann | 2013-12-04 | 1 | -3/+4 |
| | |||||
* | TagId3: use free() instead of g_free() for libid3tag allocations | Max Kellermann | 2013-12-04 | 1 | -3/+3 |
| | |||||
* | TagId3: use new[]/delete[] instead of g_malloc()/g_free() | Max Kellermann | 2013-12-04 | 1 | -11/+6 |
| | |||||
* | TagId3: gcc_unlikely instead of G_UNLIKELY | Max Kellermann | 2013-12-04 | 1 | -4/+2 |
| | |||||
* | Tag: destructor calls Clear() | Max Kellermann | 2013-12-03 | 2 | -11/+3 |
| | | | | Eliminate duplicate code. | ||||
* | Tag: use new[]/delete[] instead of g_new()/g_free() | Max Kellermann | 2013-12-03 | 2 | -11/+4 |
| | |||||
* | Tag: remove method AddItem() | Max Kellermann | 2013-12-03 | 2 | -61/+0 |
| | | | | Use class TagBuilder instead. | ||||
* | PaylistTag: use class TagBuilder | Max Kellermann | 2013-12-03 | 4 | -39/+37 |
| | |||||
* | TagBuilder: add move operator | Max Kellermann | 2013-12-03 | 2 | -0/+34 |
| | |||||
* | TagBuilder: reserve items in move constructor | Max Kellermann | 2013-12-03 | 1 | -0/+1 |
| | |||||
* | TagBuilder: make conversion constructors "explicit" | Max Kellermann | 2013-12-03 | 1 | -2/+2 |
| | |||||
* | TagBuilder: implement the assignment operator | Max Kellermann | 2013-12-03 | 2 | -1/+19 |
| | |||||
* | Tag: move code from Merge() to TagBuilder::Complement() | Max Kellermann | 2013-12-03 | 3 | -40/+29 |
| | |||||
* | TagBuilder: add Tag copy/move constructors | Max Kellermann | 2013-12-03 | 2 | -0/+28 |
| | |||||
* | TagBuilder: add method HasType() | Max Kellermann | 2013-12-03 | 2 | -0/+17 |
| | |||||
* | Tag: add methods RemoveAll(), RemoveType() | Max Kellermann | 2013-12-02 | 2 | -0/+32 |
| | |||||
* | include cleanup using iwyu | Max Kellermann | 2013-11-28 | 10 | -19/+11 |
| | |||||
* | *: use nullptr instead of NULL | Max Kellermann | 2013-10-28 | 2 | -4/+4 |
| | |||||
* | ApeTag: support multiple values per name | Max Kellermann | 2013-10-26 | 1 | -2/+7 |
| | |||||
* | ApeTag: move code to ForEachValue() | Max Kellermann | 2013-10-26 | 1 | -16/+30 |
| | |||||
* | ApeTag: simplify the "recognized" flag | Max Kellermann | 2013-10-26 | 1 | -4/+1 |
| | |||||
* | TagFile: use Path instead of const char * | Max Kellermann | 2013-10-26 | 8 | -15/+25 |
| | |||||
* | ReplayGainInfo: use CamelCase for struct name | Max Kellermann | 2013-10-25 | 4 | -18/+18 |
| | |||||
* | Util/ASCII: add function StringEqualsCaseASCII() | Max Kellermann | 2013-10-20 | 5 | -14/+13 |
| | | | | Replaces GLib's g_ascii_strcasecmp(). | ||||
* | TagType: rename enum tag_type to TagType | Max Kellermann | 2013-10-20 | 14 | -52/+52 |
| | |||||
* | *: use std::numeric_limits | Max Kellermann | 2013-10-17 | 2 | -5/+4 |
| | |||||
* | system/ByteOrder: new library for byte ordering / endianess | Max Kellermann | 2013-10-16 | 3 | -9/+12 |
| | | | | Replacing GLib macros. | ||||
* | ApeTag: use std::string for temporary allocation | Max Kellermann | 2013-10-15 | 1 | -4/+3 |
| | |||||
* | gcc.h: rename to Compiler.h | Max Kellermann | 2013-10-15 | 6 | -6/+6 |
| | |||||
* | replay_gain_*.h: rename to *.hxx | Max Kellermann | 2013-10-02 | 2 | -2/+2 |
| | |||||
* | Log: new logging library API | Max Kellermann | 2013-10-02 | 3 | -19/+19 |
| | | | | | Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | ||||
* | tag/{riff,aiff}: convert to C++ | Max Kellermann | 2013-09-28 | 5 | -43/+26 |
| | |||||
* | TagType: reduce the enum size to 1 byte | Max Kellermann | 2013-09-26 | 2 | -2/+13 |
| | | | | Reduce the TagItem overhead. | ||||
* | Tag: add "pure" attributes | Max Kellermann | 2013-09-26 | 1 | -0/+3 |
| | |||||
* | TagHandler: use a TagBuilder internally | Max Kellermann | 2013-09-26 | 3 | -19/+15 |
| | | | | Reduce heap allocator overhead. | ||||
* | TagBuilder: add method Commit(Tag&) | Max Kellermann | 2013-09-05 | 2 | -8/+21 |
| | | | | For callers that already have a Tag instance. | ||||
* | TagBuilder: add method IsEmpty() | Max Kellermann | 2013-09-05 | 1 | -1/+9 |
| | |||||
* | Tag: remove the obsolete "bulk" mode | Max Kellermann | 2013-09-05 | 2 | -88/+3 |
| | | | | | Methods BeginAdd() and EndAdd() have been replaced by class TagBuilder. | ||||
* | TagBuilder: new class for constructing Tag objects | Max Kellermann | 2013-09-05 | 2 | -0/+229 |
| | | | | Obsoletes Tag::BeginAdd() and the complicated "bulk add" code. | ||||
* | TagItem: disable the copy constructor/operator | Max Kellermann | 2013-09-05 | 1 | -0/+4 |
| | | | | This is not a C++ class and must not be copied. | ||||
* | Tag: compile-time initialisation of ignore_tag_items | Max Kellermann | 2013-09-05 | 5 | -18/+31 |
| | | | | Move to TagSettings.c and use C99 initializers. | ||||
* | Tag: move struct TagItem to TagItem.hxx | Max Kellermann | 2013-09-05 | 3 | -16/+43 |
| | |||||
* | Tag: move fix_tag_value() to TagString.cxx | Max Kellermann | 2013-09-05 | 3 | -102/+160 |
| | |||||
* | Tag: remove unused methods | Max Kellermann | 2013-09-05 | 2 | -70/+0 |
| | |||||
* | TagNames: make tag_item_names const | Max Kellermann | 2013-09-05 | 2 | -2/+2 |
| | |||||
* | Tag: move configuration code to TagConfig.cxx | Max Kellermann | 2013-09-05 | 3 | -50/+101 |
| | | | | Allow using the Tag.cxx library without the Config library. | ||||
* | Tag, ...: move to libtag.a | Max Kellermann | 2013-09-05 | 9 | -0/+1216 |
| | |||||
* | conf.h: remove obsolete header | Max Kellermann | 2013-09-05 | 1 | -2/+1 |
| | | | | | Use only ConfigData.hxx in plugin sources to reduce header dependencies. |