git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54f12d1
)
New compile option: RFXSWF_DISABLESOUND
author
boehme
<boehme>
Tue, 9 Apr 2002 15:27:21 +0000
(15:27 +0000)
committer
boehme
<boehme>
Tue, 9 Apr 2002 15:27:21 +0000
(15:27 +0000)
(if you don't need bladeenc and want to keep binaries small)
lib/modules/swfsound.c
patch
|
blob
|
history
lib/rfxswf.h
patch
|
blob
|
history
diff --git
a/lib/modules/swfsound.c
b/lib/modules/swfsound.c
index
ba5e935
..
5f08150
100644
(file)
--- a/
lib/modules/swfsound.c
+++ b/
lib/modules/swfsound.c
@@
-11,6
+11,8
@@
*/
+#ifndef RFXSWF_DISABLESOUND
+
#include "../rfxswf.h"
CodecInitOut * init = 0;
@@
-62,3
+64,4
@@
void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int numsamples, char first)
free(buf);
}
+#endif // RFXSWF_DISABLESOUND
diff --git
a/lib/rfxswf.h
b/lib/rfxswf.h
index
41f2770
..
594cd3b
100644
(file)
--- a/
lib/rfxswf.h
+++ b/
lib/rfxswf.h
@@
-588,10
+588,14
@@
int swf_SetLosslessBits(TAG * t,U16 width,U16 height,void * bitmap,U8 bitmap_fla
int swf_SetLosslessBitsIndexed(TAG * t,U16 width,U16 height,U8 * bitmap,RGBA * palette,U16 ncolors);
int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap);
+#ifndef RFXSWF_DISABLESOUND
+
// swfsound.c
void swf_SetSoundStreamHead(TAG*tag, U16 avgnumsamples);
void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int numsamples, char first);
+#endif // RFXSWF_DISABLESOUND
+
// swftools.c
U8 swf_isDefiningTag(TAG * t);