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/xtools/dpvencoder.c

22 lines
542 B
C
Raw Normal View History

2008-12-04 22:00:00 +01:00
//=======================================================================
// Copyright XashXT Group 2008 <20>
// dpvencoder.c - DP video encoder
//=======================================================================
2009-01-11 22:00:00 +01:00
#include "xtools.h"
2008-12-04 22:00:00 +01:00
#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;
}