Home
last modified time | relevance | path

Searched refs:curPos (Results 1 – 2 of 2) sorted by relevance

/drivers/peripheral/codec/test/demo/jpeg/src/
Dcodec_jpeg_helper.cpp27 int32_t curPos = 0; in JpegAssemble() local
29 curPos = PutInt16(buffer, curPos, 0xffd8); in JpegAssemble()
30 if (curPos < 0) { in JpegAssemble()
36 curPos = JpegDqtAssemble(decInfo, buffer, curPos); in JpegAssemble()
37 if (curPos < 0) { in JpegAssemble()
43 curPos = JpegDhtAssemble(decInfo, buffer, curPos); in JpegAssemble()
44 if (curPos < 0) { in JpegAssemble()
49 curPos = JpegDriAssemble(decInfo, buffer, curPos); in JpegAssemble()
50 if (curPos < 0) { in JpegAssemble()
56 curPos = JpegSofAssemble(decInfo, buffer, curPos); in JpegAssemble()
[all …]
/drivers/peripheral/codec/test/demo/jpeg/include/
Dcodec_jpeg_helper.h46 int32_t JpegDqtAssemble(const struct CodecJpegDecInfo &decInfo, int8_t *buffer, int32_t curPos);
47 int32_t JpegDriAssemble(const struct CodecJpegDecInfo &decInfo, int8_t *buffer, int32_t curPos);
48 int32_t JpegDhtAssemble(const struct CodecJpegDecInfo &decInfo, int8_t *buffer, int32_t curPos);
49 …t32_t JpegDhtAssemble(const std::vector<CodecJpegHuffTable> &table, int8_t *buffer, int32_t curPos,
51 int32_t JpegSofAssemble(const struct CodecJpegDecInfo &decInfo, int8_t *buffer, int32_t curPos);
52 int32_t JpegSosAssemble(const struct CodecJpegDecInfo &decInfo, int8_t *buffer, int32_t curPos);
53 int32_t JpegDataAssemble(int8_t *buffer, int32_t curPos, int32_t fd);
59 int32_t PutInt16(int8_t *buffer, int32_t curPos, int16_t value);
60 int32_t PutInt8(int8_t *buffer, int32_t curPos, int8_t value);