ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
mpegps_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_MPEGPS_DECODER_H
23 #define VIDEO_MPEGPS_DECODER_H
24 
25 #include "common/hashmap.h"
26 #include "common/queue.h"
27 #include "graphics/surface.h"
28 #include "video/video_decoder.h"
29 
30 namespace Audio {
31 class PacketizedAudioStream;
32 }
33 
34 namespace Common {
35 class SeekableReadStream;
36 }
37 
38 namespace Graphics {
39 struct PixelFormat;
40 }
41 
42 namespace Image {
43 class MPEGDecoder;
44 }
45 
46 namespace Video {
47 
55 class MPEGPSDecoder : public VideoDecoder {
56 public:
57  MPEGPSDecoder(double decibel = 0.0);
58  virtual ~MPEGPSDecoder();
59 
60  bool loadStream(Common::SeekableReadStream *stream);
61  void close();
62 
63 protected:
64  void readNextPacket();
65  bool useAudioSync() const { return false; }
66 
67 private:
68  class MPEGPSDemuxer {
69  public:
70  MPEGPSDemuxer();
71  ~MPEGPSDemuxer();
72 
73  bool loadStream(Common::SeekableReadStream *stream);
74  void close();
75 
76  Common::SeekableReadStream *getFirstVideoPacket(int32 &startCode, uint32 &pts, uint32 &dts);
77  Common::SeekableReadStream *getNextPacket(uint32 currentTime, int32 &startCode, uint32 &pts, uint32 &dts);
78 
79  private:
80  class Packet {
81  public:
82  Packet(Common::SeekableReadStream *stream, int32 startCode, uint32 pts, uint32 dts) : _stream(stream), _startCode(startCode), _pts(pts), _dts(dts) {}
83 
85  int32 _startCode;
86  uint32 _pts;
87  uint32 _dts;
88  };
89  bool queueNextPacket();
90  bool fillQueues();
91  int readNextPacketHeader(int32 &startCode, uint32 &pts, uint32 &dts);
92  int findNextStartCode(uint32 &size);
93  uint32 readPTS(int c);
94  void parseProgramStreamMap(int length);
95 
97  Common::Queue<Packet> _videoQueue;
98  Common::Queue<Packet> _audioQueue;
99  // If we come across a non-packetized elementary stream
100  bool _isESStream;
101  };
102 
103  // Base class for handling MPEG streams
104  class MPEGStream {
105  public:
106  virtual ~MPEGStream() {}
107 
108  enum StreamType {
109  kStreamTypeVideo,
110  kStreamTypeAudio
111  };
112 
113  virtual bool sendPacket(Common::SeekableReadStream *packet, uint32 pts, uint32 dts) = 0;
114  virtual StreamType getStreamType() const = 0;
115  };
116 
117  // An MPEG 1/2 video track
118  class MPEGVideoTrack : public VideoTrack, public MPEGStream {
119  public:
120  MPEGVideoTrack(Common::SeekableReadStream *firstPacket);
121  ~MPEGVideoTrack();
122 
123  bool endOfTrack() const { return _endOfTrack; }
124  uint16 getWidth() const;
125  uint16 getHeight() const;
126  Graphics::PixelFormat getPixelFormat() const;
127  bool setOutputPixelFormat(const Graphics::PixelFormat &format);
128  int getCurFrame() const { return _curFrame; }
129  uint32 getNextFrameStartTime() const { return _nextFrameStartTime.msecs(); }
130  const Graphics::Surface *decodeNextFrame();
131 
132  bool sendPacket(Common::SeekableReadStream *packet, uint32 pts, uint32 dts);
133  StreamType getStreamType() const { return kStreamTypeVideo; }
134 
135  void setEndOfTrack() { _endOfTrack = true; }
136 
137  private:
138  bool _endOfTrack;
139  int _curFrame;
140  uint32 _framePts;
141  Audio::Timestamp _nextFrameStartTime;
142  Graphics::Surface *_surface;
143 
144  uint16 _width;
145  uint16 _height;
146  Graphics::PixelFormat _pixelFormat;
147 
148  void findDimensions(Common::SeekableReadStream *firstPacket);
149 
150 #ifdef USE_MPEG2
151  Image::MPEGDecoder *_mpegDecoder;
152 #endif
153  };
154 
155 #ifdef USE_MAD
156  // An MPEG audio track
157  class MPEGAudioTrack : public AudioTrack, public MPEGStream {
158  public:
159  MPEGAudioTrack(Common::SeekableReadStream &firstPacket, Audio::Mixer::SoundType soundType);
160  ~MPEGAudioTrack();
161 
162  bool sendPacket(Common::SeekableReadStream *packet, uint32 pts, uint32 dts);
163  StreamType getStreamType() const { return kStreamTypeAudio; }
164 
165  protected:
166  Audio::AudioStream *getAudioStream() const;
167 
168  private:
169  Audio::PacketizedAudioStream *_audStream;
170  };
171 #endif
172 
173 #ifdef USE_A52
174  class AC3AudioTrack : public AudioTrack, public MPEGStream {
175  public:
176  AC3AudioTrack(Common::SeekableReadStream &firstPacket, double decibel, Audio::Mixer::SoundType soundType);
177  ~AC3AudioTrack();
178 
179  bool sendPacket(Common::SeekableReadStream *packet, uint32 pts, uint32 dts);
180  StreamType getStreamType() const { return kStreamTypeAudio; }
181 
182  protected:
183  Audio::AudioStream *getAudioStream() const;
184 
185  private:
186  Audio::PacketizedAudioStream *_audStream;
187  };
188 #endif
189 
190  class PS2AudioTrack : public AudioTrack, public MPEGStream {
191  public:
192  PS2AudioTrack(Common::SeekableReadStream *firstPacket, Audio::Mixer::SoundType soundType);
193  ~PS2AudioTrack();
194 
195  bool sendPacket(Common::SeekableReadStream *packet, uint32 pts, uint32 dts);
196  StreamType getStreamType() const { return kStreamTypeAudio; }
197 
198  protected:
199  Audio::AudioStream *getAudioStream() const;
200 
201  private:
202  Audio::PacketizedAudioStream *_audStream;
203 
204  enum {
205  PS2_PCM = 0x01,
206  PS2_ADPCM = 0x10
207  };
208 
209  uint32 _channels;
210  uint32 _soundType;
211  uint32 _interleave;
212  bool _isFirstPacket;
213 
214  byte *_blockBuffer;
215  uint32 _blockPos, _blockUsed;
216 
217  uint32 calculateSampleCount(uint32 packetSize) const;
218  };
219 
220  // The different types of private streams we can detect at the moment
221  enum PrivateStreamType {
222  kPrivateStreamUnknown,
223  kPrivateStreamAC3,
224  kPrivateStreamDTS,
225  kPrivateStreamDVDPCM,
226  kPrivateStreamPS2Audio
227  };
228 
229  PrivateStreamType detectPrivateStreamType(Common::SeekableReadStream *packet);
230 
231  bool addFirstVideoTrack();
232  MPEGStream *getStream(uint32 startCode, Common::SeekableReadStream *packet);
233 
234  MPEGPSDemuxer *_demuxer;
235 
236  // A map from stream types to stream handlers
238  StreamMap _streamMap;
239 
240  double _decibel;
241 };
242 
243 } // End of namespace Video
244 
245 #endif
Definition: surface.h:67
Definition: pixelformat.h:138
Definition: video_decoder.h:723
Definition: timestamp.h:83
Definition: stream.h:745
Definition: audiostream.h:446
SoundType
Definition: mixer.h:62
bool useAudioSync() const
Definition: mpegps_decoder.h:65
Definition: video_decoder.h:53
Definition: algorithm.h:29
Definition: formatinfo.h:28
Definition: audiostream.h:50
Definition: avi_frames.h:36
Definition: mpegps_decoder.h:55
Definition: movie_decoder.h:32
Definition: system.h:38
Definition: video_decoder.h:589