comparison data/fileio/MP3FileReader.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 c324d410b096
children aa8dbac62024
comparison
equal deleted inserted replaced
332:13e5870040e6 333:1afaf98dbf11
59 protected: 59 protected:
60 FileSource m_source; 60 FileSource m_source;
61 QString m_path; 61 QString m_path;
62 QString m_error; 62 QString m_error;
63 QString m_title; 63 QString m_title;
64 QString m_maker;
64 size_t m_fileSize; 65 size_t m_fileSize;
65 double m_bitrateNum; 66 double m_bitrateNum;
66 size_t m_bitrateDenom; 67 size_t m_bitrateDenom;
67 int m_completion; 68 int m_completion;
68 bool m_done; 69 bool m_done;
99 }; 100 };
100 101
101 DecodeThread *m_decodeThread; 102 DecodeThread *m_decodeThread;
102 103
103 void loadTags(); 104 void loadTags();
105 QString loadTag(void *vtag, const char *name);
104 }; 106 };
105 107
106 #endif 108 #endif
107 109
108 #endif 110 #endif