aboutsummaryrefslogtreecommitdiff
path: root/src/cue
Commit message (Collapse)AuthorAge
* song: don't use GLibMax Kellermann2013-01-08
|
* cue_parser: fix CUE files with only one trackMax Kellermann2013-01-03
| | | | | Track whether _finish() has been called, and deliver all partial results then. Fixes Mantis ticket 0003621.
* cue_parser: add code commentsMax Kellermann2013-01-03
|
* cue_parser: fix memory leakMax Kellermann2013-01-03
|
* playlist/cue: map "PERFORMER" to "artist" or "album artist"Max Kellermann2012-08-25
| | | | Implements Mantis ticket 0003549.
* cue_parser: support file types "MP3", "AIFF"Max Kellermann2012-07-26
| | | | These two strings are common "FILE" types.
* cue_parser: new line based CUE sheet parserMax Kellermann2012-02-10
| | | | To replace libcue, the unmaintained and crashy library.
* cue_tag: show CUE track numbersQball Cow2011-05-09
|
* cue: fix code styleOrivej Desh2010-04-01
|
* cue: prepend pregap to the beginning of the trackOrivej Desh2010-03-28
| | | | | | | | | | | | | | | | | | | | | | | .. 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 Kellermann2010-03-28
|\ | | | | | | | | | | | | | | | | 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 Kellermann2010-03-17
| | | | | | | | | | Like tag_merge(), but can deal with NULL parameters, and frees both tag objects.
* | cue_tag: added song duration supportMax Kellermann2009-12-16
| | | | | | | | | | Get duration from track_get_length().
* | cue_tag: check cd_get_track()!=NULLMax Kellermann2009-12-16
| |
* | cue_tag: added function cue_tag()Max Kellermann2009-12-16
| | | | | | | | Merge code from cue_tag_file() and cue_tag_string().
* | cue_tag: merged code into cue_tag_merge()Max Kellermann2009-12-16
| |
* | cue_tag: pass "const" string to cue_tag_string()Max Kellermann2009-12-16
| |
* | cue_tag: changed runtime checks to assertionsMax Kellermann2009-12-16
| | | | | | | | It's illegal to pass NULL here. This should not be ignored silently.
* | cue_tag: fixed indent and code styleMax Kellermann2009-12-16
| |
* | cue_tag: tag_new() cannot failMax Kellermann2009-12-16
| | | | | | | | Removed the NULL check.
* | cue_tag: include cleanupMax Kellermann2009-12-16
| |
* | 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
|/
* Build tags from information in cue sheetsJochen Keil2009-03-31
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.