mirror of
https://github.com/mpv-player/mpv
synced 2025-01-30 03:32:50 +00:00
loader/module.c: Fix compilation with --disable-qtx
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33756 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
860e66818b
commit
d68a606fd6
@ -8,17 +8,17 @@
|
||||
*
|
||||
*/
|
||||
|
||||
// define for quicktime calls debugging and/or MacOS-level emulation:
|
||||
#ifndef __APPLE__
|
||||
#define EMU_QTX_API
|
||||
#endif /* __APPLE__ */
|
||||
|
||||
// define for quicktime debugging (verbose logging):
|
||||
//#define DEBUG_QTX_API
|
||||
|
||||
#include "config.h"
|
||||
#include "debug.h"
|
||||
|
||||
// define for quicktime calls debugging and/or MacOS-level emulation:
|
||||
#if !defined(__APPLE__) && defined(CONFIG_QTX_CODECS)
|
||||
#define EMU_QTX_API
|
||||
#endif /* __APPLE__ */
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
|
Loading…
Reference in New Issue
Block a user