Skip to content
Snippets Groups Projects
Commit 730c69fa authored by Jack Moffitt's avatar Jack Moffitt
Browse files

let's back that change out since I'm an idiot.

you can do this without that api change


git-svn-id: http://svn.xiph.org/trunk/ao@1329 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent 41bf7d8d
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ AM_DISABLE_STATIC
dnl Library versioning
LIB_CURRENT=1
LIB_REVISION=0
LIB_AGE=1
LIB_AGE=0
AC_SUBST(LIB_CURRENT)
AC_SUBST(LIB_REVISION)
AC_SUBST(LIB_AGE)
......
......@@ -95,7 +95,6 @@ void ao_play(ao_device_t *device, void* output_samples, uint_32 num_bytes);
void ao_close(ao_device_t *device);
/* misc functions */
int ao_get_driver_count(void);
int ao_is_big_endian(void);
#ifdef __cplusplus
......
......@@ -318,17 +318,3 @@ int ao_is_big_endian(void)
if (bytewise[0] == 0xba) return 1;
return 0;
}
int ao_get_driver_count(void)
{
int i = 0;
driver_tree_t *driver = driver_head;
while (driver) {
i++;
driver = driver->next;
}
return i;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment