Removed redundent ImageStream.h

This commit is contained in:
Robert Osfield
2004-03-09 14:00:01 +00:00
parent 8b47c9c85d
commit 6bd23304f9
3 changed files with 2 additions and 74 deletions

View File

@@ -176,7 +176,7 @@ void MpegImageStream::load(const char* fileName)
_rows = (unsigned char**) ::malloc(t * sizeof(unsigned char*));
unsigned char* dp = data;
for (int i = 0; i < t; i++) {
_rows[i] = dp;
_rows[t-i-1] = dp;
dp += (s * 3);
}