This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/common/dpvencoder.c

22 lines
544 B
C
Raw Normal View History

2008-12-04 22:00:00 +01:00
//=======================================================================
// Copyright XashXT Group 2008 <20>
// dpvencoder.c - DP video encoder
//=======================================================================
#include "platform.h"
#include "utils.h"
byte *dpvpool;
bool CompileDPVideo( byte *mempool, const char *name, byte parms )
{
if( mempool ) dpvpool = mempool;
else
{
Msg( "DPV Encoder: can't allocate memory pool.\nAbort compilation\n" );
return false;
}
// FIXME: implement
return false;
}