| 1 |
//--------------------------------------------------------------------------- |
|---|
| 2 |
//FFusion |
|---|
| 3 |
//Alternative DivX Codec for MacOS X |
|---|
| 4 |
//version 2.2 (build 72) |
|---|
| 5 |
//by Jerome Cornet |
|---|
| 6 |
//Copyright 2002-2003 Jerome Cornet |
|---|
| 7 |
//parts by Dan Christiansen |
|---|
| 8 |
//Copyright 2003 Dan Christiansen |
|---|
| 9 |
//from DivOSX by Jamby |
|---|
| 10 |
//Copyright 2001-2002 Jamby |
|---|
| 11 |
//uses libavcodec from ffmpeg 0.4.6 |
|---|
| 12 |
// |
|---|
| 13 |
// This program is free software; you can redistribute it and/or modify |
|---|
| 14 |
// it under the terms of the GNU General Public License as published by |
|---|
| 15 |
// the Free Software Foundation; either version 2 of the License, or |
|---|
| 16 |
// (at your option) any later version. |
|---|
| 17 |
// |
|---|
| 18 |
// This program is distributed in the hope that it will be useful, |
|---|
| 19 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 20 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 21 |
// GNU General Public License for more details. |
|---|
| 22 |
// |
|---|
| 23 |
// You should have received a copy of the GNU General Public License |
|---|
| 24 |
// along with this program; if not, write to the Free Software |
|---|
| 25 |
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 26 |
// |
|---|
| 27 |
//--------------------------------------------------------------------------- |
|---|
| 28 |
//Global Header |
|---|
| 29 |
//--------------------------------------------------------------------------- |
|---|
| 30 |
|
|---|
| 31 |
#define kFFusionCodecVersion (0x00030001) |
|---|
| 32 |
|
|---|
| 33 |
#define kDivX1CodecInfoResID 256 |
|---|
| 34 |
#define kDivX2CodecInfoResID 257 |
|---|
| 35 |
#define kDivX3CodecInfoResID 258 |
|---|
| 36 |
#define kDivX4CodecInfoResID 259 |
|---|
| 37 |
#define kDivX5CodecInfoResID 260 |
|---|
| 38 |
#define k3ivxCodecInfoResID 261 |
|---|
| 39 |
#define kXVIDCodecInfoResID 262 |
|---|
| 40 |
#define kMPEG4CodecInfoResID 263 |
|---|
| 41 |
#define kH264CodecInfoResID 264 |
|---|
| 42 |
#define kFLV1CodecInfoResID 265 |
|---|
| 43 |
#define kFlashSVCodecInfoResID 266 |
|---|
| 44 |
#define kVP6CodecInfoResID 267 |
|---|
| 45 |
|
|---|
| 46 |
#define kFFusionCodecManufacturer 'SNE2' |
|---|
| 47 |
|
|---|
| 48 |
#define kOptionKeyModifier 0x04 |
|---|