Displaying 1 result from an estimated 1 matches for "get_track".
Did you mean:
get_trace
2004 Sep 10
1
mistake in FLAC++ metadata interface?
Hi all,
Using the FLAC++ level 2 metadata interface the following function
doesn't do what you would expect:
cuesheet->get_track(i).get_num_indices();
(where cuesheet is a FLAC::Metadata::CueSheet *)
It returns a bool instead of an int, why is this?
To get the mumber of indicies in a track I need to use:
cuesheet->get_track(i).get_track()->num_indices;
ie. retrieve the C struct and get it from there.
Is this a mist...