mirror of
https://github.com/mpv-player/mpv
synced 2025-02-16 20:27:23 +00: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:
parent
e4063b8ad2
commit
ffc97efcb7
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user