#include "libfreenect.h"
#include "libfreenect_audio.h"
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <pthread.h>
#include <GL/glut.h>
Go to the source code of this file.
|
void | DrawMicData () |
|
void * | freenect_threadfunc (void *arg) |
|
void | in_callback (freenect_device *dev, int num_samples, int32_t *mic1, int32_t *mic2, int32_t *mic3, int32_t *mic4, int16_t *cancelled, void *unknown) |
|
void | Keyboard (unsigned char key, int x, int y) |
|
int | main (int argc, char **argv) |
|
void | Reshape (int w, int h) |
|
void* freenect_threadfunc |
( |
void * |
arg | ) |
|
void Keyboard |
( |
unsigned char |
key, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
void Reshape |
( |
int |
w, |
|
|
int |
h |
|
) |
| |
pthread_cond_t audiobuf_cond = PTHREAD_COND_INITIALIZER |
pthread_mutex_t audiobuf_mutex = PTHREAD_MUTEX_INITIALIZER |
pthread_t freenect_thread |