comparison data/fileio/OggVorbisFileReader.h @ 929:59e7fe1b1003 warnfix_no_size_t

Unsigned removals and warning fixes in data/
author Chris Cannam
date Tue, 17 Jun 2014 14:33:42 +0100
parents 7feec7756b41
children d03b3d956358
comparison
equal deleted inserted replaced
928:6a94bb528e9d 929:59e7fe1b1003
40 }; 40 };
41 41
42 OggVorbisFileReader(FileSource source, 42 OggVorbisFileReader(FileSource source,
43 DecodeMode decodeMode, 43 DecodeMode decodeMode,
44 CacheMode cacheMode, 44 CacheMode cacheMode,
45 size_t targetRate = 0, 45 int targetRate = 0,
46 ProgressReporter *reporter = 0); 46 ProgressReporter *reporter = 0);
47 virtual ~OggVorbisFileReader(); 47 virtual ~OggVorbisFileReader();
48 48
49 virtual QString getError() const { return m_error; } 49 virtual QString getError() const { return m_error; }
50 50
76 TagMap m_tags; 76 TagMap m_tags;
77 77
78 OGGZ *m_oggz; 78 OGGZ *m_oggz;
79 FishSound *m_fishSound; 79 FishSound *m_fishSound;
80 ProgressReporter *m_reporter; 80 ProgressReporter *m_reporter;
81 size_t m_fileSize; 81 int m_fileSize;
82 size_t m_bytesRead; 82 int m_bytesRead;
83 bool m_commentsRead; 83 bool m_commentsRead;
84 bool m_cancelled; 84 bool m_cancelled;
85 int m_completion; 85 int m_completion;
86 86
87 static int readPacket(OGGZ *, ogg_packet *, long, void *); 87 static int readPacket(OGGZ *, ogg_packet *, long, void *);