/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
idct.h | 59 void idctrow0_intra(int16 *blk, PIXEL *comp, int width); 60 void idctrow1_intra(int16 *blk, PIXEL *comp, int width); 61 void idctrow2_intra(int16 *blk, PIXEL *comp, int width); 62 void idctrow3_intra(int16 *blk, PIXEL *comp, int width); 63 void idctrow4_intra(int16 *blk, PIXEL *comp, int width);
|
mp4lib_int.h | 58 PIXEL *yChan; /* The Y component */ 59 PIXEL *uChan; /* The U component */ 60 PIXEL *vChan; /* The V component */
|
mb_motion_comp.cpp | 137 PIXEL *c_comp, *c_prev; 138 PIXEL *cu_comp, *cu_prev; 139 PIXEL *cv_comp, *cv_prev; 183 /* in pixel resolution */ 555 PIXEL *c_comp, *c_prev; 556 PIXEL *cu_comp, *cu_prev; 557 PIXEL *cv_comp, *cv_prev;
|
block_idct.cpp | 124 static void idctrow_intra(int16 *blk, PIXEL *, int width); 183 static void (*const idctrowVCA_intra[10])(int16*, PIXEL *, int) = 197 static void (*const idctrowVCA2_intra[8])(int16*, PIXEL *, int) = 226 PIXEL *c_comp; 227 PIXEL *cu_comp; 228 PIXEL *cv_comp; 251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width) 621 int16 *blk, PIXEL *comp, int width
|
mp4def.h | 35 typedef uint8 PIXEL;
|
idct_vca.cpp | 414 void idctrow0_intra(int16 *, PIXEL *, int) 419 void idctrow1_intra(int16 *blk, PIXEL *comp, int width) 448 void idctrow2_intra(int16 *blk, PIXEL *comp, int width) 505 void idctrow3_intra(int16 *blk, PIXEL *comp, int width) 578 void idctrow4_intra(int16 *blk, PIXEL *comp, int width)
|
pvdec_api.cpp | 43 extern PIXEL IMEM_currVop_yChan[QCIF_MBS*128*3]; 44 extern PIXEL IMEM_prevVop_yChan[QCIF_MBS*128*3]; 303 size = (int32)sizeof(PIXEL) * video->width * video->height; 318 video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/ 323 video->prevVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/ 345 video->prevEnhcVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/ [all...] |
mp4dec_lib.h | 99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset);
|
combined_decode.cpp | 532 PIXEL *c_comp;
|
datapart_decode.cpp | 625 PIXEL *c_comp;
|
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/ |
SDL_gapivideo.h | 37 long cbxPitch; // number of bytes to move right one x pixel - can be negative. 38 long cbyPitch; // number of bytes to move down one y pixel - can be negative. 39 long cBPP; // # of bits in each pixel 92 #define kfPalette 0x10 // Pixel values are indexes into a palette 93 #define kfDirect 0x20 // Pixel values contain actual level information 94 #define kfDirect555 0x40 // 5 bits each for red, green and blue values in a pixel. 95 #define kfDirect565 0x80 // 5 red bits, 6 green bits and 5 blue bits per pixel 96 #define kfDirect888 0x100 // 8 bits each for red, green and blue values in a pixel. 114 typedef unsigned short PIXEL; 126 #define NUM_MODELISTS 4 /* 8, 16, 24, and 32 bits-per-pixel */ [all...] |
SDL_gapivideo.c | 405 gapi->videoMem = (PIXEL*)0xac0755a0; 455 /* unknown pixel format, try define by BPP! */ 664 SDL_SetError("Unsupported Bits Per Pixel format requested"); 879 static int updateLine16to16(_THIS, PIXEL *srcPointer, PIXEL *destPointer, int width, int height, int lines) 881 PIXEL *line1, *line2; 886 SDL_memcpy(destPointer, srcPointer, width * sizeof(PIXEL)); 935 // to prevent data misalignment copy only one pixel 954 if( width & 1 ) // copy the last pixel 995 static int updateLine16to4(_THIS, PIXEL *srcPointer, unsigned char *destPointer, int width, int height, int lines, int yNibble, int xNibbl (…) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
xmesaP.h | 39 /* for PF_8R8G8B24 pixel format */ 57 /** Framebuffer pixel formats */ 81 GLint BitsPerPixel; /* True bits per pixel for XImages */ 85 enum pixel_format dithered_pf; /* Pixel format when dithering */ 86 enum pixel_format undithered_pf;/* Pixel format when not dithering */ 93 GLint rshift, gshift, bshift;/* Pixel color component shifts */ 95 unsigned long RtoPixel[512]; /* RGB to pixel conversion */ 98 GLubyte PixelToR[256]; /* Pixel to RGB conversion */ 120 unsigned long clearpixel; /* current clearing pixel value */ 226 unsigned long color_table[576]; /* RGB -> pixel value * [all...] |
/external/llvm/lib/Target/R600/ |
AMDGPU.h | 59 PIXEL = 0,
|
AMDGPUAsmPrinter.cpp | 115 case ShaderType::PIXEL: RsrcReg = R_028844_SQ_PGM_RESOURCES_PS; break; 125 case ShaderType::PIXEL: RsrcReg = R_028850_SQ_PGM_RESOURCES_PS; break; 230 case ShaderType::PIXEL: RsrcReg = R_00B028_SPI_SHADER_PGM_RSRC1_PS; break; 241 if (MFI->ShaderType == ShaderType::PIXEL) {
|
SILowerControlFlow.cpp | 299 // Kill is only allowed in pixel shaders 301 ShaderType::PIXEL); 303 // Clear this pixel from the exec mask if the operand is negative
|
SIISelLowering.cpp | 149 if (Info->ShaderType == ShaderType::PIXEL && !Arg.Flags.isInReg()) { 190 if (Info->ShaderType == ShaderType::PIXEL && (Info->PSInputAddr & 0x7F) == 0) { [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
xmesaP.h | 39 /* for PF_8R8G8B24 pixel format */ 57 /** Framebuffer pixel formats */ 81 GLint BitsPerPixel; /* True bits per pixel for XImages */ 85 enum pixel_format dithered_pf; /* Pixel format when dithering */ 86 enum pixel_format undithered_pf;/* Pixel format when not dithering */ 93 GLint rshift, gshift, bshift;/* Pixel color component shifts */ 95 unsigned long RtoPixel[512]; /* RGB to pixel conversion */ 98 GLubyte PixelToR[256]; /* Pixel to RGB conversion */ 120 unsigned long clearpixel; /* current clearing pixel value */ 226 unsigned long color_table[576]; /* RGB -> pixel value * [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
mp4lib_int.h | 42 PIXEL *yChan; /* The Y component */ 43 PIXEL *uChan; /* The U component */ 44 PIXEL *vChan; /* The V component */
|
mp4def.h | 83 typedef UChar PIXEL;
|
mp4enc_api.cpp | 746 video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for currVop Y */ 764 video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for prevBaseVop Y */ 781 video->nextBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for nextBaseVop Y */ 798 video->prevEnhanceVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for Previous Ehancement Y */ [all...] |