aboutsummaryrefslogtreecommitdiffstats
path: root/src/cue (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge release 0.15.9 from branch 'v0.15.x'Max Kellermann2010-03-281-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 Kellermann2010-03-171-21/+1
| | | | | | | | | | Like tag_merge(), but can deal with NULL parameters, and frees both tag objects.
* | cue_tag: added song duration supportMax Kellermann2009-12-161-2/+10
| | | | | | | | | | Get duration from track_get_length().
* | cue_tag: check cd_get_track()!=NULLMax Kellermann2009-12-161-3/+5
| |
* | cue_tag: added function cue_tag()Max Kellermann2009-12-162-17/+29
| | | | | | | | Merge code from cue_tag_file() and cue_tag_string().
* | cue_tag: merged code into cue_tag_merge()Max Kellermann2009-12-161-22/+18
| |
* | cue_tag: pass "const" string to cue_tag_string()Max Kellermann2009-12-162-2/+2
| |
* | cue_tag: changed runtime checks to assertionsMax Kellermann2009-12-161-14/+9
| | | | | | | | It's illegal to pass NULL here. This should not be ignored silently.
* | cue_tag: fixed indent and code styleMax Kellermann2009-12-162-78/+43
| |
* | cue_tag: tag_new() cannot failMax Kellermann2009-12-161-22/+10
| | | | | | | | Removed the NULL check.
* | cue_tag: include cleanupMax Kellermann2009-12-162-2/+5
| |
* | include config.h in all sourcesMax Kellermann2009-11-122-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 namesMax Kellermann2009-10-131-47/+47
|/
* Build tags from information in cue sheetsJochen Keil2009-03-312-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.