summaryrefslogtreecommitdiffstats
path: root/ext/esd
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-04-26 17:37:10 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-04-26 17:37:10 +0000
commitda6b539bbe9e612247c0105ed181b9e22dc06cc0 (patch)
treea7e4e98539b2aa958a0e83c872d7a525ecb09266 /ext/esd
parent5056bb87ab3f1207c967cf90d3def90573798a54 (diff)
ext/esd/esdsink.c: Fix compile problem by defining ESD_MAX_WRITE_SIZE if it is not in esd.h
Original commit message from CVS: * ext/esd/esdsink.c: Fix compile problem by defining ESD_MAX_WRITE_SIZE if it is not in esd.h
Diffstat (limited to 'ext/esd')
-rw-r--r--ext/esd/esdsink.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c
index 995f1107..7af5033a 100644
--- a/ext/esd/esdsink.c
+++ b/ext/esd/esdsink.c
@@ -33,6 +33,11 @@
#include <gst/gst-i18n-plugin.h>
+/* wtay: from my esd.h (debian unstable libesd0-dev 0.2.36-3) */
+#ifndef ESD_MAX_WRITE_SIZE
+#define ESD_MAX_WRITE_SIZE (21 * 4096)
+#endif
+
GST_DEBUG_CATEGORY_EXTERN (esd_debug);
#define GST_CAT_DEFAULT esd_debug