summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/coreaudiosource.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-08-10 03:04:13 +0000
committerDavid Robillard <d@drobilla.net>2006-08-10 03:04:13 +0000
commitd4dd338beb813bcfe7470729cf6611aeea55cfa4 (patch)
tree7334c3f5811bcf1976c1687d346d64603232732b /libs/ardour/ardour/coreaudiosource.h
parentae95684d225bb5725211656859e3d801045e05f3 (diff)
- Fixed a buffer size bug when ~/.ardour2 doesn't exist (can't load configuration), if in a hacky way
- Removed useless workbuf/conversion_buffers (same thing), uneeded with libsndfile git-svn-id: svn://localhost/ardour2/trunk@781 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/coreaudiosource.h')
-rw-r--r--libs/ardour/ardour/coreaudiosource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/coreaudiosource.h b/libs/ardour/ardour/coreaudiosource.h
index ba9f122fc9..cf25c466ee 100644
--- a/libs/ardour/ardour/coreaudiosource.h
+++ b/libs/ardour/ardour/coreaudiosource.h
@@ -38,9 +38,9 @@ class CoreAudioSource : public AudioFileSource {
void set_header_timeline_position () {};
protected:
- jack_nframes_t read_unlocked (Sample *dst, jack_nframes_t start, jack_nframes_t cnt, char * workbuf) const;
+ jack_nframes_t read_unlocked (Sample *dst, jack_nframes_t start, jack_nframes_t cnt) const;
- jack_nframes_t write_unlocked (Sample *dst, jack_nframes_t cnt, char * workbuf)
+ jack_nframes_t write_unlocked (Sample *dst, jack_nframes_t cnt)
{ return 0; }