ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
avi_decoder.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef VIDEO_AVI_DECODER_H
23 #define VIDEO_AVI_DECODER_H
24 
25 #include "common/array.h"
26 #include "common/rational.h"
27 #include "common/rect.h"
28 #include "common/str.h"
29 #include "graphics/palette.h"
30 
31 #include "video/video_decoder.h"
32 #include "audio/mixer.h"
33 
34 namespace Audio {
35 class AudioStream;
36 class PacketizedAudioStream;
37 }
38 
39 namespace Common {
40 class SeekableReadStream;
41 }
42 
43 namespace Graphics {
44 struct PixelFormat;
45 }
46 
47 namespace Image {
48 class Codec;
49 }
50 
51 namespace Video {
52 
65 class AVIDecoder : public VideoDecoder {
66 public:
67  AVIDecoder();
68  AVIDecoder(const Common::Rational &frameRateOverride);
69  virtual ~AVIDecoder();
70 
71  bool loadStream(Common::SeekableReadStream *stream);
72  void close();
73  uint16 getWidth() const { return _header.width; }
74  uint16 getHeight() const { return _header.height; }
75 
76  bool rewind();
77  bool isRewindable() const { return true; }
78  bool isSeekable() const;
79 
95  virtual const Graphics::Surface *decodeNextFrame();
96 
100  const Graphics::Surface *decodeNextTransparency();
101 protected:
102  // VideoDecoder API
103  void readNextPacket();
104  bool seekIntern(const Audio::Timestamp &time);
105  bool supportsAudioTrackSwitching() const { return true; }
106  AudioTrack *getAudioTrack(int index);
107 
116  void addTrack(Track *track, bool isExternal = false);
117 
119  uint32 size;
120  uint32 width;
121  uint32 height;
122  uint16 planes;
123  uint16 bitCount;
124  uint32 compression;
125  uint32 sizeImage;
126  uint32 xPelsPerMeter;
127  uint32 yPelsPerMeter;
128  uint32 clrUsed;
129  uint32 clrImportant;
130  };
131 
132  struct WaveFormat {
133  uint16 tag;
134  uint16 channels;
135  uint32 samplesPerSec;
136  uint32 avgBytesPerSec;
137  uint16 blockAlign;
138  };
139 
140  struct PCMWaveFormat : public WaveFormat {
141  uint16 size;
142  };
143 
144  struct WaveFormatEX : public WaveFormat {
145  uint16 bitsPerSample;
146  uint16 size;
147  };
148 
149  struct OldIndex {
150  uint32 id;
151  uint32 flags;
152  uint32 offset;
153  uint32 size;
154  };
155 
156  // Index Flags
157  enum IndexFlags {
158  AVIIF_INDEX = 0x10
159  };
160 
161  struct AVIHeader {
162  uint32 size;
163  uint32 microSecondsPerFrame;
164  uint32 maxBytesPerSecond;
165  uint32 padding;
166  uint32 flags;
167  uint32 totalFrames;
168  uint32 initialFrames;
169  uint32 streams;
170  uint32 bufferSize;
171  uint32 width;
172  uint32 height;
173  };
174 
175  // Flags from the AVIHeader
176  enum AVIFlags {
177  AVIF_HASINDEX = 0x00000010,
178  AVIF_MUSTUSEINDEX = 0x00000020,
179  AVIF_ISINTERLEAVED = 0x00000100,
180  AVIF_TRUSTCKTYPE = 0x00000800,
181  AVIF_WASCAPTUREFILE = 0x00010000,
182  AVIF_WASCOPYRIGHTED = 0x00020000
183  };
184 
186  uint32 size;
187  uint32 streamType;
188  uint32 streamHandler;
189  uint32 flags;
190  uint16 priority;
191  uint16 language;
192  uint32 initialFrames;
193  uint32 scale;
194  uint32 rate;
195  uint32 start;
196  uint32 length;
197  uint32 bufferSize;
198  uint32 quality;
199  uint32 sampleSize;
200  Common::Rect frame;
201  Common::String name;
202  };
203 
205  public:
206  AVIVideoTrack(int frameCount, const AVIStreamHeader &streamHeader, const BitmapInfoHeader &bitmapInfoHeader, byte *initialPalette, Image::CodecAccuracy accuracy);
207  ~AVIVideoTrack();
208 
209  void decodeFrame(Common::SeekableReadStream *stream);
210  void forceTrackEnd();
211 
212  uint16 getWidth() const { return _bmInfo.width; }
213  uint16 getHeight() const { return _bmInfo.height; }
214  uint16 getBitCount() const { return _bmInfo.bitCount; }
215  Graphics::PixelFormat getPixelFormat() const;
216  bool setOutputPixelFormat(const Graphics::PixelFormat &format);
217  void setCodecAccuracy(Image::CodecAccuracy accuracy);
218  int getCurFrame() const { return _curFrame; }
219  int getFrameCount() const { return _frameCount; }
220  Common::String &getName() { return _vidsHeader.name; }
221  const Graphics::Surface *decodeNextFrame() { return _lastFrame; }
222 
223  const byte *getPalette() const;
224  bool hasDirtyPalette() const;
225  void setCurFrame(int frame) { _curFrame = frame; }
226  void loadPaletteFromChunk(Common::SeekableReadStream *chunk);
227  void loadPaletteFromChunkRaw(Common::SeekableReadStream *chunk, int firstEntry, int numEntries);
228  void useInitialPalette();
229  bool canDither() const;
230  void setDither(const byte *palette);
231  bool isValid() const { return _videoCodec != nullptr; }
232 
233  bool isTruemotion1() const;
234  void forceDimensions(uint16 width, uint16 height);
235 
236  bool isRewindable() const { return true; }
237  bool rewind();
238 
247  virtual bool setReverse(bool reverse);
248 
252  virtual bool isReversed() const { return _reversed; }
253 
257  virtual bool endOfTrack() const;
258 
262  Common::Rational getFrameRate() const { return Common::Rational(_vidsHeader.rate, _vidsHeader.scale); }
263 
268  _vidsHeader.rate = r.getNumerator();
269  _vidsHeader.scale = r.getDenominator();
270  }
271  private:
272  AVIStreamHeader _vidsHeader;
273  BitmapInfoHeader _bmInfo;
274  Graphics::Palette _palette;
275  byte *_initialPalette;
276  mutable bool _dirtyPalette;
277  int _frameCount, _curFrame;
278  bool _reversed;
279 
280  Image::Codec *_videoCodec;
281  const Graphics::Surface *_lastFrame;
282  Image::CodecAccuracy _accuracy;
283 
284  Image::Codec *createCodec();
285  };
286 
287  class AVIAudioTrack : public AudioTrack {
288  public:
289  AVIAudioTrack(const AVIStreamHeader &streamHeader, const PCMWaveFormat &waveFormat, Audio::Mixer::SoundType soundType);
290  ~AVIAudioTrack();
291 
292  virtual void createAudioStream();
293  virtual void queueSound(Common::SeekableReadStream *stream);
294  void skipAudio(const Audio::Timestamp &time, const Audio::Timestamp &frameTime);
295  virtual void resetStream();
296  uint32 getCurChunk() const { return _curChunk; }
297  Common::String &getName() { return _audsHeader.name; }
298  void setCurChunk(uint32 chunk) { _curChunk = chunk; }
299 
300  bool isRewindable() const { return true; }
301  bool rewind();
302 
303  protected:
304  Audio::AudioStream *getAudioStream() const { return _audioStream; }
305 
306  AVIStreamHeader _audsHeader;
307  PCMWaveFormat _wvInfo;
308  Audio::AudioStream *_audioStream;
309  Audio::PacketizedAudioStream *_packetStream;
310  uint32 _curChunk;
311  };
312 
313  struct TrackStatus {
314  TrackStatus();
315 
316  Track *track;
317  uint32 index;
318  uint32 chunkSearchOffset;
319  };
320 
321  class IndexEntries : public Common::Array<OldIndex> {
322  public:
323  OldIndex *find(uint index, uint frameNumber);
324  };
325 
326  AVIHeader _header;
327 
328  void readOldIndex(uint32 size);
329  IndexEntries _indexEntries;
330 
331  Common::SeekableReadStream *_fileStream;
332  bool _decodedHeader;
333  bool _foundMovieList;
334  uint32 _movieListStart, _movieListEnd;
335 
336  Common::Rational _frameRateOverride;
337 
338  int _videoTrackCounter, _audioTrackCounter;
339  Track *_lastAddedTrack;
340 
341  void initCommon();
342 
343  bool parseNextChunk();
344  void skipChunk(uint32 size);
345  void handleList(uint32 listSize);
346  void handleStreamHeader(uint32 size);
347  void readStreamName(uint32 size);
348  void readPalette8(uint32 size);
349  uint16 getStreamType(uint32 tag) const { return tag & 0xFFFF; }
350  static byte getStreamIndex(uint32 tag);
351  void checkTruemotion1();
352  uint getVideoTrackOffset(uint trackIndex, uint frameNumber = 0);
353 
354  void handleNextPacket(TrackStatus& status);
355  bool shouldQueueAudio(TrackStatus& status);
356  void seekTransparencyFrame(int frame);
357 
358  Common::Array<TrackStatus> _videoTracks, _audioTracks;
359  TrackStatus _transparencyTrack;
360 
361 public:
362  virtual AVIAudioTrack *createAudioTrack(AVIStreamHeader sHeader, PCMWaveFormat wvInfo);
363 
370  virtual bool seekToFrame(uint frame);
371 };
372 
373 } // End of namespace Video
374 
375 #endif
Definition: avi_decoder.h:132
Definition: str.h:59
Definition: video_decoder.h:505
Definition: surface.h:67
Definition: video_decoder.h:698
Definition: avi_decoder.h:65
Definition: array.h:52
Definition: pixelformat.h:138
In find(In first, In last, const T &v)
Definition: algorithm.h:225
Definition: video_decoder.h:723
Definition: avi_decoder.h:321
Definition: avi_decoder.h:185
Definition: rect.h:144
Common::Rational getFrameRate() const
Definition: avi_decoder.h:262
bool isRewindable() const
Definition: avi_decoder.h:77
Definition: timestamp.h:83
uint16 getHeight() const
Definition: avi_decoder.h:213
Definition: stream.h:745
Definition: audiostream.h:446
const Graphics::Surface * decodeNextFrame()
Definition: avi_decoder.h:221
Definition: rational.h:40
Definition: avi_decoder.h:161
Definition: codec.h:57
Definition: avi_decoder.h:287
Graphics::Surface * scale(const Graphics::Surface &srcImage, int xSize, int ySize)
SoundType
Definition: mixer.h:62
Definition: avi_decoder.h:118
Definition: avi_decoder.h:204
Definition: video_decoder.h:53
Definition: avi_decoder.h:140
Definition: algorithm.h:29
Definition: formatinfo.h:28
Definition: avi_decoder.h:149
Definition: audiostream.h:50
bool supportsAudioTrackSwitching() const
Definition: avi_decoder.h:105
uint16 getWidth() const
Definition: avi_decoder.h:73
bool isRewindable() const
Definition: avi_decoder.h:236
Definition: avi_decoder.h:144
int getCurFrame() const
Definition: avi_decoder.h:218
Definition: avi_decoder.h:313
uint16 getHeight() const
Definition: avi_decoder.h:74
Simple class for handling a palette data.
Definition: palette.h:51
Definition: avi_frames.h:36
Definition: movie_decoder.h:32
void setFrameRate(const Common::Rational &r)
Definition: avi_decoder.h:267
int getFrameCount() const
Definition: avi_decoder.h:219
uint16 getWidth() const
Definition: avi_decoder.h:212
Definition: system.h:38
virtual bool isReversed() const
Definition: avi_decoder.h:252