diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2006-12-14 19:31:41 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2006-12-14 19:31:41 +0000 |
commit | fa2720effd5e8aa73a4f4038a2279b37aa9a26d7 (patch) | |
tree | fc6c3c1b1f0123fcb678c07fb46f1cdfac2c9df5 /security/steghide | |
parent | 95d8e88a0802a7bf2f4287685df4014cad974879 (diff) | |
download | ports-fa2720effd5e8aa73a4f4038a2279b37aa9a26d7.tar.gz ports-fa2720effd5e8aa73a4f4038a2279b37aa9a26d7.zip |
Notes
Diffstat (limited to 'security/steghide')
-rw-r--r-- | security/steghide/files/patch-src-AuData.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/security/steghide/files/patch-src-AuData.h b/security/steghide/files/patch-src-AuData.h new file mode 100644 index 000000000000..7b0382af2bc2 --- /dev/null +++ b/security/steghide/files/patch-src-AuData.h @@ -0,0 +1,34 @@ +diff -ur steghide-0.5.1-orig/src/AuData.h steghide-0.5.1/src/AuData.h +--- steghide-0.5.1-orig/src/AuData.h 2006-03-10 02:17:19.000000000 -0500 ++++ src/AuData.h 2006-03-10 02:19:01.000000000 -0500 +@@ -26,22 +26,30 @@ + + // AuMuLawAudioData + typedef AudioDataImpl<AuMuLaw,BYTE> AuMuLawAudioData ; ++template<> + inline BYTE AuMuLawAudioData::readValue (BinaryIO* io) const { return (io->read8()) ; } ++template<> + inline void AuMuLawAudioData::writeValue (BinaryIO* io, BYTE v) const { io->write8(v) ; } + + // AuPCM8AudioData + typedef AudioDataImpl<AuPCM8,SBYTE> AuPCM8AudioData ; ++template<> + inline SBYTE AuPCM8AudioData::readValue (BinaryIO* io) const { return ((SBYTE) io->read8()) ; } ++template<> + inline void AuPCM8AudioData::writeValue (BinaryIO* io, SBYTE v) const { io->write8((BYTE) v) ; } + + // AuPCM16AudioData + typedef AudioDataImpl<AuPCM16,SWORD16> AuPCM16AudioData ; ++template<> + inline SWORD16 AuPCM16AudioData::readValue (BinaryIO* io) const { return ((SWORD16) io->read16_be()) ; } ++template<> + inline void AuPCM16AudioData::writeValue (BinaryIO* io, SWORD16 v) const { io->write16_be((UWORD16) v) ; } + + // AuPCM32AudioData + typedef AudioDataImpl<AuPCM32,SWORD32> AuPCM32AudioData ; ++template<> + inline SWORD32 AuPCM32AudioData::readValue (BinaryIO* io) const { return ((SWORD32) io->read32_be()) ; } ++template<> + inline void AuPCM32AudioData::writeValue (BinaryIO* io, SWORD32 v) const { io->write32_be((UWORD32) v) ; } + + #endif // ndef SH_AUDATA_H |