4.45 beta

This commit is contained in:
Igor Pavlov
2007-04-17 00:00:00 +00:00
committed by Kornel Lesiński
parent d9666cf046
commit a145bfc7cf
458 changed files with 13144 additions and 18608 deletions

View File

@@ -0,0 +1,17 @@
// ByteSwapRegister.cpp
#include "StdAfx.h"
#include "../../Common/RegisterCodec.h"
#include "ByteSwap.h"
static void *CreateCodec2() { return (void *)(ICompressFilter *)(new CByteSwap2); }
static void *CreateCodec4() { return (void *)(ICompressFilter *)(new CByteSwap4); }
static CCodecInfo g_CodecsInfo[] =
{
{ CreateCodec2, CreateCodec4, 0x020302, L"Swap2", 1, true },
{ CreateCodec4, CreateCodec4, 0x020304, L"Swap4", 1, true }
};
REGISTER_CODECS(ByteSwap)