summaryrefslogtreecommitdiffstats
path: root/tremor/synthesis.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-20 22:41:24 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-20 22:41:24 +0000
commitd653bc61382e831397acb9d974b881c474301314 (patch)
tree8af82e71f5db78eb96906ff6fb291f5f447cdb8a /tremor/synthesis.c
parent97c8a09406208eb68a12883316ee106bdea24424 (diff)
downloadmpv-d653bc61382e831397acb9d974b881c474301314.tar.bz2
mpv-d653bc61382e831397acb9d974b881c474301314.tar.xz
_vorbis_block_alloc() is used w/o prototype, this will crash on ia64.
Add a header file with the function prototype to address this issue. This has the positive side effect of fixing a couple of implicit declaration warnings. The problem was originally reported as Debian bug 447278. patch by Dann Frazier and Andrea Mennucci, mennucc1 debian org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24824 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'tremor/synthesis.c')
-rw-r--r--tremor/synthesis.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tremor/synthesis.c b/tremor/synthesis.c
index 3d9048dfc6..6b33cfbde1 100644
--- a/tremor/synthesis.c
+++ b/tremor/synthesis.c
@@ -23,6 +23,7 @@
#include "registry.h"
#include "misc.h"
#include "os.h"
+#include "block.h"
int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
vorbis_dsp_state *vd=vb->vd;