OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fPutBitsToBuffer
(Results
1 - 2
of
2
) sorted by null
/hardware/intel/img/psb_video/src/
pnw_hostjpeg.c
473
/* Function Name :
fPutBitsToBuffer
*/
493
void
fPutBitsToBuffer
(STREAMTYPEW *BitStream, IMG_UINT8 NoOfBytes, IMG_UINT32 ActualBits)
[
all
...]
tng_jpegES.c
629
static void
fPutBitsToBuffer
(STREAMTYPEW *BitStream, IMG_UINT8 NoOfBytes, IMG_UINT32 ActualBits)
653
fPutBitsToBuffer
(&s_streamW, 2, START_OF_IMAGE);
656
fPutBitsToBuffer
(&s_streamW, 2, DQT_MARKER);
658
fPutBitsToBuffer
(&s_streamW, 3, LQPQ << 4); // 20 bits = LQPQ, 4 bits = 0 (Destination identifier for the luminance quantizer tables)
663
fPutBitsToBuffer
(&s_streamW, 1, pJPEGContext->psTablesBlock->aui8LumaQuantParams[gZigZag[uc_i]]);
667
fPutBitsToBuffer
(&s_streamW, 2, DQT_MARKER);
669
fPutBitsToBuffer
(&s_streamW, 3, (LQPQ << 4) | 1); // 20 bits = LQPQ, 4 bits = 1 (Destination identifier for the chrominance quantizer tables)
673
fPutBitsToBuffer
(&s_streamW, 1, pJPEGContext->psTablesBlock->aui8ChromaQuantParams[gZigZag[uc_i]]);
682
fPutBitsToBuffer
(&s_streamW, 2, DHT_MARKER);
683
fPutBitsToBuffer
(&s_streamW, 2, LH_DC)
[
all
...]
Completed in 668 milliseconds