aboutsummaryrefslogtreecommitdiff
path: root/plugins/dfsound/out.h
diff options
context:
space:
mode:
authorneonloop2021-03-14 18:54:30 +0000
committerneonloop2021-03-14 19:28:36 +0000
commitcc67e49563096e4367881e8bbe4554f1a7d21595 (patch)
tree393883d80d2b417d67a4fb2150dbd37392017802 /plugins/dfsound/out.h
parent34c62fb129becec9e61a48227d9ed89867cdd470 (diff)
downloadpcsx_rearmed-cc67e49563096e4367881e8bbe4554f1a7d21595.tar.gz
pcsx_rearmed-cc67e49563096e4367881e8bbe4554f1a7d21595.tar.bz2
pcsx_rearmed-cc67e49563096e4367881e8bbe4554f1a7d21595.zip
Adds frameskip based on free audio buffer space
Diffstat (limited to 'plugins/dfsound/out.h')
-rw-r--r--plugins/dfsound/out.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/dfsound/out.h b/plugins/dfsound/out.h
index e4878a8..2dcd226 100644
--- a/plugins/dfsound/out.h
+++ b/plugins/dfsound/out.h
@@ -7,6 +7,7 @@ struct out_driver {
void (*finish)(void);
int (*busy)(void);
void (*feed)(void *data, int bytes);
+ float (*capacity)(void);
};
extern struct out_driver *out_current;