comparison data/fileio/AudioFileReader.h @ 333:1afaf98dbf11

* Factor out uses of "Sonic Visualiser" in "common" code to applicationName() * Add ability to show work title + artist in top-left of pane (thinking of Vect but may be useful in SV in future) * A few other generalisations useful for Vect
author Chris Cannam
date Fri, 09 Nov 2007 17:46:58 +0000
parents 1d656dcda8ef
children 700cd3350391
comparison
equal deleted inserted replaced
332:13e5870040e6 333:1afaf98dbf11
45 * may be implemented by subclasses that support file tagging. 45 * may be implemented by subclasses that support file tagging.
46 * This is not the same thing as the file name. 46 * This is not the same thing as the file name.
47 */ 47 */
48 virtual QString getTitle() const { return ""; } 48 virtual QString getTitle() const { return ""; }
49 49
50 /**
51 * Return the "maker" of the work in the audio file, if known.
52 * This could represent almost anything (band, composer,
53 * conductor, artist etc).
54 */
55 virtual QString getMaker() const { return ""; }
56
50 /** 57 /**
51 * Return interleaved samples for count frames from index start. 58 * Return interleaved samples for count frames from index start.
52 * The resulting sample block will contain count * 59 * The resulting sample block will contain count *
53 * getChannelCount() samples (or fewer if end of file is reached). 60 * getChannelCount() samples (or fewer if end of file is reached).
54 * 61 *