36 lines
882 B
C++
36 lines
882 B
C++
#pragma once
|
|
|
|
unsigned cuesheet_parse_index_time_ticks_e(const char * p_string,t_size p_length);
|
|
double cuesheet_parse_index_time_e(const char * p_string,t_size p_length);
|
|
|
|
class cuesheet_format_index_time
|
|
{
|
|
public:
|
|
cuesheet_format_index_time(double p_time);
|
|
inline operator const char*() const {return m_buffer;}
|
|
private:
|
|
pfc::string_formatter m_buffer;
|
|
};
|
|
|
|
|
|
struct t_cuesheet_index_list
|
|
{
|
|
enum {count = 100};
|
|
t_cuesheet_index_list() {reset();}
|
|
void reset() {for(unsigned n=0;n<count;n++) m_positions[n]=0;}
|
|
|
|
void to_infos(file_info & p_out) const;
|
|
|
|
//returns false when there was nothing relevant in infos
|
|
bool from_infos(file_info const & p_in,double p_base);
|
|
|
|
double m_positions[count];
|
|
|
|
inline double start() const {return m_positions[1];}
|
|
inline double pregap() const {return m_positions[1] - m_positions[0];}
|
|
bool is_empty() const;
|
|
|
|
bool is_valid() const;
|
|
};
|
|
|