summaryrefslogtreecommitdiff
path: root/recordmydesktop/src/rmd_cache_audio.c
diff options
context:
space:
mode:
Diffstat (limited to 'recordmydesktop/src/rmd_cache_audio.c')
-rw-r--r--recordmydesktop/src/rmd_cache_audio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/recordmydesktop/src/rmd_cache_audio.c b/recordmydesktop/src/rmd_cache_audio.c
index dc2edf3..d31b607 100644
--- a/recordmydesktop/src/rmd_cache_audio.c
+++ b/recordmydesktop/src/rmd_cache_audio.c
@@ -39,7 +39,7 @@ void *CacheSoundBuffer(ProgData *pdata){
//It's sound is tiny compared to that of image, so
//compressing would reducethe overall size by only an
//insignificant fraction.
-#ifdef HAVE_JACK_H
+#ifdef HAVE_LIBJACK
void *jackbuf=NULL;
if(pdata->args.use_jack){
jackbuf=malloc(pdata->sound_framesize*pdata->jdata->buffersize);
@@ -76,10 +76,10 @@ void *CacheSoundBuffer(ProgData *pdata){
free(buff);
}
else{
-#ifdef HAVE_JACK_H
- if((*jack_ringbuffer_read_space_p)(pdata->jdata->sound_buffer)>=
+#ifdef HAVE_LIBJACK
+ if((*jack_ringbuffer_read_space)(pdata->jdata->sound_buffer)>=
(pdata->sound_framesize*pdata->jdata->buffersize)){
- (*jack_ringbuffer_read_p)(pdata->jdata->sound_buffer,
+ (*jack_ringbuffer_read)(pdata->jdata->sound_buffer,
jackbuf,
(pdata->sound_framesize*
pdata->jdata->buffersize));
© All Rights Reserved