2 * Copyright 1999 Marcus Meissner
3 * Copyright 2002-2003 Michael Günnewig
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * - IAVIStreaming interface is missing for the IAVIStreamImpl
22 * - IAVIStream_fnFindSample: FIND_INDEX isn't supported.
23 * - IAVIStream_fnReadFormat: formatchanges aren't read in.
24 * - IAVIStream_fnDelete: a stub.
25 * - IAVIStream_fnSetInfo: a stub.
29 * - native version can hangup when reading a file generated with this DLL.
30 * When index is missing it works, but index seems to be okay.
46 #include "avifile_private.h"
47 #include "extrachunk.h"
49 #include "wine/unicode.h"
50 #include "wine/debug.h"
52 WINE_DEFAULT_DEBUG_CHANNEL(avifile
);
55 #define IDX_PER_BLOCK 2730
58 typedef struct _IAVIFileImpl IAVIFileImpl
;
60 typedef struct _IAVIStreamImpl
{
61 IAVIStream IAVIStream_iface
;
65 DWORD nStream
; /* the n-th stream in file */
77 DWORD cbBuffer
; /* size of lpBuffer */
78 DWORD dwCurrentFrame
; /* frame/block currently in lpBuffer */
80 LONG lLastFrame
; /* last correct index in idxFrames */
81 AVIINDEXENTRY
*idxFrames
;
82 DWORD nIdxFrames
; /* upper index limit of idxFrames */
83 AVIINDEXENTRY
*idxFmtChanges
;
84 DWORD nIdxFmtChanges
; /* upper index limit of idxFmtChanges */
87 static inline IAVIStreamImpl
*impl_from_IAVIStream(IAVIStream
*iface
)
89 return CONTAINING_RECORD(iface
, IAVIStreamImpl
, IAVIStream_iface
);
92 struct _IAVIFileImpl
{
93 IUnknown IUnknown_inner
;
94 IAVIFile IAVIFile_iface
;
95 IPersistFile IPersistFile_iface
;
100 IAVIStreamImpl
*ppStreams
[MAX_AVISTREAMS
];
102 EXTRACHUNKS fileextra
;
104 DWORD dwMoviChunkPos
; /* some stuff for saving ... */
106 DWORD dwNextFramePos
;
107 DWORD dwInitialFrames
;
109 MMCKINFO ckLastRecord
;
110 AVIINDEXENTRY
*idxRecords
; /* won't be updated while loading */
111 DWORD nIdxRecords
; /* current fill level */
112 DWORD cbIdxRecords
; /* size of idxRecords */
114 /* IPersistFile stuff ... */
121 static inline IAVIFileImpl
*impl_from_IUnknown(IUnknown
*iface
)
123 return CONTAINING_RECORD(iface
, IAVIFileImpl
, IUnknown_inner
);
126 static inline IAVIFileImpl
*impl_from_IAVIFile(IAVIFile
*iface
)
128 return CONTAINING_RECORD(iface
, IAVIFileImpl
, IAVIFile_iface
);
131 static inline IAVIFileImpl
*impl_from_IPersistFile(IPersistFile
*iface
)
133 return CONTAINING_RECORD(iface
, IAVIFileImpl
, IPersistFile_iface
);
136 /***********************************************************************/
138 static HRESULT
AVIFILE_AddFrame(IAVIStreamImpl
*This
, DWORD ckid
, DWORD size
,
139 DWORD offset
, DWORD flags
);
140 static HRESULT
AVIFILE_AddRecord(IAVIFileImpl
*This
);
141 static DWORD
AVIFILE_ComputeMoviStart(IAVIFileImpl
*This
);
142 static void AVIFILE_ConstructAVIStream(IAVIFileImpl
*paf
, DWORD nr
,
143 const AVISTREAMINFOW
*asi
);
144 static void AVIFILE_DestructAVIStream(IAVIStreamImpl
*This
);
145 static HRESULT
AVIFILE_LoadFile(IAVIFileImpl
*This
);
146 static HRESULT
AVIFILE_LoadIndex(const IAVIFileImpl
*This
, DWORD size
, DWORD offset
);
147 static HRESULT
AVIFILE_ParseIndex(const IAVIFileImpl
*This
, AVIINDEXENTRY
*lp
,
148 LONG count
, DWORD pos
, BOOL
*bAbsolute
);
149 static HRESULT
AVIFILE_ReadBlock(IAVIStreamImpl
*This
, DWORD start
,
150 LPVOID buffer
, DWORD size
);
151 static void AVIFILE_SamplesToBlock(const IAVIStreamImpl
*This
, LPLONG pos
,
153 static HRESULT
AVIFILE_SaveFile(IAVIFileImpl
*This
);
154 static HRESULT
AVIFILE_SaveIndex(const IAVIFileImpl
*This
);
155 static ULONG
AVIFILE_SearchStream(const IAVIFileImpl
*This
, DWORD fccType
,
157 static void AVIFILE_UpdateInfo(IAVIFileImpl
*This
);
158 static HRESULT
AVIFILE_WriteBlock(IAVIStreamImpl
*This
, DWORD block
,
159 FOURCC ckid
, DWORD flags
, LPCVOID buffer
,
162 static HRESULT WINAPI
IUnknown_fnQueryInterface(IUnknown
*iface
, REFIID riid
, void **ppv
)
164 IAVIFileImpl
*This
= impl_from_IUnknown(iface
);
166 TRACE("(%p,%s,%p)\n", This
, debugstr_guid(riid
), ppv
);
169 WARN("invalid parameter\n");
174 if (IsEqualIID(riid
, &IID_IUnknown
))
175 *ppv
= &This
->IUnknown_inner
;
176 else if (IsEqualIID(riid
, &IID_IAVIFile
))
177 *ppv
= &This
->IAVIFile_iface
;
178 else if (IsEqualGUID(riid
, &IID_IPersistFile
))
179 *ppv
= &This
->IPersistFile_iface
;
181 WARN("unknown IID %s\n", debugstr_guid(riid
));
182 return E_NOINTERFACE
;
185 /* Violation of the COM aggregation ref counting rule */
186 IUnknown_AddRef(&This
->IUnknown_inner
);
190 static ULONG WINAPI
IUnknown_fnAddRef(IUnknown
*iface
)
192 IAVIFileImpl
*This
= impl_from_IUnknown(iface
);
193 ULONG ref
= InterlockedIncrement(&This
->ref
);
195 TRACE("(%p) ref=%d\n", This
, ref
);
200 static ULONG WINAPI
IUnknown_fnRelease(IUnknown
*iface
)
202 IAVIFileImpl
*This
= impl_from_IUnknown(iface
);
203 ULONG ref
= InterlockedDecrement(&This
->ref
);
206 TRACE("(%p) ref=%d\n", This
, ref
);
210 AVIFILE_SaveFile(This
);
212 for (i
= 0; i
< This
->fInfo
.dwStreams
; i
++) {
213 if (This
->ppStreams
[i
] != NULL
) {
214 if (This
->ppStreams
[i
]->ref
!= 0)
215 ERR(": someone has still %u reference to stream %u (%p)!\n",
216 This
->ppStreams
[i
]->ref
, i
, This
->ppStreams
[i
]);
217 AVIFILE_DestructAVIStream(This
->ppStreams
[i
]);
218 HeapFree(GetProcessHeap(), 0, This
->ppStreams
[i
]);
219 This
->ppStreams
[i
] = NULL
;
223 if (This
->idxRecords
!= NULL
) {
224 HeapFree(GetProcessHeap(), 0, This
->idxRecords
);
225 This
->idxRecords
= NULL
;
226 This
->nIdxRecords
= 0;
229 if (This
->fileextra
.lp
!= NULL
) {
230 HeapFree(GetProcessHeap(), 0, This
->fileextra
.lp
);
231 This
->fileextra
.lp
= NULL
;
232 This
->fileextra
.cb
= 0;
235 HeapFree(GetProcessHeap(), 0, This
->szFileName
);
236 This
->szFileName
= NULL
;
238 if (This
->hmmio
!= NULL
) {
239 mmioClose(This
->hmmio
, 0);
243 HeapFree(GetProcessHeap(), 0, This
);
248 static const IUnknownVtbl unk_vtbl
=
250 IUnknown_fnQueryInterface
,
255 static HRESULT WINAPI
IAVIFile_fnQueryInterface(IAVIFile
*iface
, REFIID riid
, void **ppv
)
257 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
259 return IUnknown_QueryInterface(This
->outer_unk
, riid
, ppv
);
262 static ULONG WINAPI
IAVIFile_fnAddRef(IAVIFile
*iface
)
264 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
266 return IUnknown_AddRef(This
->outer_unk
);
269 static ULONG WINAPI
IAVIFile_fnRelease(IAVIFile
*iface
)
271 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
273 return IUnknown_Release(This
->outer_unk
);
276 static HRESULT WINAPI
IAVIFile_fnInfo(IAVIFile
*iface
, AVIFILEINFOW
*afi
, LONG size
)
278 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
280 TRACE("(%p,%p,%d)\n",iface
,afi
,size
);
283 return AVIERR_BADPARAM
;
285 return AVIERR_BADSIZE
;
287 AVIFILE_UpdateInfo(This
);
289 memcpy(afi
, &This
->fInfo
, min((DWORD
)size
, sizeof(This
->fInfo
)));
291 if ((DWORD
)size
< sizeof(This
->fInfo
))
292 return AVIERR_BUFFERTOOSMALL
;
296 static HRESULT WINAPI
IAVIFile_fnGetStream(IAVIFile
*iface
, IAVIStream
**avis
, DWORD fccType
,
299 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
302 TRACE("(%p,%p,0x%08X,%d)\n", iface
, avis
, fccType
, lParam
);
304 if (avis
== NULL
|| lParam
< 0)
305 return AVIERR_BADPARAM
;
307 nStream
= AVIFILE_SearchStream(This
, fccType
, lParam
);
309 /* Does the requested stream exist? */
310 if (nStream
< This
->fInfo
.dwStreams
&&
311 This
->ppStreams
[nStream
] != NULL
) {
312 *avis
= &This
->ppStreams
[nStream
]->IAVIStream_iface
;
313 IAVIStream_AddRef(*avis
);
318 /* Sorry, but the specified stream doesn't exist */
319 return AVIERR_NODATA
;
322 static HRESULT WINAPI
IAVIFile_fnCreateStream(IAVIFile
*iface
, IAVIStream
**avis
,
325 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
328 TRACE("(%p,%p,%p)\n", iface
, avis
, asi
);
330 /* check parameters */
331 if (avis
== NULL
|| asi
== NULL
)
332 return AVIERR_BADPARAM
;
336 /* Does the user have write permission? */
337 if ((This
->uMode
& MMIO_RWMODE
) == 0)
338 return AVIERR_READONLY
;
340 /* Can we add another stream? */
341 n
= This
->fInfo
.dwStreams
;
342 if (n
>= MAX_AVISTREAMS
|| This
->dwMoviChunkPos
!= 0) {
343 /* already reached max nr of streams
344 * or have already written frames to disk */
345 return AVIERR_UNSUPPORTED
;
348 /* check AVISTREAMINFO for some really needed things */
349 if (asi
->fccType
== 0 || asi
->dwScale
== 0 || asi
->dwRate
== 0)
350 return AVIERR_BADFORMAT
;
352 /* now it seems to be save to add the stream */
353 assert(This
->ppStreams
[n
] == NULL
);
354 This
->ppStreams
[n
] = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
355 sizeof(IAVIStreamImpl
));
356 if (This
->ppStreams
[n
] == NULL
)
357 return AVIERR_MEMORY
;
359 /* initialize the new allocated stream */
360 AVIFILE_ConstructAVIStream(This
, n
, asi
);
362 This
->fInfo
.dwStreams
++;
365 /* update our AVIFILEINFO structure */
366 AVIFILE_UpdateInfo(This
);
369 *avis
= &This
->ppStreams
[n
]->IAVIStream_iface
;
370 IAVIStream_AddRef(*avis
);
375 static HRESULT WINAPI
IAVIFile_fnWriteData(IAVIFile
*iface
, DWORD ckid
, void *lpData
, LONG size
)
377 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
379 TRACE("(%p,0x%08X,%p,%d)\n", iface
, ckid
, lpData
, size
);
381 /* check parameters */
383 return AVIERR_BADPARAM
;
385 return AVIERR_BADSIZE
;
387 /* Do we have write permission? */
388 if ((This
->uMode
& MMIO_RWMODE
) == 0)
389 return AVIERR_READONLY
;
393 return WriteExtraChunk(&This
->fileextra
, ckid
, lpData
, size
);
396 static HRESULT WINAPI
IAVIFile_fnReadData(IAVIFile
*iface
, DWORD ckid
, void *lpData
, LONG
*size
)
398 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
400 TRACE("(%p,0x%08X,%p,%p)\n", iface
, ckid
, lpData
, size
);
402 return ReadExtraChunk(&This
->fileextra
, ckid
, lpData
, size
);
405 static HRESULT WINAPI
IAVIFile_fnEndRecord(IAVIFile
*iface
)
407 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
409 TRACE("(%p)\n",iface
);
411 if ((This
->uMode
& MMIO_RWMODE
) == 0)
412 return AVIERR_READONLY
;
416 /* no frames written to any stream? -- compute start of 'movi'-chunk */
417 if (This
->dwMoviChunkPos
== 0)
418 AVIFILE_ComputeMoviStart(This
);
420 This
->fInfo
.dwFlags
|= AVIFILEINFO_ISINTERLEAVED
;
422 /* already written frames to any stream, ... */
423 if (This
->ckLastRecord
.dwFlags
& MMIO_DIRTY
) {
424 /* close last record */
425 if (mmioAscend(This
->hmmio
, &This
->ckLastRecord
, 0) != 0)
426 return AVIERR_FILEWRITE
;
428 AVIFILE_AddRecord(This
);
430 if (This
->fInfo
.dwSuggestedBufferSize
< This
->ckLastRecord
.cksize
+ 3 * sizeof(DWORD
))
431 This
->fInfo
.dwSuggestedBufferSize
= This
->ckLastRecord
.cksize
+ 3 * sizeof(DWORD
);
434 /* write out a new record into file, but don't close it */
435 This
->ckLastRecord
.cksize
= 0;
436 This
->ckLastRecord
.fccType
= listtypeAVIRECORD
;
437 if (mmioSeek(This
->hmmio
, This
->dwNextFramePos
, SEEK_SET
) == -1)
438 return AVIERR_FILEWRITE
;
439 if (mmioCreateChunk(This
->hmmio
, &This
->ckLastRecord
, MMIO_CREATELIST
) != 0)
440 return AVIERR_FILEWRITE
;
441 This
->dwNextFramePos
+= 3 * sizeof(DWORD
);
446 static HRESULT WINAPI
IAVIFile_fnDeleteStream(IAVIFile
*iface
, DWORD fccType
, LONG lParam
)
448 IAVIFileImpl
*This
= impl_from_IAVIFile(iface
);
451 TRACE("(%p,0x%08X,%d)\n", iface
, fccType
, lParam
);
453 /* check parameter */
455 return AVIERR_BADPARAM
;
457 /* Have user write permissions? */
458 if ((This
->uMode
& MMIO_RWMODE
) == 0)
459 return AVIERR_READONLY
;
461 nStream
= AVIFILE_SearchStream(This
, fccType
, lParam
);
463 /* Does the requested stream exist? */
464 if (nStream
< This
->fInfo
.dwStreams
&&
465 This
->ppStreams
[nStream
] != NULL
) {
466 /* ... so delete it now */
467 HeapFree(GetProcessHeap(), 0, This
->ppStreams
[nStream
]);
468 This
->fInfo
.dwStreams
--;
469 if (nStream
< This
->fInfo
.dwStreams
)
470 memmove(&This
->ppStreams
[nStream
], &This
->ppStreams
[nStream
+ 1],
471 (This
->fInfo
.dwStreams
- nStream
) * sizeof(This
->ppStreams
[0]));
473 This
->ppStreams
[This
->fInfo
.dwStreams
] = NULL
;
476 /* This->fInfo will be updated further when asked for */
479 return AVIERR_NODATA
;
482 static const struct IAVIFileVtbl avif_vt
= {
483 IAVIFile_fnQueryInterface
,
487 IAVIFile_fnGetStream
,
488 IAVIFile_fnCreateStream
,
489 IAVIFile_fnWriteData
,
491 IAVIFile_fnEndRecord
,
492 IAVIFile_fnDeleteStream
496 static HRESULT WINAPI
IPersistFile_fnQueryInterface(IPersistFile
*iface
, REFIID riid
, void **ppv
)
498 IAVIFileImpl
*This
= impl_from_IPersistFile(iface
);
500 return IUnknown_QueryInterface(This
->outer_unk
, riid
, ppv
);
503 static ULONG WINAPI
IPersistFile_fnAddRef(IPersistFile
*iface
)
505 IAVIFileImpl
*This
= impl_from_IPersistFile(iface
);
507 return IUnknown_AddRef(This
->outer_unk
);
510 static ULONG WINAPI
IPersistFile_fnRelease(IPersistFile
*iface
)
512 IAVIFileImpl
*This
= impl_from_IPersistFile(iface
);
514 return IUnknown_Release(This
->outer_unk
);
517 static HRESULT WINAPI
IPersistFile_fnGetClassID(IPersistFile
*iface
, LPCLSID pClassID
)
519 TRACE("(%p,%p)\n", iface
, pClassID
);
521 if (pClassID
== NULL
)
522 return AVIERR_BADPARAM
;
524 *pClassID
= CLSID_AVIFile
;
529 static HRESULT WINAPI
IPersistFile_fnIsDirty(IPersistFile
*iface
)
531 IAVIFileImpl
*This
= impl_from_IPersistFile(iface
);
533 TRACE("(%p)\n", iface
);
535 return (This
->fDirty
? S_OK
: S_FALSE
);
538 static HRESULT WINAPI
IPersistFile_fnLoad(IPersistFile
*iface
, LPCOLESTR pszFileName
, DWORD dwMode
)
540 IAVIFileImpl
*This
= impl_from_IPersistFile(iface
);
543 TRACE("(%p,%s,0x%08X)\n", iface
, debugstr_w(pszFileName
), dwMode
);
545 /* check parameter */
546 if (pszFileName
== NULL
)
547 return AVIERR_BADPARAM
;
549 if (This
->hmmio
!= NULL
)
550 return AVIERR_ERROR
; /* No reuse of this object for another file! */
552 /* remember mode and name */
553 This
->uMode
= dwMode
;
555 len
= lstrlenW(pszFileName
) + 1;
556 This
->szFileName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
557 if (This
->szFileName
== NULL
)
558 return AVIERR_MEMORY
;
559 lstrcpyW(This
->szFileName
, pszFileName
);
561 /* try to open the file */
562 This
->hmmio
= mmioOpenW(This
->szFileName
, NULL
, MMIO_ALLOCBUF
| dwMode
);
563 if (This
->hmmio
== NULL
) {
564 /* mmioOpenW not in native DLLs of Win9x -- try mmioOpenA */
567 len
= WideCharToMultiByte(CP_ACP
, 0, This
->szFileName
, -1, NULL
, 0, NULL
, NULL
);
568 szFileName
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(CHAR
));
569 if (szFileName
== NULL
)
570 return AVIERR_MEMORY
;
572 WideCharToMultiByte(CP_ACP
, 0, This
->szFileName
, -1, szFileName
, len
, NULL
, NULL
);
574 This
->hmmio
= mmioOpenA(szFileName
, NULL
, MMIO_ALLOCBUF
| dwMode
);
575 HeapFree(GetProcessHeap(), 0, szFileName
);
576 if (This
->hmmio
== NULL
)
577 return AVIERR_FILEOPEN
;
580 /* should we create a new file? */
581 if (dwMode
& OF_CREATE
) {
582 memset(& This
->fInfo
, 0, sizeof(This
->fInfo
));
583 This
->fInfo
.dwFlags
= AVIFILEINFO_HASINDEX
| AVIFILEINFO_TRUSTCKTYPE
;
587 return AVIFILE_LoadFile(This
);
590 static HRESULT WINAPI
IPersistFile_fnSave(IPersistFile
*iface
, LPCOLESTR pszFileName
,
593 TRACE("(%p,%s,%d)\n", iface
, debugstr_w(pszFileName
), fRemember
);
595 /* We write directly to disk, so nothing to do. */
600 static HRESULT WINAPI
IPersistFile_fnSaveCompleted(IPersistFile
*iface
, LPCOLESTR pszFileName
)
602 TRACE("(%p,%s)\n", iface
, debugstr_w(pszFileName
));
604 /* We write directly to disk, so nothing to do. */
609 static HRESULT WINAPI
IPersistFile_fnGetCurFile(IPersistFile
*iface
, LPOLESTR
*ppszFileName
)
611 IAVIFileImpl
*This
= impl_from_IPersistFile(iface
);
613 TRACE("(%p,%p)\n", iface
, ppszFileName
);
615 if (ppszFileName
== NULL
)
616 return AVIERR_BADPARAM
;
618 *ppszFileName
= NULL
;
620 if (This
->szFileName
!= NULL
) {
621 int len
= lstrlenW(This
->szFileName
) + 1;
623 *ppszFileName
= CoTaskMemAlloc(len
* sizeof(WCHAR
));
624 if (*ppszFileName
== NULL
)
625 return AVIERR_MEMORY
;
627 strcpyW(*ppszFileName
, This
->szFileName
);
633 static const struct IPersistFileVtbl pf_vt
= {
634 IPersistFile_fnQueryInterface
,
635 IPersistFile_fnAddRef
,
636 IPersistFile_fnRelease
,
637 IPersistFile_fnGetClassID
,
638 IPersistFile_fnIsDirty
,
641 IPersistFile_fnSaveCompleted
,
642 IPersistFile_fnGetCurFile
645 HRESULT
AVIFILE_CreateAVIFile(IUnknown
*pUnkOuter
, REFIID riid
, void **ppv
)
651 obj
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IAVIFileImpl
));
653 return AVIERR_MEMORY
;
655 obj
->IUnknown_inner
.lpVtbl
= &unk_vtbl
;
656 obj
->IAVIFile_iface
.lpVtbl
= &avif_vt
;
657 obj
->IPersistFile_iface
.lpVtbl
= &pf_vt
;
660 obj
->outer_unk
= pUnkOuter
;
662 obj
->outer_unk
= &obj
->IUnknown_inner
;
664 hr
= IUnknown_QueryInterface(&obj
->IUnknown_inner
, riid
, ppv
);
665 IUnknown_Release(&obj
->IUnknown_inner
);
671 static HRESULT WINAPI
IAVIStream_fnQueryInterface(IAVIStream
*iface
, REFIID riid
, void **ppv
)
673 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
675 TRACE("(%p,%s,%p)\n", This
, debugstr_guid(riid
), ppv
);
678 WARN("invalid parameter\n");
683 if (IsEqualGUID(&IID_IUnknown
, riid
) || IsEqualGUID(&IID_IAVIStream
, riid
)) {
685 IAVIStream_AddRef(iface
);
689 /* FIXME: IAVIStreaming interface */
691 return E_NOINTERFACE
;
694 static ULONG WINAPI
IAVIStream_fnAddRef(IAVIStream
*iface
)
696 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
697 ULONG ref
= InterlockedIncrement(&This
->ref
);
699 TRACE("(%p) ref=%d\n", This
, ref
);
701 /* also add ref to parent, so that it doesn't kill us */
702 if (This
->paf
!= NULL
)
703 IAVIFile_AddRef(&This
->paf
->IAVIFile_iface
);
708 static ULONG WINAPI
IAVIStream_fnRelease(IAVIStream
*iface
)
710 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
711 ULONG ref
= InterlockedDecrement(&This
->ref
);
713 TRACE("(%p) ref=%d\n", This
, ref
);
715 if (This
->paf
!= NULL
)
716 IAVIFile_Release(&This
->paf
->IAVIFile_iface
);
721 static HRESULT WINAPI
IAVIStream_fnCreate(IAVIStream
*iface
, LPARAM lParam1
, LPARAM lParam2
)
723 TRACE("(%p,0x%08lX,0x%08lX)\n", iface
, lParam1
, lParam2
);
725 /* This IAVIStream interface needs an AVIFile */
726 return AVIERR_UNSUPPORTED
;
729 static HRESULT WINAPI
IAVIStream_fnInfo(IAVIStream
*iface
, AVISTREAMINFOW
*psi
, LONG size
)
731 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
733 TRACE("(%p,%p,%d)\n", iface
, psi
, size
);
736 return AVIERR_BADPARAM
;
738 return AVIERR_BADSIZE
;
740 memcpy(psi
, &This
->sInfo
, min((DWORD
)size
, sizeof(This
->sInfo
)));
742 if ((DWORD
)size
< sizeof(This
->sInfo
))
743 return AVIERR_BUFFERTOOSMALL
;
747 static LONG WINAPI
IAVIStream_fnFindSample(IAVIStream
*iface
, LONG pos
, LONG flags
)
749 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
752 TRACE("(%p,%d,0x%08X)\n",iface
,pos
,flags
);
754 if (flags
& FIND_FROM_START
) {
755 pos
= This
->sInfo
.dwStart
;
756 flags
&= ~(FIND_FROM_START
|FIND_PREV
);
760 if (This
->sInfo
.dwSampleSize
!= 0) {
761 /* convert samples into block number with offset */
762 AVIFILE_SamplesToBlock(This
, &pos
, &offset
);
765 if (flags
& FIND_TYPE
) {
766 if (flags
& FIND_KEY
) {
767 while (0 <= pos
&& pos
<= This
->lLastFrame
) {
768 if (This
->idxFrames
[pos
].dwFlags
& AVIIF_KEYFRAME
)
771 if (flags
& FIND_NEXT
)
776 } else if (flags
& FIND_ANY
) {
777 while (0 <= pos
&& pos
<= This
->lLastFrame
) {
778 if (This
->idxFrames
[pos
].dwChunkLength
> 0)
781 if (flags
& FIND_NEXT
)
787 } else if ((flags
& FIND_FORMAT
) && This
->idxFmtChanges
!= NULL
&&
788 This
->sInfo
.fccType
== streamtypeVIDEO
) {
789 if (flags
& FIND_NEXT
) {
792 for (n
= 0; n
< This
->sInfo
.dwFormatChangeCount
; n
++)
793 if (This
->idxFmtChanges
[n
].ckid
>= pos
) {
794 pos
= This
->idxFmtChanges
[n
].ckid
;
800 for (n
= (LONG
)This
->sInfo
.dwFormatChangeCount
; n
>= 0; n
--) {
801 if (This
->idxFmtChanges
[n
].ckid
<= pos
) {
802 pos
= This
->idxFmtChanges
[n
].ckid
;
807 if (pos
> (LONG
)This
->sInfo
.dwStart
)
808 return 0; /* format changes always for first frame */
816 if (pos
< (LONG
)This
->sInfo
.dwStart
)
819 switch (flags
& FIND_RET
) {
822 pos
= This
->idxFrames
[pos
].dwChunkLength
;
825 /* physical position */
826 pos
= This
->idxFrames
[pos
].dwChunkOffset
+ 2 * sizeof(DWORD
)
827 + offset
* This
->sInfo
.dwSampleSize
;
831 if (This
->sInfo
.dwSampleSize
)
832 pos
= This
->sInfo
.dwSampleSize
;
837 FIXME(": FIND_INDEX flag is not supported!\n");
838 /* This is an index in the index-table on disc. */
840 }; /* else logical position */
845 static HRESULT WINAPI
IAVIStream_fnReadFormat(IAVIStream
*iface
, LONG pos
, void *format
,
848 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
850 TRACE("(%p,%d,%p,%p)\n", iface
, pos
, format
, formatsize
);
852 if (formatsize
== NULL
)
853 return AVIERR_BADPARAM
;
855 /* only interested in needed buffersize? */
856 if (format
== NULL
|| *formatsize
<= 0) {
857 *formatsize
= This
->cbFormat
;
862 /* copy initial format (only as much as will fit) */
863 memcpy(format
, This
->lpFormat
, min(*(DWORD
*)formatsize
, This
->cbFormat
));
864 if (*(DWORD
*)formatsize
< This
->cbFormat
) {
865 *formatsize
= This
->cbFormat
;
866 return AVIERR_BUFFERTOOSMALL
;
869 /* Could format change? When yes will it change? */
870 if ((This
->sInfo
.dwFlags
& AVISTREAMINFO_FORMATCHANGES
) &&
871 pos
> This
->sInfo
.dwStart
) {
874 lLastFmt
= IAVIStream_fnFindSample(iface
, pos
, FIND_FORMAT
|FIND_PREV
);
876 FIXME(": need to read formatchange for %d -- unimplemented!\n",lLastFmt
);
880 *formatsize
= This
->cbFormat
;
884 static HRESULT WINAPI
IAVIStream_fnSetFormat(IAVIStream
*iface
, LONG pos
, void *format
,
887 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
888 BITMAPINFOHEADER
*lpbiNew
= format
;
890 TRACE("(%p,%d,%p,%d)\n", iface
, pos
, format
, formatsize
);
892 /* check parameters */
893 if (format
== NULL
|| formatsize
<= 0)
894 return AVIERR_BADPARAM
;
896 /* Do we have write permission? */
897 if ((This
->paf
->uMode
& MMIO_RWMODE
) == 0)
898 return AVIERR_READONLY
;
900 /* can only set format before frame is written! */
901 if (This
->lLastFrame
> pos
)
902 return AVIERR_UNSUPPORTED
;
904 /* initial format or a formatchange? */
905 if (This
->lpFormat
== NULL
) {
907 if (This
->paf
->dwMoviChunkPos
!= 0)
908 return AVIERR_ERROR
; /* user has used API in wrong sequence! */
910 This
->lpFormat
= HeapAlloc(GetProcessHeap(), 0, formatsize
);
911 if (This
->lpFormat
== NULL
)
912 return AVIERR_MEMORY
;
913 This
->cbFormat
= formatsize
;
915 memcpy(This
->lpFormat
, format
, formatsize
);
917 /* update some infos about stream */
918 if (This
->sInfo
.fccType
== streamtypeVIDEO
) {
921 lDim
= This
->sInfo
.rcFrame
.right
- This
->sInfo
.rcFrame
.left
;
922 if (lDim
< lpbiNew
->biWidth
)
923 This
->sInfo
.rcFrame
.right
= This
->sInfo
.rcFrame
.left
+ lpbiNew
->biWidth
;
924 lDim
= This
->sInfo
.rcFrame
.bottom
- This
->sInfo
.rcFrame
.top
;
925 if (lDim
< lpbiNew
->biHeight
)
926 This
->sInfo
.rcFrame
.bottom
= This
->sInfo
.rcFrame
.top
+ lpbiNew
->biHeight
;
927 } else if (This
->sInfo
.fccType
== streamtypeAUDIO
)
928 This
->sInfo
.dwSampleSize
= ((LPWAVEFORMATEX
)This
->lpFormat
)->nBlockAlign
;
933 LPBITMAPINFOHEADER lpbiOld
= This
->lpFormat
;
934 RGBQUAD
*rgbNew
= (RGBQUAD
*)((LPBYTE
)lpbiNew
+ lpbiNew
->biSize
);
935 AVIPALCHANGE
*lppc
= NULL
;
938 /* perhaps format change, check it ... */
939 if (This
->cbFormat
!= formatsize
)
940 return AVIERR_UNSUPPORTED
;
942 /* no format change, only the initial one */
943 if (memcmp(This
->lpFormat
, format
, formatsize
) == 0)
946 /* check that's only the palette, which changes */
947 if (lpbiOld
->biSize
!= lpbiNew
->biSize
||
948 lpbiOld
->biWidth
!= lpbiNew
->biWidth
||
949 lpbiOld
->biHeight
!= lpbiNew
->biHeight
||
950 lpbiOld
->biPlanes
!= lpbiNew
->biPlanes
||
951 lpbiOld
->biBitCount
!= lpbiNew
->biBitCount
||
952 lpbiOld
->biCompression
!= lpbiNew
->biCompression
||
953 lpbiOld
->biClrUsed
!= lpbiNew
->biClrUsed
)
954 return AVIERR_UNSUPPORTED
;
956 This
->sInfo
.dwFlags
|= AVISTREAMINFO_FORMATCHANGES
;
958 /* simply say all colors have changed */
959 ck
.ckid
= MAKEAVICKID(cktypePALchange
, This
->nStream
);
960 ck
.cksize
= 2 * sizeof(WORD
) + lpbiOld
->biClrUsed
* sizeof(PALETTEENTRY
);
961 lppc
= HeapAlloc(GetProcessHeap(), 0, ck
.cksize
);
963 return AVIERR_MEMORY
;
965 lppc
->bFirstEntry
= 0;
966 lppc
->bNumEntries
= (lpbiOld
->biClrUsed
< 256 ? lpbiOld
->biClrUsed
: 0);
968 for (n
= 0; n
< lpbiOld
->biClrUsed
; n
++) {
969 lppc
->peNew
[n
].peRed
= rgbNew
[n
].rgbRed
;
970 lppc
->peNew
[n
].peGreen
= rgbNew
[n
].rgbGreen
;
971 lppc
->peNew
[n
].peBlue
= rgbNew
[n
].rgbBlue
;
972 lppc
->peNew
[n
].peFlags
= 0;
975 if (mmioSeek(This
->paf
->hmmio
, This
->paf
->dwNextFramePos
, SEEK_SET
) == -1 ||
976 mmioCreateChunk(This
->paf
->hmmio
, &ck
, 0) != S_OK
||
977 mmioWrite(This
->paf
->hmmio
, (HPSTR
)lppc
, ck
.cksize
) != ck
.cksize
||
978 mmioAscend(This
->paf
->hmmio
, &ck
, 0) != S_OK
)
980 HeapFree(GetProcessHeap(), 0, lppc
);
981 return AVIERR_FILEWRITE
;
984 This
->paf
->dwNextFramePos
+= ck
.cksize
+ 2 * sizeof(DWORD
);
986 HeapFree(GetProcessHeap(), 0, lppc
);
988 return AVIFILE_AddFrame(This
, cktypePALchange
, n
, ck
.dwDataOffset
, 0);
992 static HRESULT WINAPI
IAVIStream_fnRead(IAVIStream
*iface
, LONG start
, LONG samples
, void *buffer
,
993 LONG buffersize
, LONG
*bytesread
, LONG
*samplesread
)
995 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
999 TRACE("(%p,%d,%d,%p,%d,%p,%p)\n", iface
, start
, samples
, buffer
,
1000 buffersize
, bytesread
, samplesread
);
1002 /* clear return parameters if given */
1003 if (bytesread
!= NULL
)
1005 if (samplesread
!= NULL
)
1008 /* check parameters */
1009 if ((LONG
)This
->sInfo
.dwStart
> start
)
1010 return AVIERR_NODATA
; /* couldn't read before start of stream */
1011 if (This
->sInfo
.dwStart
+ This
->sInfo
.dwLength
< (DWORD
)start
)
1012 return AVIERR_NODATA
; /* start is past end of stream */
1014 /* should we read as much as possible? */
1015 if (samples
== -1) {
1016 /* User should know how much we have read */
1017 if (bytesread
== NULL
&& samplesread
== NULL
)
1018 return AVIERR_BADPARAM
;
1020 if (This
->sInfo
.dwSampleSize
!= 0)
1021 samples
= buffersize
/ This
->sInfo
.dwSampleSize
;
1026 /* limit to end of stream */
1027 if ((LONG
)This
->sInfo
.dwLength
< samples
)
1028 samples
= This
->sInfo
.dwLength
;
1029 if ((start
- This
->sInfo
.dwStart
) > (This
->sInfo
.dwLength
- samples
))
1030 samples
= This
->sInfo
.dwLength
- (start
- This
->sInfo
.dwStart
);
1032 /* nothing to read? Then leave ... */
1036 if (This
->sInfo
.dwSampleSize
!= 0) {
1037 /* fixed samplesize -- we can read over frame/block boundaries */
1044 *bytesread
= samples
*This
->sInfo
.dwSampleSize
;
1046 *samplesread
= samples
;
1050 /* convert start sample to block,offset pair */
1051 AVIFILE_SamplesToBlock(This
, &block
, &offset
);
1053 /* convert samples to bytes */
1054 samples
*= This
->sInfo
.dwSampleSize
;
1056 while (samples
> 0 && buffersize
> 0) {
1058 if (block
!= This
->dwCurrentFrame
) {
1059 hr
= AVIFILE_ReadBlock(This
, block
, NULL
, 0);
1064 size
= min((DWORD
)samples
, (DWORD
)buffersize
);
1065 blocksize
= This
->lpBuffer
[1];
1066 TRACE("blocksize = %u\n",blocksize
);
1067 size
= min(size
, blocksize
- offset
);
1068 memcpy(buffer
, ((BYTE
*)&This
->lpBuffer
[2]) + offset
, size
);
1072 buffer
= ((LPBYTE
)buffer
)+size
;
1076 /* fill out return parameters if given */
1077 if (bytesread
!= NULL
)
1079 if (samplesread
!= NULL
)
1080 *samplesread
+= size
/ This
->sInfo
.dwSampleSize
;
1086 return AVIERR_BUFFERTOOSMALL
;
1088 /* variable samplesize -- we can only read one full frame/block */
1092 assert(start
<= This
->lLastFrame
);
1093 size
= This
->idxFrames
[start
].dwChunkLength
;
1094 if (buffer
!= NULL
&& buffersize
>= size
) {
1095 hr
= AVIFILE_ReadBlock(This
, start
, buffer
, size
);
1098 } else if (buffer
!= NULL
)
1099 return AVIERR_BUFFERTOOSMALL
;
1101 /* fill out return parameters if given */
1102 if (bytesread
!= NULL
)
1104 if (samplesread
!= NULL
)
1105 *samplesread
= samples
;
1111 static HRESULT WINAPI
IAVIStream_fnWrite(IAVIStream
*iface
, LONG start
, LONG samples
, void *buffer
,
1112 LONG buffersize
, DWORD flags
, LONG
*sampwritten
, LONG
*byteswritten
)
1114 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
1118 TRACE("(%p,%d,%d,%p,%d,0x%08X,%p,%p)\n", iface
, start
, samples
,
1119 buffer
, buffersize
, flags
, sampwritten
, byteswritten
);
1121 /* clear return parameters if given */
1122 if (sampwritten
!= NULL
)
1124 if (byteswritten
!= NULL
)
1127 /* check parameters */
1128 if (buffer
== NULL
&& (buffersize
> 0 || samples
> 0))
1129 return AVIERR_BADPARAM
;
1131 /* Have we write permission? */
1132 if ((This
->paf
->uMode
& MMIO_RWMODE
) == 0)
1133 return AVIERR_READONLY
;
1135 switch (This
->sInfo
.fccType
) {
1136 case streamtypeAUDIO
:
1137 ckid
= MAKEAVICKID(cktypeWAVEbytes
, This
->nStream
);
1140 if ((flags
& AVIIF_KEYFRAME
) && buffersize
!= 0)
1141 ckid
= MAKEAVICKID(cktypeDIBbits
, This
->nStream
);
1143 ckid
= MAKEAVICKID(cktypeDIBcompressed
, This
->nStream
);
1147 /* append to end of stream? */
1149 if (This
->lLastFrame
== -1)
1150 start
= This
->sInfo
.dwStart
;
1152 start
= This
->sInfo
.dwLength
;
1153 } else if (This
->lLastFrame
== -1)
1154 This
->sInfo
.dwStart
= start
;
1156 if (This
->sInfo
.dwSampleSize
!= 0) {
1157 /* fixed sample size -- audio like */
1158 if (samples
* This
->sInfo
.dwSampleSize
!= buffersize
)
1159 return AVIERR_BADPARAM
;
1161 /* Couldn't skip audio-like data -- User must supply appropriate silence */
1162 if (This
->sInfo
.dwLength
!= start
)
1163 return AVIERR_UNSUPPORTED
;
1165 /* Convert position to frame/block */
1166 start
= This
->lLastFrame
+ 1;
1168 if ((This
->paf
->fInfo
.dwFlags
& AVIFILEINFO_ISINTERLEAVED
) == 0) {
1169 FIXME(": not interleaved, could collect audio data!\n");
1172 /* variable sample size -- video like */
1174 return AVIERR_UNSUPPORTED
;
1176 /* must we fill up with empty frames? */
1177 if (This
->lLastFrame
!= -1) {
1178 FOURCC ckid2
= MAKEAVICKID(cktypeDIBcompressed
, This
->nStream
);
1180 while (start
> This
->lLastFrame
+ 1) {
1181 hr
= AVIFILE_WriteBlock(This
, This
->lLastFrame
+ 1, ckid2
, 0, NULL
, 0);
1188 /* write the block now */
1189 hr
= AVIFILE_WriteBlock(This
, start
, ckid
, flags
, buffer
, buffersize
);
1190 if (SUCCEEDED(hr
)) {
1191 /* fill out return parameters if given */
1192 if (sampwritten
!= NULL
)
1193 *sampwritten
= samples
;
1194 if (byteswritten
!= NULL
)
1195 *byteswritten
= buffersize
;
1201 static HRESULT WINAPI
IAVIStream_fnDelete(IAVIStream
*iface
, LONG start
, LONG samples
)
1203 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
1205 FIXME("(%p,%d,%d): stub\n", iface
, start
, samples
);
1207 /* check parameters */
1208 if (start
< 0 || samples
< 0)
1209 return AVIERR_BADPARAM
;
1211 /* Delete before start of stream? */
1212 if (start
+ samples
< This
->sInfo
.dwStart
)
1215 /* Delete after end of stream? */
1216 if (start
> This
->sInfo
.dwLength
)
1219 /* For the rest we need write permissions */
1220 if ((This
->paf
->uMode
& MMIO_RWMODE
) == 0)
1221 return AVIERR_READONLY
;
1223 /* 1. overwrite the data with JUNK
1225 * if ISINTERLEAVED {
1226 * 2. concat all neighboured JUNK-blocks in this record to one
1227 * 3. if this record only contains JUNK and is at end set dwNextFramePos
1228 * to start of this record, repeat this.
1230 * 2. concat all neighboured JUNK-blocks.
1231 * 3. if the JUNK block is at the end, then set dwNextFramePos to
1232 * start of this block.
1236 return AVIERR_UNSUPPORTED
;
1239 static HRESULT WINAPI
IAVIStream_fnReadData(IAVIStream
*iface
, DWORD fcc
, void *lp
, LONG
*lpread
)
1241 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
1243 TRACE("(%p,0x%08X,%p,%p)\n", iface
, fcc
, lp
, lpread
);
1245 if (fcc
== ckidSTREAMHANDLERDATA
) {
1246 if (This
->lpHandlerData
!= NULL
&& This
->cbHandlerData
> 0) {
1247 if (lp
== NULL
|| *lpread
<= 0) {
1248 *lpread
= This
->cbHandlerData
;
1252 memcpy(lp
, This
->lpHandlerData
, min(This
->cbHandlerData
, *lpread
));
1253 if (*lpread
< This
->cbHandlerData
)
1254 return AVIERR_BUFFERTOOSMALL
;
1257 return AVIERR_NODATA
;
1259 return ReadExtraChunk(&This
->extra
, fcc
, lp
, lpread
);
1262 static HRESULT WINAPI
IAVIStream_fnWriteData(IAVIStream
*iface
, DWORD fcc
, void *lp
, LONG size
)
1264 IAVIStreamImpl
*This
= impl_from_IAVIStream(iface
);
1266 TRACE("(%p,0x%08x,%p,%d)\n", iface
, fcc
, lp
, size
);
1268 /* check parameters */
1270 return AVIERR_BADPARAM
;
1272 return AVIERR_BADSIZE
;
1274 /* need write permission */
1275 if ((This
->paf
->uMode
& MMIO_RWMODE
) == 0)
1276 return AVIERR_READONLY
;
1278 /* already written something to this file? */
1279 if (This
->paf
->dwMoviChunkPos
!= 0) {
1280 /* the data will be inserted before the 'movi' chunk, so check for
1282 DWORD dwPos
= AVIFILE_ComputeMoviStart(This
->paf
);
1284 /* ckid,size => 2 * sizeof(DWORD) */
1285 dwPos
+= 2 * sizeof(DWORD
) + size
;
1286 if (dwPos
>= This
->paf
->dwMoviChunkPos
- 2 * sizeof(DWORD
))
1287 return AVIERR_UNSUPPORTED
; /* not enough space left */
1290 This
->paf
->fDirty
= TRUE
;
1292 if (fcc
== ckidSTREAMHANDLERDATA
) {
1293 if (This
->lpHandlerData
!= NULL
) {
1294 FIXME(": handler data already set -- overwrite?\n");
1295 return AVIERR_UNSUPPORTED
;
1298 This
->lpHandlerData
= HeapAlloc(GetProcessHeap(), 0, size
);
1299 if (This
->lpHandlerData
== NULL
)
1300 return AVIERR_MEMORY
;
1301 This
->cbHandlerData
= size
;
1302 memcpy(This
->lpHandlerData
, lp
, size
);
1306 return WriteExtraChunk(&This
->extra
, fcc
, lp
, size
);
1309 static HRESULT WINAPI
IAVIStream_fnSetInfo(IAVIStream
*iface
, AVISTREAMINFOW
*info
, LONG infolen
)
1311 FIXME("(%p,%p,%d): stub\n", iface
, info
, infolen
);
1316 static const struct IAVIStreamVtbl avist_vt
= {
1317 IAVIStream_fnQueryInterface
,
1318 IAVIStream_fnAddRef
,
1319 IAVIStream_fnRelease
,
1320 IAVIStream_fnCreate
,
1322 IAVIStream_fnFindSample
,
1323 IAVIStream_fnReadFormat
,
1324 IAVIStream_fnSetFormat
,
1327 IAVIStream_fnDelete
,
1328 IAVIStream_fnReadData
,
1329 IAVIStream_fnWriteData
,
1330 IAVIStream_fnSetInfo
1334 static HRESULT
AVIFILE_AddFrame(IAVIStreamImpl
*This
, DWORD ckid
, DWORD size
, DWORD offset
, DWORD flags
)
1338 /* pre-conditions */
1339 assert(This
!= NULL
);
1341 switch (TWOCCFromFOURCC(ckid
)) {
1343 if (This
->paf
->fInfo
.dwFlags
& AVIFILEINFO_TRUSTCKTYPE
)
1344 flags
|= AVIIF_KEYFRAME
;
1346 case cktypeDIBcompressed
:
1347 if (This
->paf
->fInfo
.dwFlags
& AVIFILEINFO_TRUSTCKTYPE
)
1348 flags
&= ~AVIIF_KEYFRAME
;
1350 case cktypePALchange
:
1351 if (This
->sInfo
.fccType
!= streamtypeVIDEO
) {
1352 ERR(": found palette change in non-video stream!\n");
1353 return AVIERR_BADFORMAT
;
1356 if (This
->idxFmtChanges
== NULL
|| This
->nIdxFmtChanges
<= This
->sInfo
.dwFormatChangeCount
) {
1357 DWORD new_count
= This
->nIdxFmtChanges
+ 16;
1360 if (This
->idxFmtChanges
== NULL
) {
1361 This
->idxFmtChanges
=
1362 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, new_count
* sizeof(AVIINDEXENTRY
));
1363 if (!This
->idxFmtChanges
) return AVIERR_MEMORY
;
1365 new_buffer
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, This
->idxFmtChanges
,
1366 new_count
* sizeof(AVIINDEXENTRY
));
1367 if (!new_buffer
) return AVIERR_MEMORY
;
1368 This
->idxFmtChanges
= new_buffer
;
1370 This
->nIdxFmtChanges
= new_count
;
1373 This
->sInfo
.dwFlags
|= AVISTREAMINFO_FORMATCHANGES
;
1374 n
= ++This
->sInfo
.dwFormatChangeCount
;
1375 This
->idxFmtChanges
[n
].ckid
= This
->lLastFrame
;
1376 This
->idxFmtChanges
[n
].dwFlags
= 0;
1377 This
->idxFmtChanges
[n
].dwChunkOffset
= offset
;
1378 This
->idxFmtChanges
[n
].dwChunkLength
= size
;
1381 case cktypeWAVEbytes
:
1382 if (This
->paf
->fInfo
.dwFlags
& AVIFILEINFO_TRUSTCKTYPE
)
1383 flags
|= AVIIF_KEYFRAME
;
1386 WARN(": unknown TWOCC 0x%04X found\n", TWOCCFromFOURCC(ckid
));
1390 /* first frame is always a keyframe */
1391 if (This
->lLastFrame
== -1)
1392 flags
|= AVIIF_KEYFRAME
;
1394 if (This
->sInfo
.dwSuggestedBufferSize
< size
)
1395 This
->sInfo
.dwSuggestedBufferSize
= size
;
1397 /* get memory for index */
1398 if (This
->idxFrames
== NULL
|| This
->lLastFrame
+ 1 >= This
->nIdxFrames
) {
1399 This
->nIdxFrames
+= 512;
1400 if (This
->idxFrames
== NULL
)
1401 This
->idxFrames
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, This
->nIdxFrames
* sizeof(AVIINDEXENTRY
));
1403 This
->idxFrames
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, This
->idxFrames
,
1404 This
->nIdxFrames
* sizeof(AVIINDEXENTRY
));
1405 if (This
->idxFrames
== NULL
)
1406 return AVIERR_MEMORY
;
1410 This
->idxFrames
[This
->lLastFrame
].ckid
= ckid
;
1411 This
->idxFrames
[This
->lLastFrame
].dwFlags
= flags
;
1412 This
->idxFrames
[This
->lLastFrame
].dwChunkOffset
= offset
;
1413 This
->idxFrames
[This
->lLastFrame
].dwChunkLength
= size
;
1415 /* update AVISTREAMINFO structure if necessary */
1416 if (This
->sInfo
.dwLength
<= This
->lLastFrame
)
1417 This
->sInfo
.dwLength
= This
->lLastFrame
+ 1;
1422 static HRESULT
AVIFILE_AddRecord(IAVIFileImpl
*This
)
1424 /* pre-conditions */
1425 assert(This
!= NULL
&& This
->ppStreams
[0] != NULL
);
1427 if (This
->idxRecords
== NULL
|| This
->cbIdxRecords
/ sizeof(AVIINDEXENTRY
) <= This
->nIdxRecords
) {
1428 DWORD new_count
= This
->cbIdxRecords
+ 1024 * sizeof(AVIINDEXENTRY
);
1430 if (!This
->idxRecords
)
1431 mem
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, new_count
);
1433 mem
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, This
->idxRecords
, new_count
);
1435 This
->cbIdxRecords
= new_count
;
1436 This
->idxRecords
= mem
;
1438 HeapFree(GetProcessHeap(), 0, This
->idxRecords
);
1439 This
->idxRecords
= NULL
;
1440 return AVIERR_MEMORY
;
1444 assert(This
->nIdxRecords
< This
->cbIdxRecords
/sizeof(AVIINDEXENTRY
));
1446 This
->idxRecords
[This
->nIdxRecords
].ckid
= listtypeAVIRECORD
;
1447 This
->idxRecords
[This
->nIdxRecords
].dwFlags
= AVIIF_LIST
;
1448 This
->idxRecords
[This
->nIdxRecords
].dwChunkOffset
=
1449 This
->ckLastRecord
.dwDataOffset
- 2 * sizeof(DWORD
);
1450 This
->idxRecords
[This
->nIdxRecords
].dwChunkLength
=
1451 This
->ckLastRecord
.cksize
;
1452 This
->nIdxRecords
++;
1457 static DWORD
AVIFILE_ComputeMoviStart(IAVIFileImpl
*This
)
1462 /* RIFF,hdrl,movi,avih => (3 * 3 + 2) * sizeof(DWORD) = 11 * sizeof(DWORD) */
1463 dwPos
= 11 * sizeof(DWORD
) + sizeof(MainAVIHeader
);
1465 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++) {
1466 IAVIStreamImpl
*pStream
= This
->ppStreams
[nStream
];
1468 /* strl,strh,strf => (3 + 2 * 2) * sizeof(DWORD) = 7 * sizeof(DWORD) */
1469 dwPos
+= 7 * sizeof(DWORD
) + sizeof(AVIStreamHeader
);
1470 dwPos
+= ((pStream
->cbFormat
+ 1) & ~1U);
1471 if (pStream
->lpHandlerData
!= NULL
&& pStream
->cbHandlerData
> 0)
1472 dwPos
+= 2 * sizeof(DWORD
) + ((pStream
->cbHandlerData
+ 1) & ~1U);
1473 if (pStream
->sInfo
.szName
[0])
1474 dwPos
+= 2 * sizeof(DWORD
) + ((lstrlenW(pStream
->sInfo
.szName
) + 1) & ~1U);
1477 if (This
->dwMoviChunkPos
== 0) {
1478 This
->dwNextFramePos
= dwPos
;
1480 /* pad to multiple of AVI_HEADERSIZE only if we are more than 8 bytes away from it */
1481 if (((dwPos
+ AVI_HEADERSIZE
) & ~(AVI_HEADERSIZE
- 1)) - dwPos
> 2 * sizeof(DWORD
))
1482 This
->dwNextFramePos
= (dwPos
+ AVI_HEADERSIZE
) & ~(AVI_HEADERSIZE
- 1);
1484 This
->dwMoviChunkPos
= This
->dwNextFramePos
- sizeof(DWORD
);
1490 static void AVIFILE_ConstructAVIStream(IAVIFileImpl
*paf
, DWORD nr
, const AVISTREAMINFOW
*asi
)
1492 IAVIStreamImpl
*pstream
;
1494 /* pre-conditions */
1495 assert(paf
!= NULL
);
1496 assert(nr
< MAX_AVISTREAMS
);
1497 assert(paf
->ppStreams
[nr
] != NULL
);
1499 pstream
= paf
->ppStreams
[nr
];
1501 pstream
->IAVIStream_iface
.lpVtbl
= &avist_vt
;
1504 pstream
->nStream
= nr
;
1505 pstream
->dwCurrentFrame
= (DWORD
)-1;
1506 pstream
->lLastFrame
= -1;
1509 memcpy(&pstream
->sInfo
, asi
, sizeof(pstream
->sInfo
));
1511 if (asi
->dwLength
> 0) {
1512 /* pre-allocate mem for frame-index structure */
1513 pstream
->idxFrames
=
1514 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, asi
->dwLength
* sizeof(AVIINDEXENTRY
));
1515 if (pstream
->idxFrames
!= NULL
)
1516 pstream
->nIdxFrames
= asi
->dwLength
;
1518 if (asi
->dwFormatChangeCount
> 0) {
1519 /* pre-allocate mem for formatchange-index structure */
1520 pstream
->idxFmtChanges
=
1521 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, asi
->dwFormatChangeCount
* sizeof(AVIINDEXENTRY
));
1522 if (pstream
->idxFmtChanges
!= NULL
)
1523 pstream
->nIdxFmtChanges
= asi
->dwFormatChangeCount
;
1526 /* These values will be computed */
1527 pstream
->sInfo
.dwLength
= 0;
1528 pstream
->sInfo
.dwSuggestedBufferSize
= 0;
1529 pstream
->sInfo
.dwFormatChangeCount
= 0;
1530 pstream
->sInfo
.dwEditCount
= 1;
1531 if (pstream
->sInfo
.dwSampleSize
> 0)
1532 SetRectEmpty(&pstream
->sInfo
.rcFrame
);
1535 pstream
->sInfo
.dwCaps
= AVIFILECAPS_CANREAD
|AVIFILECAPS_CANWRITE
;
1538 static void AVIFILE_DestructAVIStream(IAVIStreamImpl
*This
)
1540 /* pre-conditions */
1541 assert(This
!= NULL
);
1543 This
->dwCurrentFrame
= (DWORD
)-1;
1544 This
->lLastFrame
= -1;
1546 if (This
->idxFrames
!= NULL
) {
1547 HeapFree(GetProcessHeap(), 0, This
->idxFrames
);
1548 This
->idxFrames
= NULL
;
1549 This
->nIdxFrames
= 0;
1551 HeapFree(GetProcessHeap(), 0, This
->idxFmtChanges
);
1552 This
->idxFmtChanges
= NULL
;
1553 if (This
->lpBuffer
!= NULL
) {
1554 HeapFree(GetProcessHeap(), 0, This
->lpBuffer
);
1555 This
->lpBuffer
= NULL
;
1558 if (This
->lpHandlerData
!= NULL
) {
1559 HeapFree(GetProcessHeap(), 0, This
->lpHandlerData
);
1560 This
->lpHandlerData
= NULL
;
1561 This
->cbHandlerData
= 0;
1563 if (This
->extra
.lp
!= NULL
) {
1564 HeapFree(GetProcessHeap(), 0, This
->extra
.lp
);
1565 This
->extra
.lp
= NULL
;
1568 if (This
->lpFormat
!= NULL
) {
1569 HeapFree(GetProcessHeap(), 0, This
->lpFormat
);
1570 This
->lpFormat
= NULL
;
1575 static HRESULT
AVIFILE_LoadFile(IAVIFileImpl
*This
)
1577 MainAVIHeader MainAVIHdr
;
1582 IAVIStreamImpl
*pStream
;
1586 if (This
->hmmio
== NULL
)
1587 return AVIERR_FILEOPEN
;
1589 /* initialize stream ptr's */
1590 memset(This
->ppStreams
, 0, sizeof(This
->ppStreams
));
1592 /* try to get "RIFF" chunk -- must not be at beginning of file! */
1593 ckRIFF
.fccType
= formtypeAVI
;
1594 if (mmioDescend(This
->hmmio
, &ckRIFF
, NULL
, MMIO_FINDRIFF
) != S_OK
) {
1595 ERR(": not an AVI!\n");
1596 return AVIERR_FILEREAD
;
1599 /* get "LIST" "hdrl" */
1600 ckLIST1
.fccType
= listtypeAVIHEADER
;
1601 hr
= FindChunkAndKeepExtras(&This
->fileextra
, This
->hmmio
, &ckLIST1
, &ckRIFF
, MMIO_FINDLIST
);
1605 /* get "avih" chunk */
1606 ck
.ckid
= ckidAVIMAINHDR
;
1607 hr
= FindChunkAndKeepExtras(&This
->fileextra
, This
->hmmio
, &ck
, &ckLIST1
, MMIO_FINDCHUNK
);
1611 if (ck
.cksize
!= sizeof(MainAVIHdr
)) {
1612 ERR(": invalid size of %d for MainAVIHeader!\n", ck
.cksize
);
1613 return AVIERR_BADFORMAT
;
1615 if (mmioRead(This
->hmmio
, (HPSTR
)&MainAVIHdr
, ck
.cksize
) != ck
.cksize
)
1616 return AVIERR_FILEREAD
;
1618 /* check for MAX_AVISTREAMS limit */
1619 if (MainAVIHdr
.dwStreams
> MAX_AVISTREAMS
) {
1620 WARN("file contains %u streams, but only supports %d -- change MAX_AVISTREAMS!\n", MainAVIHdr
.dwStreams
, MAX_AVISTREAMS
);
1621 return AVIERR_UNSUPPORTED
;
1624 /* adjust permissions if copyrighted material in file */
1625 if (MainAVIHdr
.dwFlags
& AVIFILEINFO_COPYRIGHTED
) {
1626 This
->uMode
&= ~MMIO_RWMODE
;
1627 This
->uMode
|= MMIO_READ
;
1630 /* convert MainAVIHeader into AVIFILINFOW */
1631 memset(&This
->fInfo
, 0, sizeof(This
->fInfo
));
1632 This
->fInfo
.dwRate
= MainAVIHdr
.dwMicroSecPerFrame
;
1633 This
->fInfo
.dwScale
= 1000000;
1634 This
->fInfo
.dwMaxBytesPerSec
= MainAVIHdr
.dwMaxBytesPerSec
;
1635 This
->fInfo
.dwFlags
= MainAVIHdr
.dwFlags
;
1636 This
->fInfo
.dwCaps
= AVIFILECAPS_CANREAD
|AVIFILECAPS_CANWRITE
;
1637 This
->fInfo
.dwLength
= MainAVIHdr
.dwTotalFrames
;
1638 This
->fInfo
.dwStreams
= MainAVIHdr
.dwStreams
;
1639 This
->fInfo
.dwSuggestedBufferSize
= 0;
1640 This
->fInfo
.dwWidth
= MainAVIHdr
.dwWidth
;
1641 This
->fInfo
.dwHeight
= MainAVIHdr
.dwHeight
;
1642 LoadStringW(AVIFILE_hModule
, IDS_AVIFILETYPE
, This
->fInfo
.szFileType
,
1643 sizeof(This
->fInfo
.szFileType
)/sizeof(This
->fInfo
.szFileType
[0]));
1645 /* go back to into header list */
1646 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
1647 return AVIERR_FILEREAD
;
1649 /* foreach stream exists a "LIST","strl" chunk */
1650 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++) {
1651 /* get next nested chunk in this "LIST","strl" */
1652 if (mmioDescend(This
->hmmio
, &ckLIST2
, &ckLIST1
, 0) != S_OK
)
1653 return AVIERR_FILEREAD
;
1655 /* nested chunk must be of type "LIST","strl" -- when not normally JUNK */
1656 if (ckLIST2
.ckid
== FOURCC_LIST
&&
1657 ckLIST2
.fccType
== listtypeSTREAMHEADER
) {
1658 pStream
= This
->ppStreams
[nStream
] =
1659 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IAVIStreamImpl
));
1660 if (pStream
== NULL
)
1661 return AVIERR_MEMORY
;
1662 AVIFILE_ConstructAVIStream(This
, nStream
, NULL
);
1665 while (mmioDescend(This
->hmmio
, &ck
, &ckLIST2
, 0) == S_OK
) {
1667 case ckidSTREAMHANDLERDATA
:
1668 if (pStream
->lpHandlerData
!= NULL
)
1669 return AVIERR_BADFORMAT
;
1670 pStream
->lpHandlerData
= HeapAlloc(GetProcessHeap(), 0, ck
.cksize
);
1671 if (pStream
->lpHandlerData
== NULL
)
1672 return AVIERR_MEMORY
;
1673 pStream
->cbHandlerData
= ck
.cksize
;
1675 if (mmioRead(This
->hmmio
, pStream
->lpHandlerData
, ck
.cksize
) != ck
.cksize
)
1676 return AVIERR_FILEREAD
;
1678 case ckidSTREAMFORMAT
:
1679 if (pStream
->lpFormat
!= NULL
)
1680 return AVIERR_BADFORMAT
;
1684 pStream
->lpFormat
= HeapAlloc(GetProcessHeap(), 0, ck
.cksize
);
1685 if (pStream
->lpFormat
== NULL
)
1686 return AVIERR_MEMORY
;
1687 pStream
->cbFormat
= ck
.cksize
;
1689 if (mmioRead(This
->hmmio
, pStream
->lpFormat
, ck
.cksize
) != ck
.cksize
)
1690 return AVIERR_FILEREAD
;
1692 if (pStream
->sInfo
.fccType
== streamtypeVIDEO
) {
1693 LPBITMAPINFOHEADER lpbi
= pStream
->lpFormat
;
1695 /* some corrections to the video format */
1696 if (lpbi
->biClrUsed
== 0 && lpbi
->biBitCount
<= 8)
1697 lpbi
->biClrUsed
= 1u << lpbi
->biBitCount
;
1698 if (lpbi
->biCompression
== BI_RGB
&& lpbi
->biSizeImage
== 0)
1699 lpbi
->biSizeImage
= DIBWIDTHBYTES(*lpbi
) * lpbi
->biHeight
;
1700 if (lpbi
->biCompression
!= BI_RGB
&& lpbi
->biBitCount
== 8) {
1701 if (pStream
->sInfo
.fccHandler
== mmioFOURCC('R','L','E','0') ||
1702 pStream
->sInfo
.fccHandler
== mmioFOURCC('R','L','E',' '))
1703 lpbi
->biCompression
= BI_RLE8
;
1705 if (lpbi
->biCompression
== BI_RGB
&&
1706 (pStream
->sInfo
.fccHandler
== 0 ||
1707 pStream
->sInfo
.fccHandler
== mmioFOURCC('N','O','N','E')))
1708 pStream
->sInfo
.fccHandler
= comptypeDIB
;
1710 /* init rcFrame if it's empty */
1711 if (IsRectEmpty(&pStream
->sInfo
.rcFrame
))
1712 SetRect(&pStream
->sInfo
.rcFrame
, 0, 0, lpbi
->biWidth
, lpbi
->biHeight
);
1715 case ckidSTREAMHEADER
:
1717 static const WCHAR streamTypeFmt
[] = {'%','4','.','4','h','s',0};
1718 static const WCHAR streamNameFmt
[] = {'%','s',' ','%','s',' ','#','%','d',0};
1720 AVIStreamHeader streamHdr
;
1725 if (ck
.cksize
> sizeof(streamHdr
))
1726 n
= sizeof(streamHdr
);
1728 if (mmioRead(This
->hmmio
, (HPSTR
)&streamHdr
, n
) != n
)
1729 return AVIERR_FILEREAD
;
1731 pStream
->sInfo
.fccType
= streamHdr
.fccType
;
1732 pStream
->sInfo
.fccHandler
= streamHdr
.fccHandler
;
1733 pStream
->sInfo
.dwFlags
= streamHdr
.dwFlags
;
1734 pStream
->sInfo
.wPriority
= streamHdr
.wPriority
;
1735 pStream
->sInfo
.wLanguage
= streamHdr
.wLanguage
;
1736 pStream
->sInfo
.dwInitialFrames
= streamHdr
.dwInitialFrames
;
1737 pStream
->sInfo
.dwScale
= streamHdr
.dwScale
;
1738 pStream
->sInfo
.dwRate
= streamHdr
.dwRate
;
1739 pStream
->sInfo
.dwStart
= streamHdr
.dwStart
;
1740 pStream
->sInfo
.dwLength
= streamHdr
.dwLength
;
1741 pStream
->sInfo
.dwSuggestedBufferSize
= 0;
1742 pStream
->sInfo
.dwQuality
= streamHdr
.dwQuality
;
1743 pStream
->sInfo
.dwSampleSize
= streamHdr
.dwSampleSize
;
1744 pStream
->sInfo
.rcFrame
.left
= streamHdr
.rcFrame
.left
;
1745 pStream
->sInfo
.rcFrame
.top
= streamHdr
.rcFrame
.top
;
1746 pStream
->sInfo
.rcFrame
.right
= streamHdr
.rcFrame
.right
;
1747 pStream
->sInfo
.rcFrame
.bottom
= streamHdr
.rcFrame
.bottom
;
1748 pStream
->sInfo
.dwEditCount
= 0;
1749 pStream
->sInfo
.dwFormatChangeCount
= 0;
1751 /* generate description for stream like "filename.avi Type #n" */
1752 if (streamHdr
.fccType
== streamtypeVIDEO
)
1753 LoadStringW(AVIFILE_hModule
, IDS_VIDEO
, szType
, sizeof(szType
)/sizeof(szType
[0]));
1754 else if (streamHdr
.fccType
== streamtypeAUDIO
)
1755 LoadStringW(AVIFILE_hModule
, IDS_AUDIO
, szType
, sizeof(szType
)/sizeof(szType
[0]));
1757 wsprintfW(szType
, streamTypeFmt
, (char*)&streamHdr
.fccType
);
1759 /* get count of this streamtype up to this stream */
1761 for (n
= nStream
; 0 <= n
; n
--) {
1762 if (This
->ppStreams
[n
]->sInfo
.fccHandler
== streamHdr
.fccType
)
1766 memset(pStream
->sInfo
.szName
, 0, sizeof(pStream
->sInfo
.szName
));
1768 /* FIXME: avoid overflow -- better use wsnprintfW, which doesn't exists ! */
1769 wsprintfW(pStream
->sInfo
.szName
, streamNameFmt
,
1770 AVIFILE_BasenameW(This
->szFileName
), szType
, count
);
1773 case ckidSTREAMNAME
:
1774 { /* streamname will be saved as ASCII string */
1775 LPSTR str
= HeapAlloc(GetProcessHeap(), 0, ck
.cksize
);
1777 return AVIERR_MEMORY
;
1779 if (mmioRead(This
->hmmio
, str
, ck
.cksize
) != ck
.cksize
)
1781 HeapFree(GetProcessHeap(), 0, str
);
1782 return AVIERR_FILEREAD
;
1785 MultiByteToWideChar(CP_ACP
, 0, str
, -1, pStream
->sInfo
.szName
,
1786 sizeof(pStream
->sInfo
.szName
)/sizeof(pStream
->sInfo
.szName
[0]));
1788 HeapFree(GetProcessHeap(), 0, str
);
1791 case ckidAVIPADDING
:
1792 case mmioFOURCC('p','a','d','d'):
1795 WARN(": found extra chunk 0x%08X\n", ck
.ckid
);
1796 hr
= ReadChunkIntoExtra(&pStream
->extra
, This
->hmmio
, &ck
);
1800 if (pStream
->lpFormat
!= NULL
&& pStream
->sInfo
.fccType
== streamtypeAUDIO
)
1802 WAVEFORMATEX
*wfx
= pStream
->lpFormat
; /* wfx->nBlockAlign = wfx->nChannels * wfx->wBitsPerSample / 8; could be added */
1803 pStream
->sInfo
.dwSampleSize
= wfx
->nBlockAlign
; /* to deal with corrupt wfx->nBlockAlign but Windows doesn't do this */
1804 TRACE("Block size reset to %u, chan=%u bpp=%u\n", wfx
->nBlockAlign
, wfx
->nChannels
, wfx
->wBitsPerSample
);
1805 pStream
->sInfo
.dwScale
= 1;
1806 pStream
->sInfo
.dwRate
= wfx
->nSamplesPerSec
;
1808 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
1809 return AVIERR_FILEREAD
;
1812 /* nested chunks in "LIST","hdrl" which are not of type "LIST","strl" */
1813 hr
= ReadChunkIntoExtra(&This
->fileextra
, This
->hmmio
, &ckLIST2
);
1817 if (mmioAscend(This
->hmmio
, &ckLIST2
, 0) != S_OK
)
1818 return AVIERR_FILEREAD
;
1821 /* read any extra headers in "LIST","hdrl" */
1822 FindChunkAndKeepExtras(&This
->fileextra
, This
->hmmio
, &ck
, &ckLIST1
, 0);
1823 if (mmioAscend(This
->hmmio
, &ckLIST1
, 0) != S_OK
)
1824 return AVIERR_FILEREAD
;
1826 /* search "LIST","movi" chunk in "RIFF","AVI " */
1827 ckLIST1
.fccType
= listtypeAVIMOVIE
;
1828 hr
= FindChunkAndKeepExtras(&This
->fileextra
, This
->hmmio
, &ckLIST1
, &ckRIFF
,
1833 This
->dwMoviChunkPos
= ckLIST1
.dwDataOffset
;
1834 This
->dwIdxChunkPos
= ckLIST1
.cksize
+ ckLIST1
.dwDataOffset
;
1835 if (mmioAscend(This
->hmmio
, &ckLIST1
, 0) != S_OK
)
1836 return AVIERR_FILEREAD
;
1838 /* try to find an index */
1839 ck
.ckid
= ckidAVINEWINDEX
;
1840 hr
= FindChunkAndKeepExtras(&This
->fileextra
, This
->hmmio
,
1841 &ck
, &ckRIFF
, MMIO_FINDCHUNK
);
1842 if (SUCCEEDED(hr
) && ck
.cksize
> 0) {
1843 if (FAILED(AVIFILE_LoadIndex(This
, ck
.cksize
, ckLIST1
.dwDataOffset
)))
1844 This
->fInfo
.dwFlags
&= ~AVIFILEINFO_HASINDEX
;
1847 /* when we haven't found an index or it's bad, then build one
1848 * by parsing 'movi' chunk */
1849 if ((This
->fInfo
.dwFlags
& AVIFILEINFO_HASINDEX
) == 0) {
1850 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++)
1851 This
->ppStreams
[nStream
]->lLastFrame
= -1;
1853 if (mmioSeek(This
->hmmio
, ckLIST1
.dwDataOffset
+ sizeof(DWORD
), SEEK_SET
) == -1) {
1854 ERR(": Oops, can't seek back to 'movi' chunk!\n");
1855 return AVIERR_FILEREAD
;
1858 /* seek through the 'movi' list until end */
1859 while (mmioDescend(This
->hmmio
, &ck
, &ckLIST1
, 0) == S_OK
) {
1860 if (ck
.ckid
!= FOURCC_LIST
) {
1861 if (mmioAscend(This
->hmmio
, &ck
, 0) == S_OK
) {
1862 nStream
= StreamFromFOURCC(ck
.ckid
);
1864 if (nStream
> This
->fInfo
.dwStreams
)
1865 return AVIERR_BADFORMAT
;
1867 AVIFILE_AddFrame(This
->ppStreams
[nStream
], ck
.ckid
, ck
.cksize
,
1868 ck
.dwDataOffset
- 2 * sizeof(DWORD
), 0);
1870 nStream
= StreamFromFOURCC(ck
.ckid
);
1871 WARN(": file seems to be truncated!\n");
1872 if (nStream
<= This
->fInfo
.dwStreams
&&
1873 This
->ppStreams
[nStream
]->sInfo
.dwSampleSize
> 0) {
1874 ck
.cksize
= mmioSeek(This
->hmmio
, 0, SEEK_END
);
1875 if (ck
.cksize
!= -1) {
1876 ck
.cksize
-= ck
.dwDataOffset
;
1877 ck
.cksize
&= ~(This
->ppStreams
[nStream
]->sInfo
.dwSampleSize
- 1);
1879 AVIFILE_AddFrame(This
->ppStreams
[nStream
], ck
.ckid
, ck
.cksize
,
1880 ck
.dwDataOffset
- 2 * sizeof(DWORD
), 0);
1888 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++)
1890 DWORD sugbuf
= This
->ppStreams
[nStream
]->sInfo
.dwSuggestedBufferSize
;
1891 if (This
->fInfo
.dwSuggestedBufferSize
< sugbuf
)
1892 This
->fInfo
.dwSuggestedBufferSize
= sugbuf
;
1895 /* find other chunks */
1896 FindChunkAndKeepExtras(&This
->fileextra
, This
->hmmio
, &ck
, &ckRIFF
, 0);
1901 static HRESULT
AVIFILE_LoadIndex(const IAVIFileImpl
*This
, DWORD size
, DWORD offset
)
1905 HRESULT hr
= AVIERR_OK
;
1906 BOOL bAbsolute
= TRUE
;
1908 lp
= HeapAlloc(GetProcessHeap(), 0, IDX_PER_BLOCK
* sizeof(AVIINDEXENTRY
));
1910 return AVIERR_MEMORY
;
1912 /* adjust limits for index tables, so that inserting will be faster */
1913 for (n
= 0; n
< This
->fInfo
.dwStreams
; n
++) {
1914 IAVIStreamImpl
*pStream
= This
->ppStreams
[n
];
1916 pStream
->lLastFrame
= -1;
1918 if (pStream
->idxFrames
!= NULL
) {
1919 HeapFree(GetProcessHeap(), 0, pStream
->idxFrames
);
1920 pStream
->idxFrames
= NULL
;
1921 pStream
->nIdxFrames
= 0;
1924 if (pStream
->sInfo
.dwSampleSize
!= 0) {
1925 if (n
> 0 && This
->fInfo
.dwFlags
& AVIFILEINFO_ISINTERLEAVED
) {
1926 pStream
->nIdxFrames
= This
->ppStreams
[0]->nIdxFrames
;
1927 } else if (pStream
->sInfo
.dwSuggestedBufferSize
) {
1928 pStream
->nIdxFrames
=
1929 pStream
->sInfo
.dwLength
/ pStream
->sInfo
.dwSuggestedBufferSize
;
1932 pStream
->nIdxFrames
= pStream
->sInfo
.dwLength
;
1934 pStream
->idxFrames
=
1935 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, pStream
->nIdxFrames
* sizeof(AVIINDEXENTRY
));
1936 if (pStream
->idxFrames
== NULL
&& pStream
->nIdxFrames
> 0) {
1937 pStream
->nIdxFrames
= 0;
1938 HeapFree(GetProcessHeap(), 0, lp
);
1939 return AVIERR_MEMORY
;
1945 LONG read
= min(IDX_PER_BLOCK
* sizeof(AVIINDEXENTRY
), size
);
1947 if (mmioRead(This
->hmmio
, (HPSTR
)lp
, read
) != read
) {
1948 hr
= AVIERR_FILEREAD
;
1953 if (pos
== (DWORD
)-1)
1954 pos
= offset
- lp
->dwChunkOffset
+ sizeof(DWORD
);
1956 AVIFILE_ParseIndex(This
, lp
, read
/ sizeof(AVIINDEXENTRY
),
1960 HeapFree(GetProcessHeap(), 0, lp
);
1963 for (n
= 0; n
< This
->fInfo
.dwStreams
; n
++) {
1964 IAVIStreamImpl
*pStream
= This
->ppStreams
[n
];
1966 if (pStream
->sInfo
.dwSampleSize
== 0 &&
1967 pStream
->sInfo
.dwLength
!= pStream
->lLastFrame
+1)
1968 ERR("stream %u length mismatch: dwLength=%u found=%d\n",
1969 n
, pStream
->sInfo
.dwLength
, pStream
->lLastFrame
);
1975 static HRESULT
AVIFILE_ParseIndex(const IAVIFileImpl
*This
, AVIINDEXENTRY
*lp
,
1976 LONG count
, DWORD pos
, BOOL
*bAbsolute
)
1979 return AVIERR_BADPARAM
;
1981 for (; count
> 0; count
--, lp
++) {
1982 WORD nStream
= StreamFromFOURCC(lp
->ckid
);
1984 if (lp
->ckid
== listtypeAVIRECORD
|| nStream
== 0x7F)
1985 continue; /* skip these */
1987 if (nStream
> This
->fInfo
.dwStreams
)
1988 return AVIERR_BADFORMAT
;
1990 if (*bAbsolute
&& lp
->dwChunkOffset
< This
->dwMoviChunkPos
)
1994 lp
->dwChunkOffset
+= sizeof(DWORD
);
1996 lp
->dwChunkOffset
+= pos
;
1998 if (FAILED(AVIFILE_AddFrame(This
->ppStreams
[nStream
], lp
->ckid
, lp
->dwChunkLength
, lp
->dwChunkOffset
, lp
->dwFlags
)))
1999 return AVIERR_MEMORY
;
2005 static HRESULT
AVIFILE_ReadBlock(IAVIStreamImpl
*This
, DWORD pos
,
2006 LPVOID buffer
, DWORD size
)
2008 /* pre-conditions */
2009 assert(This
!= NULL
);
2010 assert(This
->paf
!= NULL
);
2011 assert(This
->paf
->hmmio
!= NULL
);
2012 assert(This
->sInfo
.dwStart
<= pos
&& pos
< This
->sInfo
.dwLength
);
2013 assert(pos
<= This
->lLastFrame
);
2015 /* should we read as much as block gives us? */
2016 if (size
== 0 || size
> This
->idxFrames
[pos
].dwChunkLength
)
2017 size
= This
->idxFrames
[pos
].dwChunkLength
;
2019 /* read into out own buffer or given one? */
2020 if (buffer
== NULL
) {
2021 /* we also read the chunk */
2022 size
+= 2 * sizeof(DWORD
);
2024 /* check that buffer is big enough -- don't trust dwSuggestedBufferSize */
2025 if (This
->lpBuffer
== NULL
|| This
->cbBuffer
< size
) {
2026 DWORD maxSize
= max(size
, This
->sInfo
.dwSuggestedBufferSize
);
2028 if (This
->lpBuffer
== NULL
) {
2029 This
->lpBuffer
= HeapAlloc(GetProcessHeap(), 0, maxSize
);
2030 if (!This
->lpBuffer
) return AVIERR_MEMORY
;
2032 void *new_buffer
= HeapReAlloc(GetProcessHeap(), 0, This
->lpBuffer
, maxSize
);
2033 if (!new_buffer
) return AVIERR_MEMORY
;
2034 This
->lpBuffer
= new_buffer
;
2036 This
->cbBuffer
= maxSize
;
2039 /* now read the complete chunk into our buffer */
2040 if (mmioSeek(This
->paf
->hmmio
, This
->idxFrames
[pos
].dwChunkOffset
, SEEK_SET
) == -1)
2041 return AVIERR_FILEREAD
;
2042 if (mmioRead(This
->paf
->hmmio
, (HPSTR
)This
->lpBuffer
, size
) != size
)
2043 return AVIERR_FILEREAD
;
2045 /* check if it was the correct block which we have read */
2046 if (This
->lpBuffer
[0] != This
->idxFrames
[pos
].ckid
||
2047 This
->lpBuffer
[1] != This
->idxFrames
[pos
].dwChunkLength
) {
2048 ERR(": block %d not found at 0x%08X\n", pos
, This
->idxFrames
[pos
].dwChunkOffset
);
2049 ERR(": Index says: '%4.4s'(0x%08X) size 0x%08X\n",
2050 (char*)&This
->idxFrames
[pos
].ckid
, This
->idxFrames
[pos
].ckid
,
2051 This
->idxFrames
[pos
].dwChunkLength
);
2052 ERR(": Data says: '%4.4s'(0x%08X) size 0x%08X\n",
2053 (char*)&This
->lpBuffer
[0], This
->lpBuffer
[0], This
->lpBuffer
[1]);
2054 return AVIERR_FILEREAD
;
2057 if (mmioSeek(This
->paf
->hmmio
, This
->idxFrames
[pos
].dwChunkOffset
+ 2 * sizeof(DWORD
), SEEK_SET
) == -1)
2058 return AVIERR_FILEREAD
;
2059 if (mmioRead(This
->paf
->hmmio
, buffer
, size
) != size
)
2060 return AVIERR_FILEREAD
;
2066 static void AVIFILE_SamplesToBlock(const IAVIStreamImpl
*This
, LPLONG pos
, LPLONG offset
)
2070 /* pre-conditions */
2071 assert(This
!= NULL
);
2072 assert(pos
!= NULL
);
2073 assert(offset
!= NULL
);
2074 assert(This
->sInfo
.dwSampleSize
!= 0);
2075 assert(*pos
>= This
->sInfo
.dwStart
);
2077 /* convert start sample to start bytes */
2078 (*offset
) = (*pos
) - This
->sInfo
.dwStart
;
2079 (*offset
) *= This
->sInfo
.dwSampleSize
;
2081 /* convert bytes to block number */
2082 for (block
= 0; block
<= This
->lLastFrame
; block
++) {
2083 if (This
->idxFrames
[block
].dwChunkLength
<= *offset
)
2084 (*offset
) -= This
->idxFrames
[block
].dwChunkLength
;
2092 static HRESULT
AVIFILE_SaveFile(IAVIFileImpl
*This
)
2094 MainAVIHeader MainAVIHdr
;
2095 IAVIStreamImpl
* pStream
;
2104 /* initialize some things */
2105 if (This
->dwMoviChunkPos
== 0)
2106 AVIFILE_ComputeMoviStart(This
);
2108 /* written one record too much? */
2109 if (This
->ckLastRecord
.dwFlags
& MMIO_DIRTY
) {
2110 This
->dwNextFramePos
-= 3 * sizeof(DWORD
);
2111 if (This
->nIdxRecords
> 0)
2112 This
->nIdxRecords
--;
2115 AVIFILE_UpdateInfo(This
);
2117 assert(This
->fInfo
.dwScale
!= 0);
2119 memset(&MainAVIHdr
, 0, sizeof(MainAVIHdr
));
2120 MainAVIHdr
.dwMicroSecPerFrame
= MulDiv(This
->fInfo
.dwRate
, 1000000,
2121 This
->fInfo
.dwScale
);
2122 MainAVIHdr
.dwMaxBytesPerSec
= This
->fInfo
.dwMaxBytesPerSec
;
2123 MainAVIHdr
.dwPaddingGranularity
= AVI_HEADERSIZE
;
2124 MainAVIHdr
.dwFlags
= This
->fInfo
.dwFlags
;
2125 MainAVIHdr
.dwTotalFrames
= This
->fInfo
.dwLength
;
2126 MainAVIHdr
.dwInitialFrames
= 0;
2127 MainAVIHdr
.dwStreams
= This
->fInfo
.dwStreams
;
2128 MainAVIHdr
.dwSuggestedBufferSize
= This
->fInfo
.dwSuggestedBufferSize
;
2129 MainAVIHdr
.dwWidth
= This
->fInfo
.dwWidth
;
2130 MainAVIHdr
.dwHeight
= This
->fInfo
.dwHeight
;
2131 MainAVIHdr
.dwInitialFrames
= This
->dwInitialFrames
;
2133 /* now begin writing ... */
2134 mmioSeek(This
->hmmio
, 0, SEEK_SET
);
2138 ckRIFF
.fccType
= formtypeAVI
;
2139 if (mmioCreateChunk(This
->hmmio
, &ckRIFF
, MMIO_CREATERIFF
) != S_OK
)
2140 return AVIERR_FILEWRITE
;
2142 /* AVI headerlist */
2144 ckLIST1
.fccType
= listtypeAVIHEADER
;
2145 if (mmioCreateChunk(This
->hmmio
, &ckLIST1
, MMIO_CREATELIST
) != S_OK
)
2146 return AVIERR_FILEWRITE
;
2149 ck
.ckid
= ckidAVIMAINHDR
;
2150 ck
.cksize
= sizeof(MainAVIHdr
);
2152 if (mmioCreateChunk(This
->hmmio
, &ck
, 0) != S_OK
)
2153 return AVIERR_FILEWRITE
;
2154 if (mmioWrite(This
->hmmio
, (HPSTR
)&MainAVIHdr
, ck
.cksize
) != ck
.cksize
)
2155 return AVIERR_FILEWRITE
;
2156 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
2157 return AVIERR_FILEWRITE
;
2159 /* write the headers of each stream into a separate streamheader list */
2160 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++) {
2161 AVIStreamHeader strHdr
;
2163 pStream
= This
->ppStreams
[nStream
];
2165 /* begin the new streamheader list */
2167 ckLIST2
.fccType
= listtypeSTREAMHEADER
;
2168 if (mmioCreateChunk(This
->hmmio
, &ckLIST2
, MMIO_CREATELIST
) != S_OK
)
2169 return AVIERR_FILEWRITE
;
2171 /* create an AVIStreamHeader from the AVSTREAMINFO */
2172 strHdr
.fccType
= pStream
->sInfo
.fccType
;
2173 strHdr
.fccHandler
= pStream
->sInfo
.fccHandler
;
2174 strHdr
.dwFlags
= pStream
->sInfo
.dwFlags
;
2175 strHdr
.wPriority
= pStream
->sInfo
.wPriority
;
2176 strHdr
.wLanguage
= pStream
->sInfo
.wLanguage
;
2177 strHdr
.dwInitialFrames
= pStream
->sInfo
.dwInitialFrames
;
2178 strHdr
.dwScale
= pStream
->sInfo
.dwScale
;
2179 strHdr
.dwRate
= pStream
->sInfo
.dwRate
;
2180 strHdr
.dwStart
= pStream
->sInfo
.dwStart
;
2181 strHdr
.dwLength
= pStream
->sInfo
.dwLength
;
2182 strHdr
.dwSuggestedBufferSize
= pStream
->sInfo
.dwSuggestedBufferSize
;
2183 strHdr
.dwQuality
= pStream
->sInfo
.dwQuality
;
2184 strHdr
.dwSampleSize
= pStream
->sInfo
.dwSampleSize
;
2185 strHdr
.rcFrame
.left
= pStream
->sInfo
.rcFrame
.left
;
2186 strHdr
.rcFrame
.top
= pStream
->sInfo
.rcFrame
.top
;
2187 strHdr
.rcFrame
.right
= pStream
->sInfo
.rcFrame
.right
;
2188 strHdr
.rcFrame
.bottom
= pStream
->sInfo
.rcFrame
.bottom
;
2190 /* now write the AVIStreamHeader */
2191 ck
.ckid
= ckidSTREAMHEADER
;
2192 ck
.cksize
= sizeof(strHdr
);
2193 if (mmioCreateChunk(This
->hmmio
, &ck
, 0) != S_OK
)
2194 return AVIERR_FILEWRITE
;
2195 if (mmioWrite(This
->hmmio
, (HPSTR
)&strHdr
, ck
.cksize
) != ck
.cksize
)
2196 return AVIERR_FILEWRITE
;
2197 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
2198 return AVIERR_FILEWRITE
;
2200 /* ... the hopefully ever present streamformat ... */
2201 ck
.ckid
= ckidSTREAMFORMAT
;
2202 ck
.cksize
= pStream
->cbFormat
;
2203 if (mmioCreateChunk(This
->hmmio
, &ck
, 0) != S_OK
)
2204 return AVIERR_FILEWRITE
;
2205 if (pStream
->lpFormat
!= NULL
&& ck
.cksize
> 0) {
2206 if (mmioWrite(This
->hmmio
, pStream
->lpFormat
, ck
.cksize
) != ck
.cksize
)
2207 return AVIERR_FILEWRITE
;
2209 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
2210 return AVIERR_FILEWRITE
;
2212 /* ... some optional existing handler data ... */
2213 if (pStream
->lpHandlerData
!= NULL
&& pStream
->cbHandlerData
> 0) {
2214 ck
.ckid
= ckidSTREAMHANDLERDATA
;
2215 ck
.cksize
= pStream
->cbHandlerData
;
2216 if (mmioCreateChunk(This
->hmmio
, &ck
, 0) != S_OK
)
2217 return AVIERR_FILEWRITE
;
2218 if (mmioWrite(This
->hmmio
, pStream
->lpHandlerData
, ck
.cksize
) != ck
.cksize
)
2219 return AVIERR_FILEWRITE
;
2220 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
2221 return AVIERR_FILEWRITE
;
2224 /* ... some optional additional extra chunk for this stream ... */
2225 if (pStream
->extra
.lp
!= NULL
&& pStream
->extra
.cb
> 0) {
2226 /* the chunk header(s) are already in the structure */
2227 if (mmioWrite(This
->hmmio
, pStream
->extra
.lp
, pStream
->extra
.cb
) != pStream
->extra
.cb
)
2228 return AVIERR_FILEWRITE
;
2231 /* ... an optional name for this stream ... */
2232 if (pStream
->sInfo
.szName
[0]) {
2235 ck
.ckid
= ckidSTREAMNAME
;
2236 ck
.cksize
= lstrlenW(pStream
->sInfo
.szName
) + 1;
2237 if (ck
.cksize
& 1) /* align */
2239 if (mmioCreateChunk(This
->hmmio
, &ck
, 0) != S_OK
)
2240 return AVIERR_FILEWRITE
;
2242 /* the streamname must be saved in ASCII not Unicode */
2243 str
= HeapAlloc(GetProcessHeap(), 0, ck
.cksize
);
2245 return AVIERR_MEMORY
;
2246 WideCharToMultiByte(CP_ACP
, 0, pStream
->sInfo
.szName
, -1, str
,
2247 ck
.cksize
, NULL
, NULL
);
2249 if (mmioWrite(This
->hmmio
, str
, ck
.cksize
) != ck
.cksize
) {
2250 HeapFree(GetProcessHeap(), 0, str
);
2251 return AVIERR_FILEWRITE
;
2254 HeapFree(GetProcessHeap(), 0, str
);
2255 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
2256 return AVIERR_FILEWRITE
;
2259 /* close streamheader list for this stream */
2260 if (mmioAscend(This
->hmmio
, &ckLIST2
, 0) != S_OK
)
2261 return AVIERR_FILEWRITE
;
2262 } /* for (0 <= nStream < MainAVIHdr.dwStreams) */
2264 /* close the aviheader list */
2265 if (mmioAscend(This
->hmmio
, &ckLIST1
, 0) != S_OK
)
2266 return AVIERR_FILEWRITE
;
2268 /* check for padding to pre-guessed 'movi'-chunk position */
2269 dwPos
= ckLIST1
.dwDataOffset
+ ckLIST1
.cksize
;
2270 if (This
->dwMoviChunkPos
- 2 * sizeof(DWORD
) > dwPos
) {
2271 ck
.ckid
= ckidAVIPADDING
;
2272 ck
.cksize
= This
->dwMoviChunkPos
- dwPos
- 4 * sizeof(DWORD
);
2273 assert((LONG
)ck
.cksize
>= 0);
2275 if (mmioCreateChunk(This
->hmmio
, &ck
, 0) != S_OK
)
2276 return AVIERR_FILEWRITE
;
2277 if (mmioSeek(This
->hmmio
, ck
.cksize
, SEEK_CUR
) == -1)
2278 return AVIERR_FILEWRITE
;
2279 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
2280 return AVIERR_FILEWRITE
;
2283 /* now write the 'movi' chunk */
2284 mmioSeek(This
->hmmio
, This
->dwMoviChunkPos
- 2 * sizeof(DWORD
), SEEK_SET
);
2286 ckLIST1
.fccType
= listtypeAVIMOVIE
;
2287 if (mmioCreateChunk(This
->hmmio
, &ckLIST1
, MMIO_CREATELIST
) != S_OK
)
2288 return AVIERR_FILEWRITE
;
2289 if (mmioSeek(This
->hmmio
, This
->dwNextFramePos
, SEEK_SET
) == -1)
2290 return AVIERR_FILEWRITE
;
2291 if (mmioAscend(This
->hmmio
, &ckLIST1
, 0) != S_OK
)
2292 return AVIERR_FILEWRITE
;
2294 /* write 'idx1' chunk */
2295 hr
= AVIFILE_SaveIndex(This
);
2299 /* write optional extra file chunks */
2300 if (This
->fileextra
.lp
!= NULL
&& This
->fileextra
.cb
> 0) {
2301 /* as for the streams, are the chunk header(s) in the structure */
2302 if (mmioWrite(This
->hmmio
, This
->fileextra
.lp
, This
->fileextra
.cb
) != This
->fileextra
.cb
)
2303 return AVIERR_FILEWRITE
;
2306 /* close RIFF chunk */
2307 if (mmioAscend(This
->hmmio
, &ckRIFF
, 0) != S_OK
)
2308 return AVIERR_FILEWRITE
;
2310 /* add some JUNK at end for bad parsers */
2311 memset(&ckRIFF
, 0, sizeof(ckRIFF
));
2312 mmioWrite(This
->hmmio
, (HPSTR
)&ckRIFF
, sizeof(ckRIFF
));
2313 mmioFlush(This
->hmmio
, 0);
2318 static HRESULT
AVIFILE_SaveIndex(const IAVIFileImpl
*This
)
2320 IAVIStreamImpl
*pStream
;
2326 ck
.ckid
= ckidAVINEWINDEX
;
2328 if (mmioCreateChunk(This
->hmmio
, &ck
, 0) != S_OK
)
2329 return AVIERR_FILEWRITE
;
2331 if (This
->fInfo
.dwFlags
& AVIFILEINFO_ISINTERLEAVED
) {
2332 /* is interleaved -- write block of corresponding frames */
2333 LONG lInitialFrames
= 0;
2337 if (This
->ppStreams
[0]->sInfo
.dwSampleSize
== 0)
2340 stepsize
= AVIStreamTimeToSample(&This
->ppStreams
[0]->IAVIStream_iface
, 1000000);
2342 assert(stepsize
> 0);
2344 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++) {
2345 if (lInitialFrames
< This
->ppStreams
[nStream
]->sInfo
.dwInitialFrames
)
2346 lInitialFrames
= This
->ppStreams
[nStream
]->sInfo
.dwInitialFrames
;
2349 for (i
= -lInitialFrames
; i
< (LONG
)This
->fInfo
.dwLength
- lInitialFrames
;
2351 DWORD nFrame
= lInitialFrames
+ i
;
2353 assert(nFrame
< This
->nIdxRecords
);
2355 idx
.ckid
= listtypeAVIRECORD
;
2356 idx
.dwFlags
= AVIIF_LIST
;
2357 idx
.dwChunkLength
= This
->idxRecords
[nFrame
].dwChunkLength
;
2358 idx
.dwChunkOffset
= This
->idxRecords
[nFrame
].dwChunkOffset
2359 - This
->dwMoviChunkPos
;
2360 if (mmioWrite(This
->hmmio
, (HPSTR
)&idx
, sizeof(idx
)) != sizeof(idx
))
2361 return AVIERR_FILEWRITE
;
2363 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++) {
2364 pStream
= This
->ppStreams
[nStream
];
2366 /* heave we reached start of this stream? */
2367 if (-(LONG
)pStream
->sInfo
.dwInitialFrames
> i
)
2370 if (pStream
->sInfo
.dwInitialFrames
< lInitialFrames
)
2371 nFrame
-= (lInitialFrames
- pStream
->sInfo
.dwInitialFrames
);
2373 /* reached end of this stream? */
2374 if (pStream
->lLastFrame
<= nFrame
)
2377 if ((pStream
->sInfo
.dwFlags
& AVISTREAMINFO_FORMATCHANGES
) &&
2378 pStream
->sInfo
.dwFormatChangeCount
!= 0 &&
2379 pStream
->idxFmtChanges
!= NULL
) {
2382 for (pos
= 0; pos
< pStream
->sInfo
.dwFormatChangeCount
; pos
++) {
2383 if (pStream
->idxFmtChanges
[pos
].ckid
== nFrame
) {
2384 idx
.dwFlags
= AVIIF_NOTIME
;
2385 idx
.ckid
= MAKEAVICKID(cktypePALchange
, pStream
->nStream
);
2386 idx
.dwChunkLength
= pStream
->idxFmtChanges
[pos
].dwChunkLength
;
2387 idx
.dwChunkOffset
= pStream
->idxFmtChanges
[pos
].dwChunkOffset
2388 - This
->dwMoviChunkPos
;
2390 if (mmioWrite(This
->hmmio
, (HPSTR
)&idx
, sizeof(idx
)) != sizeof(idx
))
2391 return AVIERR_FILEWRITE
;
2395 } /* if have formatchanges */
2397 idx
.ckid
= pStream
->idxFrames
[nFrame
].ckid
;
2398 idx
.dwFlags
= pStream
->idxFrames
[nFrame
].dwFlags
;
2399 idx
.dwChunkLength
= pStream
->idxFrames
[nFrame
].dwChunkLength
;
2400 idx
.dwChunkOffset
= pStream
->idxFrames
[nFrame
].dwChunkOffset
2401 - This
->dwMoviChunkPos
;
2402 if (mmioWrite(This
->hmmio
, (HPSTR
)&idx
, sizeof(idx
)) != sizeof(idx
))
2403 return AVIERR_FILEWRITE
;
2407 /* not interleaved -- write index for each stream at once */
2408 for (nStream
= 0; nStream
< This
->fInfo
.dwStreams
; nStream
++) {
2409 pStream
= This
->ppStreams
[nStream
];
2411 for (n
= 0; n
<= pStream
->lLastFrame
; n
++) {
2412 if ((pStream
->sInfo
.dwFlags
& AVISTREAMINFO_FORMATCHANGES
) &&
2413 (pStream
->sInfo
.dwFormatChangeCount
!= 0)) {
2416 for (pos
= 0; pos
< pStream
->sInfo
.dwFormatChangeCount
; pos
++) {
2417 if (pStream
->idxFmtChanges
[pos
].ckid
== n
) {
2418 idx
.dwFlags
= AVIIF_NOTIME
;
2419 idx
.ckid
= MAKEAVICKID(cktypePALchange
, pStream
->nStream
);
2420 idx
.dwChunkLength
= pStream
->idxFmtChanges
[pos
].dwChunkLength
;
2422 pStream
->idxFmtChanges
[pos
].dwChunkOffset
- This
->dwMoviChunkPos
;
2423 if (mmioWrite(This
->hmmio
, (HPSTR
)&idx
, sizeof(idx
)) != sizeof(idx
))
2424 return AVIERR_FILEWRITE
;
2428 } /* if have formatchanges */
2430 idx
.ckid
= pStream
->idxFrames
[n
].ckid
;
2431 idx
.dwFlags
= pStream
->idxFrames
[n
].dwFlags
;
2432 idx
.dwChunkLength
= pStream
->idxFrames
[n
].dwChunkLength
;
2433 idx
.dwChunkOffset
= pStream
->idxFrames
[n
].dwChunkOffset
2434 - This
->dwMoviChunkPos
;
2436 if (mmioWrite(This
->hmmio
, (HPSTR
)&idx
, sizeof(idx
)) != sizeof(idx
))
2437 return AVIERR_FILEWRITE
;
2440 } /* if not interleaved */
2442 if (mmioAscend(This
->hmmio
, &ck
, 0) != S_OK
)
2443 return AVIERR_FILEWRITE
;
2448 static ULONG
AVIFILE_SearchStream(const IAVIFileImpl
*This
, DWORD fcc
, LONG lSkip
)
2457 /* search the number of the specified stream */
2458 nStream
= (ULONG
)-1;
2459 for (i
= 0; i
< This
->fInfo
.dwStreams
; i
++) {
2460 assert(This
->ppStreams
[i
] != NULL
);
2462 if (This
->ppStreams
[i
]->sInfo
.fccType
== fcc
) {
2476 static void AVIFILE_UpdateInfo(IAVIFileImpl
*This
)
2480 /* pre-conditions */
2481 assert(This
!= NULL
);
2483 This
->fInfo
.dwMaxBytesPerSec
= 0;
2484 This
->fInfo
.dwCaps
= AVIFILECAPS_CANREAD
|AVIFILECAPS_CANWRITE
;
2485 This
->fInfo
.dwSuggestedBufferSize
= 0;
2486 This
->fInfo
.dwWidth
= 0;
2487 This
->fInfo
.dwHeight
= 0;
2488 This
->fInfo
.dwScale
= 0;
2489 This
->fInfo
.dwRate
= 0;
2490 This
->fInfo
.dwLength
= 0;
2491 This
->dwInitialFrames
= 0;
2493 for (i
= 0; i
< This
->fInfo
.dwStreams
; i
++) {
2494 AVISTREAMINFOW
*psi
;
2497 /* pre-conditions */
2498 assert(This
->ppStreams
[i
] != NULL
);
2500 psi
= &This
->ppStreams
[i
]->sInfo
;
2501 assert(psi
->dwScale
!= 0);
2502 assert(psi
->dwRate
!= 0);
2505 /* use first stream timings as base */
2506 This
->fInfo
.dwScale
= psi
->dwScale
;
2507 This
->fInfo
.dwRate
= psi
->dwRate
;
2508 This
->fInfo
.dwLength
= psi
->dwLength
;
2510 n
= AVIStreamSampleToSample(&This
->ppStreams
[0]->IAVIStream_iface
,
2511 &This
->ppStreams
[i
]->IAVIStream_iface
, psi
->dwLength
);
2512 if (This
->fInfo
.dwLength
< n
)
2513 This
->fInfo
.dwLength
= n
;
2516 if (This
->dwInitialFrames
< psi
->dwInitialFrames
)
2517 This
->dwInitialFrames
= psi
->dwInitialFrames
;
2519 if (This
->fInfo
.dwSuggestedBufferSize
< psi
->dwSuggestedBufferSize
)
2520 This
->fInfo
.dwSuggestedBufferSize
= psi
->dwSuggestedBufferSize
;
2522 if (psi
->dwSampleSize
!= 0) {
2523 /* fixed sample size -- exact computation */
2524 This
->fInfo
.dwMaxBytesPerSec
+= MulDiv(psi
->dwSampleSize
, psi
->dwRate
,
2527 /* variable sample size -- only upper limit */
2528 This
->fInfo
.dwMaxBytesPerSec
+= MulDiv(psi
->dwSuggestedBufferSize
,
2529 psi
->dwRate
, psi
->dwScale
);
2531 /* update dimensions */
2532 n
= psi
->rcFrame
.right
- psi
->rcFrame
.left
;
2533 if (This
->fInfo
.dwWidth
< n
)
2534 This
->fInfo
.dwWidth
= n
;
2535 n
= psi
->rcFrame
.bottom
- psi
->rcFrame
.top
;
2536 if (This
->fInfo
.dwHeight
< n
)
2537 This
->fInfo
.dwHeight
= n
;
2542 static HRESULT
AVIFILE_WriteBlock(IAVIStreamImpl
*This
, DWORD block
,
2543 FOURCC ckid
, DWORD flags
, LPCVOID buffer
,
2552 /* if no frame/block is already written, we must compute start of movi chunk */
2553 if (This
->paf
->dwMoviChunkPos
== 0)
2554 AVIFILE_ComputeMoviStart(This
->paf
);
2556 if (mmioSeek(This
->paf
->hmmio
, This
->paf
->dwNextFramePos
, SEEK_SET
) == -1)
2557 return AVIERR_FILEWRITE
;
2559 if (mmioCreateChunk(This
->paf
->hmmio
, &ck
, 0) != S_OK
)
2560 return AVIERR_FILEWRITE
;
2561 if (buffer
!= NULL
&& size
> 0) {
2562 if (mmioWrite(This
->paf
->hmmio
, buffer
, size
) != size
)
2563 return AVIERR_FILEWRITE
;
2565 if (mmioAscend(This
->paf
->hmmio
, &ck
, 0) != S_OK
)
2566 return AVIERR_FILEWRITE
;
2568 This
->paf
->fDirty
= TRUE
;
2569 This
->paf
->dwNextFramePos
= mmioSeek(This
->paf
->hmmio
, 0, SEEK_CUR
);
2571 return AVIFILE_AddFrame(This
, ckid
, size
,
2572 ck
.dwDataOffset
- 2 * sizeof(DWORD
), flags
);