Displaying 2 results from an estimated 2 matches for "dnull".
Did you mean:
null
2001 May 08
2
libao AU driver
...audio_out.c 2001/05/06 00:13:59 1.14
+++ src/audio_out.c 2001/05/09 01:39:18
@@ -56,6 +56,7 @@
extern ao_functions_t ao_null;
extern ao_functions_t ao_wav;
extern ao_functions_t ao_raw;
+extern ao_functions_t ao_au;
driver_tree_t *driver_head = NULL;
@@ -99,6 +100,7 @@
driver_tree_t *dnull;
driver_tree_t *dwav;
driver_tree_t *draw;
+ driver_tree_t *dau;
driver_tree_t *plugin;
driver_tree_t *driver;
DIR *plugindir;
@@ -109,7 +111,7 @@
char fullpath[FILENAME_MAX];
if (driver_head == NULL) {
- /* insert the null and wav dr...
2016 Feb 18
0
Use opus-tools on Android
...opus-tools on Android to encode wav data but I couldn't build it. I need to resample my raw data so opusenc does its job. Is it possible to use opus-tools on Android? OPUS is the first citizen in my app but not sure which flags I need to add to build this.
LOCAL_CFLAGS := -w -std=gnu99 -O2 -DNULL=0 -DSOCKLEN_T=socklen_t -DLOCALE_NOT_USED -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64
LOCAL_CFLAGS += -Drestrict='' -D__EMX__ -DOPUS_BUILD -DFIXED_POINT -DUSE_ALLOCA -DHAVE_LRINT -DHAVE_LRINTF -fno-math-errno
LOCAL_CFLAGS += -DANDROID_NDK -DDISABLE_IMPORTGL -fno-strict-aliasing -fprefe...