Home
last modified time | relevance | path

Searched refs:fPutBitsToBuffer (Results 1 – 4 of 4) sorted by relevance

/hardware/intel/img/psb_video/src/
Dpnw_hostjpeg.c493 void fPutBitsToBuffer(STREAMTYPEW *BitStream, IMG_UINT8 NoOfBytes, IMG_UINT32 ActualBits) in fPutBitsToBuffer() function
779 fPutBitsToBuffer(&s_streamW, 2, START_OF_IMAGE);
782 fPutBitsToBuffer(&s_streamW, 2, DQT_MARKER);
784fPutBitsToBuffer(&s_streamW, 3, LQPQ << 4); // 20 bits = LQPQ, 4 bits = 0 (Destination identifier …
787 fPutBitsToBuffer(&s_streamW, 1, pContext->pvLowLevelEncContext->Qmatrix[0][gZigZag[uc_i]]);
791 fPutBitsToBuffer(&s_streamW, 2, DQT_MARKER);
793fPutBitsToBuffer(&s_streamW, 3, (LQPQ << 4) | 1); // 20 bits = LQPQ, 4 bits = 1 (Destination ident…
796 fPutBitsToBuffer(&s_streamW, 1, pContext->pvLowLevelEncContext->Qmatrix[1][gZigZag[uc_i]]);
801 fPutBitsToBuffer(&s_streamW, 2, DHT_MARKER);
802 fPutBitsToBuffer(&s_streamW, 2, LH_DC);
[all …]
Dtng_jpegES.c629 static void fPutBitsToBuffer(STREAMTYPEW *BitStream, IMG_UINT8 NoOfBytes, IMG_UINT32 ActualBits) in fPutBitsToBuffer() function
653 fPutBitsToBuffer(&s_streamW, 2, START_OF_IMAGE); in EncodeMarkerSegment()
656 fPutBitsToBuffer(&s_streamW, 2, DQT_MARKER); in EncodeMarkerSegment()
658fPutBitsToBuffer(&s_streamW, 3, LQPQ << 4); // 20 bits = LQPQ, 4 bits = 0 (Destination identifier … in EncodeMarkerSegment()
663fPutBitsToBuffer(&s_streamW, 1, pJPEGContext->psTablesBlock->aui8LumaQuantParams[gZigZag[uc_i]]); in EncodeMarkerSegment()
667 fPutBitsToBuffer(&s_streamW, 2, DQT_MARKER); in EncodeMarkerSegment()
669fPutBitsToBuffer(&s_streamW, 3, (LQPQ << 4) | 1); // 20 bits = LQPQ, 4 bits = 1 (Destination ident… in EncodeMarkerSegment()
673fPutBitsToBuffer(&s_streamW, 1, pJPEGContext->psTablesBlock->aui8ChromaQuantParams[gZigZag[uc_i]]); in EncodeMarkerSegment()
682 fPutBitsToBuffer(&s_streamW, 2, DHT_MARKER); in EncodeMarkerSegment()
683 fPutBitsToBuffer(&s_streamW, 2, LH_DC); in EncodeMarkerSegment()
[all …]
Dpnw_hostjpeg.h678 void fPutBitsToBuffer(STREAMTYPEW *BitStream, IMG_UINT8 NoOfBytes, IMG_UINT32 ActualBits);
Dpnw_jpeg.c686 fPutBitsToBuffer(&s_streamW, 2, END_OF_IMAGE); in pnw_jpeg_AppendMarkers()