diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-10-23 14:25:16 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-10-23 14:25:16 +0000 |
commit | a2f328dedde101e04cd0d0ce62028b23d939062a (patch) | |
tree | 40f5268dd8e473158e6208ea0965ee2dae5a9d20 /security/steghide/files/patch-src-jpeghufftable.cc | |
parent | - Install documentation (both included text files and the manual available (diff) |
Update to 0.5.1
Notes
Notes:
svn path=/head/; revision=91962
Diffstat (limited to 'security/steghide/files/patch-src-jpeghufftable.cc')
-rw-r--r-- | security/steghide/files/patch-src-jpeghufftable.cc | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/security/steghide/files/patch-src-jpeghufftable.cc b/security/steghide/files/patch-src-jpeghufftable.cc deleted file mode 100644 index 0593a3665b2d..000000000000 --- a/security/steghide/files/patch-src-jpeghufftable.cc +++ /dev/null @@ -1,46 +0,0 @@ ---- src/jpeghufftable.cc.orig Tue May 14 07:48:06 2002 -+++ src/jpeghufftable.cc Mon Sep 23 18:39:13 2002 -@@ -22,13 +22,15 @@ - #include <limits.h> - - #include <iostream> -+#include <vector> -+#include <string> - - #include "error.h" - #include "binaryio.h" - #include "jpegbase.h" - #include "jpeghufftable.h" - --JpegHuffmanTable::JpegHuffmanTable (unsigned int lr = UINT_MAX) -+JpegHuffmanTable::JpegHuffmanTable (unsigned int lr ) - : JpegSegment (JpegElement::MarkerDHT) - { - tableclass = 0xFF ; -@@ -36,7 +38,7 @@ - lengthremaining = lr ; - } - --JpegHuffmanTable::JpegHuffmanTable (BinaryIO *io, unsigned int lr = UINT_MAX) -+JpegHuffmanTable::JpegHuffmanTable (BinaryIO *io, unsigned int lr ) - : JpegSegment (JpegElement::MarkerDHT) - { - tableclass = 0xFF ; -@@ -81,7 +83,7 @@ - return tabledestid ; - } - --void JpegHuffmanTable::reset (vector<unsigned int> b, vector<unsigned int> hv) -+void JpegHuffmanTable::reset (std::vector<unsigned int> b, std::vector<unsigned int> hv) - { - assert (b.size() == 16) ; - -@@ -236,7 +238,7 @@ - for (unsigned int l = 1 ; l <= Len_bits ; l++) { - io->write8 ((unsigned char) getBits(l)) ; - } -- vector<unsigned int>::iterator p = huffval.begin() ; -+ std::vector<unsigned int>::iterator p = huffval.begin() ; - for (unsigned int l = 1 ; l <= Len_bits ; l++) { - for (unsigned int j = 0 ; j < getBits (l) ; j++) { - io->write8 (*p) ; |