Home
last modified time | relevance | path

Searched refs:state64 (Results 1 - 13 of 13) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Djpeg2000_parser.c54 pc->state64 = 0; in reset_context()
97 uint64_t state64 = pc->state64; in find_frame_end() local
105 state64 = state64 << 8 | buf[i]; in find_frame_end()
124 m->skip_bytes = (state64 & 0xFFFFFFFF) - 9 > 0? in find_frame_end()
125 (state64 & 0xFFFFFFFF) - 9 : 0; in find_frame_end()
132 if (state64 == 0x6A5020200D0A870A) { // JP2 signature box value. in find_frame_end()
145 if ((state64 & 0xFFFFFFFF) == 0x0000000C && bytes_read >= 3) { // Indicates start of JP2 file. Check signature next. in find_frame_end()
147 } else if ((state64 in find_frame_end()
[all...]
H A Dpng_parser.c51 uint64_t state64 = ppc->pc.state64; in png_parse() local
53 state64 = (state64 << 8) | buf[i]; in png_parse()
54 if (state64 == PNGSIG || state64 == MNGSIG) { in png_parse()
60 ppc->pc.state64 = state64; in png_parse()
H A Ddnxhd_parser.c41 uint64_t state = pc->state64; in dnxhd_find_frame_end()
86 pc->state64 = -1; in dnxhd_find_frame_end()
106 pc->state64 = -1; in dnxhd_find_frame_end()
113 pc->state64 = state; in dnxhd_find_frame_end()
H A Dbmp_parser.c43 uint64_t state = bpc->pc.state64; in bmp_parse()
75 bpc->pc.state64 = 0; in bmp_parse()
81 bpc->pc.state64 = state; in bmp_parse()
H A Dwebp_parser.c42 uint64_t state = ctx->pc.state64; in webp_parse()
73 ctx->pc.state64 = 0; in webp_parse()
79 ctx->pc.state64 = state; in webp_parse()
H A Dqoi_parser.c38 uint64_t state = ipc->pc.state64; in qoi_parse()
58 ipc->pc.state64 = state; in qoi_parse()
H A Dcri_parser.c50 uint64_t state = bpc->pc.state64; in cri_parse()
87 bpc->pc.state64 = state; in cri_parse()
H A Dadx_parser.c48 uint64_t state = pc->state64; in adx_parse()
65 pc->state64 = state; in adx_parse()
H A Dxbm_parser.c58 uint64_t state = bpc->pc.state64; in xbm_parse()
86 bpc->pc.state64 = state; in xbm_parse()
H A Ddca_parser.c76 state = pc->state64; in dca_find_frame_end()
171 pc->state64 = -1; in dca_find_frame_end()
179 pc->state64 = state; in dca_find_frame_end()
H A Dhevc_parser.c270 pc->state64 = (pc->state64 << 8) | buf[i]; in hevc_find_frame_end()
272 if (((pc->state64 >> 3 * 8) & 0xFFFFFF) != START_CODE) in hevc_find_frame_end()
275 nut = (pc->state64 >> 2 * 8 + 1) & 0x3F; in hevc_find_frame_end()
H A Dparser.h37 uint64_t state64; ///< contains the last 8 bytes in MSB order member
H A Dparser.c271 pc->state64 = pc->state64 << 8 | pc->buffer[pc->last_index + next]; in ff_combine_frame()

Completed in 5 milliseconds