Commit 68fc3704 authored by Max Kellermann's avatar Max Kellermann

CueParser: rename "tag" to "header_tag"

parent 69867015
......@@ -31,7 +31,7 @@
#include <stdlib.h>
CueParser::CueParser()
:state(HEADER), tag(new Tag()),
:state(HEADER), header_tag(new Tag()),
current(nullptr),
previous(nullptr),
finished(nullptr),
......@@ -39,7 +39,7 @@ CueParser::CueParser()
CueParser::~CueParser()
{
delete tag;
delete header_tag;
if (current != nullptr)
current->Free();
......@@ -133,7 +133,7 @@ Tag *
CueParser::GetCurrentTag()
{
if (state == HEADER)
return tag;
return header_tag;
else if (state == TRACK)
return current->tag;
else
......@@ -207,7 +207,7 @@ CueParser::Feed2(char *p)
cue_add_tag(*current_tag, type, p);
} else if (strcmp(command, "TITLE") == 0) {
if (state == HEADER)
cue_add_tag(*tag, TAG_ALBUM, p);
cue_add_tag(*header_tag, TAG_ALBUM, p);
else if (state == TRACK)
cue_add_tag(*current->tag, TAG_TITLE, p);
} else if (strcmp(command, "FILE") == 0) {
......@@ -251,7 +251,7 @@ CueParser::Feed2(char *p)
state = TRACK;
current = Song::NewRemote(filename.c_str());
assert(current->tag == nullptr);
current->tag = new Tag(*tag);
current->tag = new Tag(*header_tag);
current->tag->AddItem(TAG_TRACK, nr);
last_updated = false;
} else if (state == IGNORE_TRACK) {
......
......@@ -56,7 +56,10 @@ class CueParser {
IGNORE_TRACK,
} state;
Tag *tag;
/**
* Tags read from the CUE header.
*/
Tag *header_tag;
std::string filename;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment