2002-10-11 01:31:13 +02:00
|
|
|
|
/*
|
|
|
|
|
* Copyright 2002 Michael G<EFBFBD>nnewig
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __AVIFILE_PRIVATE_H
|
|
|
|
|
#define __AVIFILE_PRIVATE_H
|
|
|
|
|
|
|
|
|
|
#ifndef MAX_AVISTREAMS
|
2003-06-23 20:10:06 +02:00
|
|
|
|
#define MAX_AVISTREAMS 8
|
2002-10-11 01:31:13 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-10-18 02:24:41 +02:00
|
|
|
|
#ifndef comptypeDIB
|
|
|
|
|
#define comptypeDIB mmioFOURCC('D','I','B',' ')
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef DIBWIDTHBYTES
|
|
|
|
|
#define WIDTHBYTES(i) (((i+31)&(~31))/8)
|
|
|
|
|
#define DIBWIDTHBYTES(bi) WIDTHBYTES((bi).biWidth * (bi).biBitCount)
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-10-22 01:40:38 +02:00
|
|
|
|
#ifndef DIBPTR
|
|
|
|
|
#define DIBPTR(lp) ((LPBYTE)(lp) + (lp)->biSize + \
|
|
|
|
|
(lp)->biClrUsed * sizeof(RGBQUAD))
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-10-23 20:47:51 +02:00
|
|
|
|
#define IDD_SAVEOPTIONS 0x0100
|
|
|
|
|
#define IDC_INTERLEAVE 0x0110
|
|
|
|
|
#define IDC_INTERLEAVEEVERY 0x0111
|
|
|
|
|
#define IDC_STREAM 0x0112
|
|
|
|
|
#define IDC_OPTIONS 0x0113
|
|
|
|
|
#define IDC_FORMATTEXT 0x0114
|
|
|
|
|
|
2002-10-18 02:24:41 +02:00
|
|
|
|
#define IDS_WAVESTREAMFORMAT 0x0100
|
|
|
|
|
#define IDS_WAVEFILETYPE 0x0101
|
2002-10-23 20:47:51 +02:00
|
|
|
|
#define IDS_ALLMULTIMEDIA 0x0184
|
2002-10-22 01:40:38 +02:00
|
|
|
|
#define IDS_ALLFILES 0x0185
|
2002-10-18 02:24:41 +02:00
|
|
|
|
#define IDS_VIDEO 0x0189
|
|
|
|
|
#define IDS_AUDIO 0x0190
|
|
|
|
|
#define IDS_AVISTREAMFORMAT 0x0191
|
|
|
|
|
#define IDS_AVIFILETYPE 0x0192
|
|
|
|
|
#define IDS_UNCOMPRESSED 0x0193
|
|
|
|
|
|
2002-10-11 01:31:13 +02:00
|
|
|
|
DEFINE_AVIGUID(CLSID_ICMStream, 0x00020001, 0, 0);
|
|
|
|
|
DEFINE_AVIGUID(CLSID_WAVFile, 0x00020003, 0, 0);
|
|
|
|
|
DEFINE_AVIGUID(CLSID_ACMStream, 0x0002000F, 0, 0);
|
|
|
|
|
|
|
|
|
|
extern HMODULE AVIFILE_hModule;
|
|
|
|
|
|
|
|
|
|
extern HRESULT AVIFILE_CreateAVIFile(REFIID riid, LPVOID *ppobj);
|
|
|
|
|
extern HRESULT AVIFILE_CreateWAVFile(REFIID riid, LPVOID *ppobj);
|
|
|
|
|
extern HRESULT AVIFILE_CreateACMStream(REFIID riid, LPVOID *ppobj);
|
|
|
|
|
extern HRESULT AVIFILE_CreateICMStream(REFIID riid, LPVOID *ppobj);
|
2002-10-18 02:24:41 +02:00
|
|
|
|
extern PGETFRAME AVIFILE_CreateGetFrame(PAVISTREAM pstream);
|
2003-06-23 20:10:06 +02:00
|
|
|
|
extern PAVIFILE AVIFILE_CreateAVITempFile(int nStreams,PAVISTREAM *ppStreams);
|
2002-10-18 02:24:41 +02:00
|
|
|
|
|
|
|
|
|
extern LPCWSTR AVIFILE_BasenameW(LPCWSTR szFileName);
|
2002-10-11 01:31:13 +02:00
|
|
|
|
|
|
|
|
|
#endif
|