libgralloc-qsd8k: Move the OMX format definitions to gpu.cpp

Change-Id: Ieb6e1f07b6e676d6d9556572a61b70780e4483fc
This commit is contained in:
Naomi Luis 2011-03-07 17:38:49 -08:00 committed by Govind Surti
parent 7725e18ca3
commit 1e95e224d6
2 changed files with 5 additions and 5 deletions

View File

@ -23,6 +23,11 @@
#include "gr.h"
#include "gpu.h"
static const int OMX_QCOM_COLOR_FormatYVU420SemiPlanar = 0x7FA30C00;
static const int QOMX_COLOR_FormatYUV420PackedSemiPlanar64x32Tile2m8ka = 0x7FA30C03;
static const int QOMX_INTERLACE_FLAG = 0x49283654;
static const int QOMX_3D_VIDEO_FLAG = 0x23784238;
gpu_context_t::gpu_context_t(Deps& deps, PmemAllocator& pmemAllocator,
PmemAllocator& pmemAdspAllocator, const private_module_t* module) :
deps(deps),

View File

@ -162,11 +162,6 @@ enum {
BUFFER_TYPE_UI = 0,
BUFFER_TYPE_VIDEO
};
static const int OMX_QCOM_COLOR_FormatYVU420SemiPlanar = 0x7FA30C00;
static const int QOMX_COLOR_FormatYUV420PackedSemiPlanar64x32Tile2m8ka = 0x7FA30C03;
static const int QOMX_INTERLACE_FLAG = 0x49283654;
static const int QOMX_3D_VIDEO_FLAG = 0x23784238;
/*****************************************************************************/
struct private_module_t;