Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | CueParser: don't "move" the filename | Max Kellermann | 2014-01-26 | 1 | -1/+1 |
| | | | | | This invalidated the std::string instance, and thus broke the CUE parser (commit 322b061632). | ||||
* | copyright year 2014 | Max Kellermann | 2014-01-13 | 2 | -2/+2 |
| | |||||
* | DetachedSong: fork of struct Song | Max Kellermann | 2014-01-09 | 2 | -25/+20 |
| | | | | | | From now on, struct Song will be used by the database only, and DetachedSong will be used by everybody else. DetachedSong is easier to use, but Song has lower overhead. | ||||
* | tag/TagBuilder: rename Commit() to CommitNew() | Max Kellermann | 2014-01-08 | 1 | -1/+1 |
| | |||||
* | util/Alloc: new library replacing GLib's g_malloc() | Max Kellermann | 2014-01-07 | 1 | -4/+3 |
| | |||||
* | CueParser: use class TagBuilder | Max Kellermann | 2013-12-03 | 2 | -16/+27 |
| | |||||
* | CueParser: rename local variables "current_tag" to "tag" | Max Kellermann | 2013-12-03 | 1 | -6/+6 |
| | |||||
* | CueParser: rename "tag" to "header_tag" | Max Kellermann | 2013-12-03 | 2 | -6/+9 |
| | |||||
* | TagType: rename enum tag_type to TagType | Max Kellermann | 2013-10-20 | 1 | -3/+3 |
| | |||||
* | Util/CharUtil: new library replacing g_ascii_isX() | Max Kellermann | 2013-10-19 | 1 | -2/+3 |
| | |||||
* | CueParser: use std::string | Max Kellermann | 2013-10-17 | 2 | -6/+5 |
| | |||||
* | gcc.h: rename to Compiler.h | Max Kellermann | 2013-10-15 | 1 | -1/+1 |
| | |||||
* | Tag, ...: move to libtag.a | Max Kellermann | 2013-09-05 | 1 | -1/+1 |
| | |||||
* | tag: convert to C++ | Max Kellermann | 2013-07-30 | 2 | -17/+19 |
| | |||||
* | song: convert header to C++ | Max Kellermann | 2013-07-28 | 2 | -11/+13 |
| | |||||
* | string_util: convert to C++ | Max Kellermann | 2013-04-09 | 1 | -1/+1 |
| | |||||
* | cue_parser: convert to C++ | Max Kellermann | 2013-04-09 | 4 | -461/+450 |
| | |||||
* | song: don't use GLib | Max Kellermann | 2013-01-08 | 1 | -0/+2 |
| | |||||
* | cue_parser: fix CUE files with only one track | Max Kellermann | 2013-01-03 | 1 | -7/+47 |
| | | | | | Track whether _finish() has been called, and deliver all partial results then. Fixes Mantis ticket 0003621. | ||||
* | cue_parser: add code comments | Max Kellermann | 2013-01-03 | 1 | -2/+21 |
| | |||||
* | cue_parser: fix memory leak | Max Kellermann | 2013-01-03 | 1 | -0/+3 |
| | |||||
* | playlist/cue: map "PERFORMER" to "artist" or "album artist" | Max Kellermann | 2012-08-25 | 1 | -1/+11 |
| | | | | Implements Mantis ticket 0003549. | ||||
* | cue_parser: support file types "MP3", "AIFF" | Max Kellermann | 2012-07-26 | 1 | -1/+3 |
| | | | | These two strings are common "FILE" types. | ||||
* | cue_parser: new line based CUE sheet parser | Max Kellermann | 2012-02-10 | 4 | -267/+385 |
| | | | | To replace libcue, the unmaintained and crashy library. | ||||
* | cue_tag: show CUE track numbers | Qball Cow | 2011-05-09 | 1 | -0/+9 |
| | |||||
* | cue: fix code style | Orivej Desh | 2010-04-01 | 1 | -5/+5 |
| | |||||
* | cue: prepend pregap to the beginning of the track | Orivej Desh | 2010-03-28 | 1 | -2/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | .. rather then append to the end of the previous one Cuebreakpoints from the cuetools package has three modes of operation, and the default is to append pregap (INDEX 00) to the end of the previous track. This is the behavior most compliant to the existing cue files. Here is the patch which fixes the issue. I borrowed bits of implementation from cuebreakpoints. I assumed that the whole audio file must be covered by head-to-head going tracks, which is how hardware CD players probably work. In cue_tag I changed rounding from rounding up to rounding down because the thing in mpd which calculates actual track duration (and current position) rounds it down, and I didn't want to see in my playlist values different from whose in a now-playing progress bar. I've compared the resultant mpd behaviour with "mplayer -ss MM:SS.MS" where the time was supplied by cuebreakpoints and noticed that mplayer started each track a bit earlier then mpd, though this was the same before the patch. | ||||
* | Merge release 0.15.9 from branch 'v0.15.x' | Max Kellermann | 2010-03-28 | 1 | -17/+1 |
|\ | | | | | | | | | | | | | | | | | Conflicts: NEWS configure.ac src/cue/cue_tag.c src/decoder/mpcdec_decoder_plugin.c src/player_thread.c | ||||
| * | tag: added function tag_merge_replace() | Max Kellermann | 2010-03-17 | 1 | -21/+1 |
| | | | | | | | | | | Like tag_merge(), but can deal with NULL parameters, and frees both tag objects. | ||||
* | | cue_tag: added song duration support | Max Kellermann | 2009-12-16 | 1 | -2/+10 |
| | | | | | | | | | | Get duration from track_get_length(). | ||||
* | | cue_tag: check cd_get_track()!=NULL | Max Kellermann | 2009-12-16 | 1 | -3/+5 |
| | | |||||
* | | cue_tag: added function cue_tag() | Max Kellermann | 2009-12-16 | 2 | -17/+29 |
| | | | | | | | | Merge code from cue_tag_file() and cue_tag_string(). | ||||
* | | cue_tag: merged code into cue_tag_merge() | Max Kellermann | 2009-12-16 | 1 | -22/+18 |
| | | |||||
* | | cue_tag: pass "const" string to cue_tag_string() | Max Kellermann | 2009-12-16 | 2 | -2/+2 |
| | | |||||
* | | cue_tag: changed runtime checks to assertions | Max Kellermann | 2009-12-16 | 1 | -14/+9 |
| | | | | | | | | It's illegal to pass NULL here. This should not be ignored silently. | ||||
* | | cue_tag: fixed indent and code style | Max Kellermann | 2009-12-16 | 2 | -78/+43 |
| | | |||||
* | | cue_tag: tag_new() cannot fail | Max Kellermann | 2009-12-16 | 1 | -22/+10 |
| | | | | | | | | Removed the NULL check. | ||||
* | | cue_tag: include cleanup | Max Kellermann | 2009-12-16 | 2 | -2/+5 |
| | | |||||
* | | include config.h in all sources | Max Kellermann | 2009-11-12 | 2 | -2/+4 |
| | | | | | | | | | | | | 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 names | Max Kellermann | 2009-10-13 | 1 | -47/+47 |
|/ | |||||
* | Build tags from information in cue sheets | Jochen Keil | 2009-03-31 | 2 | -0/+296 |
With these methods a tag struct can be created from the cdtext information in a cue sheet. The methods depend on a cue parsing library. Reading from strings (char*) as well as from a file (FILE*) is supported. |