0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

fix ai_oss.c compilation on non linux systems - by Bernd Ernesti <mplayer@lists.veego.de>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7067 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
jaf 2002-08-22 08:05:27 +00:00
parent e4063b8ad2
commit ffc97efcb7

View File

@ -1,7 +1,16 @@
#include "config.h"
#ifdef HAVE_SYS_SOUNDCARD_H
#include <sys/soundcard.h>
#else
#ifdef HAVE_SOUNDCARD_H
#include <soundcard.h>
#else
#include <linux/soundcard.h>
#endif
#endif
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>
#include "audio_in.h"
#include "mp_msg.h"