X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswfsound.c;fp=lib%2Fmodules%2Fswfsound.c;h=a7ca0e1539068015180e5b20b8cc5bb1460fe5bb;hb=133453cc112df7e7d5ce35f3dde5178303154da5;hp=7032b0202a832525f8cfc5b4733e66b274b895bc;hpb=cfde3bddd44142b4582624dac65f0602cab8e899;p=swftools.git diff --git a/lib/modules/swfsound.c b/lib/modules/swfsound.c index 7032b02..a7ca0e1 100644 --- a/lib/modules/swfsound.c +++ b/lib/modules/swfsound.c @@ -21,12 +21,13 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef RFXSWF_DISABLESOUND +#ifndef NO_MP3 #include "../rfxswf.h" #ifdef BLADEENC -fjokjklj +#define HAVE_SOUND + CodecInitOut * init = 0; void swf_SetSoundStreamHead(TAG*tag, U16 avgnumsamples) { @@ -76,17 +77,18 @@ void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int numsamples, char first) } #endif +/* TODO: find a better way to set these from the outside */ -#ifdef LAME - -#include "../lame/lame.h" - -/* TODO: find a way to set these from the outside */ int swf_mp3_in_samplerate = 44100; int swf_mp3_out_samplerate = 11025; int swf_mp3_channels = 1; int swf_mp3_bitrate = 32; +#ifdef HAVE_LAME +#define HAVE_SOUND + +#include "../lame/lame.h" + static lame_global_flags*lame_flags; static void initlame() @@ -237,6 +239,37 @@ void swf_SetSoundDefine(TAG*tag, S16*samples, int num) free(buf); } +#endif + +#endif + +#ifndef HAVE_SOUND + +// supply stubs + +void swf_SetSoundStreamHead(TAG*tag, int avgnumsamples) +{ + fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); +} +void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int seek, char first) +{ + fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); +} +void swf_SetSoundStreamEnd(TAG*tag) +{ + fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); +} +void swf_SetSoundDefineRaw(TAG*tag, S16*samples, int num, int samplerate) +{ + fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); +} +void swf_SetSoundDefine(TAG*tag, S16*samples, int num) +{ + fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); +} + +#endif + #define SOUNDINFO_STOP 32 #define SOUNDINFO_NOMULTIPLE 16 #define SOUNDINFO_HASENVELOPE 8 @@ -244,6 +277,7 @@ void swf_SetSoundDefine(TAG*tag, S16*samples, int num) #define SOUNDINFO_HASOUTPOINT 2 #define SOUNDINFO_HASINPOINT 1 + void swf_SetSoundInfo(TAG*tag, SOUNDINFO*info) { U8 flags = (info->stop?SOUNDINFO_STOP:0) @@ -270,6 +304,4 @@ void swf_SetSoundInfo(TAG*tag, SOUNDINFO*info) } } -#endif -#endif // RFXSWF_DISABLESOUND