Commit df6eca67 authored by Gildas Bazin's avatar Gildas Bazin

* modules/audio_output/waveout.c: increase the audio buffer size under WinCE.

parent d4164c23
......@@ -34,7 +34,11 @@
#include <windows.h>
#include <mmsystem.h>
#define FRAME_SIZE 1024 /* The size is in samples, not in bytes */
#ifdef UNDER_CE
# define FRAME_SIZE 4096 /* The size is in samples, not in bytes */
#else
# define FRAME_SIZE 1024 /* The size is in samples, not in bytes */
#endif
#define FRAMES_NUM 8
/*****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment