codec/rfx: removed unused queue TileQueue
Declared, created, deleted but not used: git grep TileQueue libfreerdp/codec/rfx_types.h: wQueue* TileQueue; libfreerdp/codec/rfx.c: context->priv->TileQueue = Queue_New(TRUE, -1, -1); libfreerdp/codec/rfx.c: Queue_Free(context->priv->TileQueue);
This commit is contained in:
parent
18a3f37d06
commit
1d384ce863
@ -156,7 +156,6 @@ RFX_CONTEXT* rfx_context_new(void)
|
||||
ZeroMemory(context->priv, sizeof(RFX_CONTEXT_PRIV));
|
||||
|
||||
context->priv->TilePool = Queue_New(TRUE, -1, -1);
|
||||
context->priv->TileQueue = Queue_New(TRUE, -1, -1);
|
||||
|
||||
/*
|
||||
* align buffers to 16 byte boundary (needed for SSE/NEON instructions)
|
||||
@ -254,7 +253,6 @@ void rfx_context_free(RFX_CONTEXT* context)
|
||||
free(context->quants);
|
||||
|
||||
Queue_Free(context->priv->TilePool);
|
||||
Queue_Free(context->priv->TileQueue);
|
||||
|
||||
rfx_profiler_print(context);
|
||||
rfx_profiler_free(context);
|
||||
|
@ -40,7 +40,6 @@
|
||||
struct _RFX_CONTEXT_PRIV
|
||||
{
|
||||
wQueue* TilePool;
|
||||
wQueue* TileQueue;
|
||||
|
||||
BOOL UseThreads;
|
||||
DWORD MinThreadCount;
|
||||
|
Loading…
Reference in New Issue
Block a user