diff options
author | Måns Rullgård <mans@mansr.com> | 2007-02-10 22:25:52 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-02-10 22:25:52 +0000 |
commit | 74476a3a98fdf63c84be092ea3cc7bed760c319c (patch) | |
tree | 276764173700e1355e852a2c97501fc219f203a7 | |
parent | deb29777361c439ce419849dc6faa1d0d597f1e2 (diff) | |
download | ffmpeg-74476a3a98fdf63c84be092ea3cc7bed760c319c.tar.gz |
#include detected soundcard.h instead of testing for OpenBSD
Originally committed as revision 7912 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/audio.c b/libavformat/audio.c index 1dfccccb8c..faa0a8b546 100644 --- a/libavformat/audio.c +++ b/libavformat/audio.c @@ -23,7 +23,7 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> -#ifdef __OpenBSD__ +#ifdef HAVE_SOUNDCARD_H #include <soundcard.h> #else #include <sys/soundcard.h> |