~ubuntu-branches/ubuntu/precise/mplayer2/precise-proposed

« back to all changes in this revision

Viewing changes to loader/module.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:59:30 UTC
  • mfrom: (5.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20120112225930-jsg10o7na7nk73w5
Tags: 2.0-426-gc32b3ed-2
* Upload to unstable
* don't build-depend on libcdparanoia-dev on the hurd

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 *
9
9
 */
10
10
 
11
 
// define for quicktime calls debugging and/or MacOS-level emulation:
12
 
#ifndef __APPLE__
13
 
#define EMU_QTX_API
14
 
#endif /* __APPLE__ */
15
 
 
16
11
// define for quicktime debugging (verbose logging):
17
12
//#define DEBUG_QTX_API
18
13
 
19
14
#include "config.h"
20
15
#include "debug.h"
21
16
 
 
17
// define for quicktime calls debugging and/or MacOS-level emulation:
 
18
#if !defined(__APPLE__) && defined(CONFIG_QTX_CODECS)
 
19
#define EMU_QTX_API
 
20
#endif /* __APPLE__ */
 
21
 
22
22
#include <assert.h>
23
23
#include <errno.h>
24
24
#include <fcntl.h>