Delete some declarations for nonexistent methods

Originally committed to SVN as r6591.
This commit is contained in:
Thomas Goyne 2012-03-20 00:39:25 +00:00
parent 75ae053958
commit ca76c5cf21
2 changed files with 0 additions and 4 deletions

View File

@ -71,8 +71,6 @@ struct AssColor {
///
/// DOCME
class AssStyle : public AssEntry {
// Parses raw ASS/SSA data into everything else
bool Parse(wxString data,int version=1);
public:
wxString name; ///< Name of the style; must be case-insensitively unique within a file despite being case-sensitive
wxString font; ///< Font face name

View File

@ -56,7 +56,6 @@ class AvisynthAudioProvider : public AudioProvider {
PClip clip;
void LoadFromClip(AVSValue clip);
void SetFile();
public:
AvisynthAudioProvider(wxString _filename);
@ -67,6 +66,5 @@ public:
bool NeedsCache() const { return true; }
void GetAudio(void *buf, int64_t start, int64_t count) const;
void GetWaveForm(int *min,int *peak,int64_t start,int w,int h,int samples,float scale);
};
#endif