summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/libpostproc/mangle.h
diff options
context:
space:
mode:
authorJames Stembridge <jstembridge@users.sourceforge.net>2003-03-14 12:14:10 +0000
committerJames Stembridge <jstembridge@users.sourceforge.net>2003-03-14 12:14:10 +0000
commit0c6fa1fca2cefd7a42fefb4c36c31780dabc1944 (patch)
tree7a29e20b64f77fbe95699d48a69d3af875b2e324 /src/libffmpeg/libavcodec/libpostproc/mangle.h
parentb23196053b887778d120d4330cdae4aae6c57c7d (diff)
downloadxine-lib-0c6fa1fca2cefd7a42fefb4c36c31780dabc1944.tar.gz
xine-lib-0c6fa1fca2cefd7a42fefb4c36c31780dabc1944.tar.bz2
Import post processing code from ffmpeg
CVS patchset: 4405 CVS date: 2003/03/14 12:14:10
Diffstat (limited to 'src/libffmpeg/libavcodec/libpostproc/mangle.h')
-rw-r--r--src/libffmpeg/libavcodec/libpostproc/mangle.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/libpostproc/mangle.h b/src/libffmpeg/libavcodec/libpostproc/mangle.h
new file mode 100644
index 000000000..5f5dc4849
--- /dev/null
+++ b/src/libffmpeg/libavcodec/libpostproc/mangle.h
@@ -0,0 +1,19 @@
+/* mangle.h - This file has some CPP macros to deal with different symbol
+ * mangling across binary formats.
+ * (c)2002 by Felix Buenemann <atmosfear at users.sourceforge.net>
+ * File licensed under the GPL, see http://www.fsf.org/ for more info.
+ */
+
+#ifndef __MANGLE_H
+#define __MANGLE_H
+
+/* Feel free to add more to the list, eg. a.out IMO */
+#if defined(__CYGWIN__) || defined(__OS2__) || \
+ (defined(__OpenBSD__) && !defined(__ELF__))
+#define MANGLE(a) "_" #a
+#else
+#define MANGLE(a) #a
+#endif
+
+#endif /* !__MANGLE_H */
+