-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAviFile.cpp
310 lines (240 loc) · 6.54 KB
/
AviFile.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
// $Id: AviFile.cpp,v 1.1 2008/03/29 03:13:22 samn Exp $
// AviFile.cpp: implementation of the CAviFile class.
// http://homepages.msn.com/RedmondAve/darrennix
// See also: www.egerter.com www.gamedev.net
//////////////////////////////////////////////////////////////////////
// The usual disclaimers apply to all source code you receive
// from me. You can read my copyright/disclaimer at my website.
#include "stdafx.h"
#include <Windows.h>
#include "CAviFile.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CAviFile::CAviFile()
{
AVIFileInit();
Init();
}
CAviFile::~CAviFile()
{
AVIFileExit();
Release();
}
void CAviFile::Init()
{
m_pAviFile = NULL;
m_nNumAudioStreams = 0;
m_nNumVideoStreams = 0;
m_bIsOpen = false;
m_iCurrentStream = 0;
int n;
for(n = 0; n < MAX_AUDIO_STREAMS; n++)
{
m_pAudioStreams[n] = NULL;
m_pAudioFormats[n] = NULL;
m_pAudioData[n] = NULL;
}
for(n = 0; n < MAX_VIDEO_STREAMS; n++)
{
m_pVideoStreams[n] = NULL;
m_pVideoFormats[n] = NULL;
m_pVideoPGF[n] = NULL;
m_lVideoEndTime[n] = 0;
m_iCurrentFrame[n] = 0;
m_iFirstFrame[n] = 0;
m_iLastFrame[n] = 0;
}
}
//
// The Release function must return the object's state to
// the way it was when it was initially allocated. The
// object must be ready to be reused.
//
void CAviFile::Release()
{
if(m_pAviFile)
AVIFileRelease(m_pAviFile);
int n;
for(n = 0; n < m_nNumAudioStreams; n++)
{
if(m_pAudioStreams[n])
AVIStreamRelease(m_pAudioStreams[n]);
if(m_pAudioFormats[n])
delete [] ((LPBYTE)m_pAudioFormats[n]);
if(m_pAudioData[n])
delete [] m_pAudioData[n];
}
for(n = 0; n < m_nNumVideoStreams; n++)
{
if(m_pVideoStreams[n])
AVIStreamRelease(m_pVideoStreams[n]);
if(m_pVideoFormats[n])
delete [] ((LPBYTE)m_pVideoFormats[n]);
}
Init();
}
bool CAviFile::Open(LPCSTR lpszFileName)
{
m_bIsOpen = false;
if(AVIFileOpen(&m_pAviFile, lpszFileName, OF_READ, NULL))
return false;
FindStreams();
if(!DetermineAudioFormats() ||
!DetermineVideoFormats())
{
Release();
return false;
}
// Okay, we know what's in the file.
// Video and audio will be loaded as it's needed,
// so there isn't a huge delay or impact on memory
// when loading a large video file.
m_bIsOpen = true;
// Yippee!
return true;
}
void CAviFile::FindStreams()
{
do
{
if(AVIFileGetStream(m_pAviFile, &m_pAudioStreams[m_nNumAudioStreams],
streamtypeAUDIO, m_nNumAudioStreams))
break;
}
while(++m_nNumAudioStreams < MAX_AUDIO_STREAMS);
do
{
if(AVIFileGetStream(m_pAviFile, &m_pVideoStreams[m_nNumVideoStreams],
streamtypeVIDEO, m_nNumVideoStreams))
break;
}
while(++m_nNumVideoStreams < MAX_VIDEO_STREAMS);
}
bool CAviFile::DetermineAudioFormats()
{
for(int n = 0; n < m_nNumAudioStreams; n++)
{
PAVISTREAM pStream = m_pAudioStreams[n];
LONG lSize;
if(AVIStreamReadFormat(pStream, AVIStreamStart(pStream), NULL, &lSize))
return false;
LPBYTE pChunk = new BYTE[lSize];
if(!pChunk)
return false;
if(AVIStreamReadFormat(pStream, AVIStreamStart(pStream), pChunk, &lSize))
return false;
m_pAudioFormats[n] = (LPWAVEFORMAT)pChunk;
}
// Yay!
return true;
}
bool CAviFile::DetermineVideoFormats()
{
for(int n = 0; n < m_nNumVideoStreams; n++)
{
PAVISTREAM pStream = m_pVideoStreams[n];
LONG lSize;
if(AVIStreamReadFormat(pStream, AVIStreamStart(pStream), NULL, &lSize))
return false;
LPBYTE pChunk = new BYTE[lSize];
if(!pChunk)
return false;
if(AVIStreamReadFormat(pStream, AVIStreamStart(pStream), pChunk, &lSize))
return false;
m_pVideoFormats[n] = (LPBITMAPINFO)pChunk;
}
// Bravo!
return true;
}
int CAviFile::GetAudioStreamCount()
{
return m_nNumAudioStreams;
}
int CAviFile::GetVideoStreamCount()
{
return m_nNumVideoStreams;
}
LPBYTE CAviFile::ExtractAudioStream(UINT nStreamNum)
{
if(m_pAudioData[nStreamNum])
return m_pAudioData[nStreamNum];
if(nStreamNum >= m_nNumAudioStreams)
return NULL;
PAVISTREAM pStream = m_pAudioStreams[nStreamNum];
LONG lSize;
if(AVIStreamRead(pStream, 0, AVISTREAMREAD_CONVENIENT, NULL, 0, &lSize, NULL))
return NULL;
LPBYTE pBuffer = new BYTE[lSize];
if(!pBuffer)
return NULL;
if(AVIStreamRead(pStream, 0, AVISTREAMREAD_CONVENIENT, pBuffer, lSize, NULL, NULL))
return NULL;
m_pAudioData[nStreamNum] = pBuffer;
return pBuffer;
}
bool CAviFile::StartVideoRetrieve(UINT nStreamNum)
{
if(nStreamNum >= m_nNumVideoStreams)
return false;
PAVISTREAM pStream = m_pVideoStreams[nStreamNum];
PGETFRAME &pgf = m_pVideoPGF[nStreamNum];
//LPBITMAPINFOHEADER lpDesiredFormat = &m_pVideoFormats[nStreamNum]->bmiHeader;
pgf = AVIStreamGetFrameOpen(pStream, NULL/*lpDesiredFormat*/);
if(!pgf)
return false;
m_lVideoEndTime[nStreamNum] = AVIStreamEndTime(pStream);
m_iCurrentStream = nStreamNum;
m_iLastFrame[nStreamNum]=AVIStreamLength(pStream);
m_iCurrentFrame[nStreamNum]=m_iFirstFrame[nStreamNum]=AVIStreamStart(pStream);
// Yahoo!
return true;
}
bool CAviFile::EndVideoRetrieve(UINT nStreamNum)
{
PGETFRAME &pgf = m_pVideoPGF[nStreamNum];
if(AVIStreamGetFrameClose(pgf))
return false;
pgf = NULL;
m_iCurrentStream = 0;
// Hurray!
return true;
}
void CAviFile::GetVideoFrameAtTime(UINT nStreamNum, LONG lTimeInMilliSec, LPBITMAPINFOHEADER *ppbi)
{
if(nStreamNum >= m_nNumVideoStreams)
{
*ppbi = NULL;
return;
}
PAVISTREAM pStream = m_pVideoStreams[nStreamNum];
PGETFRAME &pgf = m_pVideoPGF[nStreamNum];
LONG lFrame;
if(lTimeInMilliSec <= m_lVideoEndTime[nStreamNum])
lFrame = AVIStreamTimeToSample(pStream, lTimeInMilliSec);
else
{
*ppbi = NULL; // video is done, no more frames
return;
}
*ppbi = (LPBITMAPINFOHEADER)AVIStreamGetFrame(pgf, lFrame);
}
void CAviFile::GetVideoFrame(UINT nStreamNum, LONG lFrame, LPBITMAPINFOHEADER *ppbi)
{
PGETFRAME &pgf = m_pVideoPGF[nStreamNum];
*ppbi = (LPBITMAPINFOHEADER)AVIStreamGetFrame(pgf, lFrame);
// NULL on error or no more frames
}
LPWAVEFORMAT CAviFile::GetAudioFormat(UINT nStreamNum)
{
if(nStreamNum >= m_nNumAudioStreams)
return NULL;
return m_pAudioFormats[nStreamNum];
}
LPBITMAPINFO CAviFile::GetVideoFormat(UINT nStreamNum)
{
if(nStreamNum >= m_nNumVideoStreams)
return NULL;
return m_pVideoFormats[nStreamNum];
}