pkgsrc/multimedia/libmp4v2/patches/patch-af
drochner 70986b479c split out the libmp4v2 part from mpeg4ip -- all users in the pkgsrc
tree just need that library, the player in mpeg4ip just causes an unwanted
dependency on SDL and complications due to plugin building
2007-02-09 19:57:48 +00:00

19 lines
557 B
Text

$NetBSD: patch-af,v 1.1.1.1 2007/02/09 19:57:48 drochner Exp $
gcc4 does not like "static" external function declarations.
--- lib/SDLAudio/src/audio/sun/SDL_sunaudio.c.orig 2004-02-24 21:36:07.000000000 +0100
+++ lib/SDLAudio/src/audio/sun/SDL_sunaudio.c 2006-06-16 09:16:42.000000000 +0200
@@ -163,9 +163,11 @@ void DSP_WaitAudio(_THIS)
#endif
}
+static Uint8 snd2au(int sample);
+
void DSP_PlayAudio(_THIS)
{
- static Uint8 snd2au(int sample);
+
/* Write the audio data */
if ( ulaw_only ) {
/* Assuming that this->spec.freq >= 8000 Hz */