Home
last modified time | relevance | path

Searched refs:state64 (Results 1 – 12 of 12) sorted by relevance

/third_party/ffmpeg/libavcodec/
Djpeg2000_parser.c88 uint64_t state64; in find_frame_end() local
90 state64 = pc->state64; in find_frame_end()
97 state64 = state64 << 8 | buf[i]; in find_frame_end()
109 m->skip_bytes = (state64 & 0xFFFFFFFF) - 10 > 0? in find_frame_end()
110 (state64 & 0xFFFFFFFF) - 10 : 0; in find_frame_end()
116 if (state64 == 0x6A5020200D0A870A) { // JP2 signature box value. in find_frame_end()
155 pc->state64 = state64; in find_frame_end()
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()
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()
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()
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()
Dadx_parser.c48 uint64_t state = pc->state64; in adx_parse()
65 pc->state64 = state; in adx_parse()
Dcri_parser.c50 uint64_t state = bpc->pc.state64; in cri_parse()
87 bpc->pc.state64 = state; in cri_parse()
Dxbm_parser.c58 uint64_t state = bpc->pc.state64; in xbm_parse()
86 bpc->pc.state64 = state; in xbm_parse()
Dhevc_parser.c271 pc->state64 = (pc->state64 << 8) | buf[i]; in hevc_find_frame_end()
273 if (((pc->state64 >> 3 * 8) & 0xFFFFFF) != START_CODE) in hevc_find_frame_end()
276 nut = (pc->state64 >> 2 * 8 + 1) & 0x3F; in hevc_find_frame_end()
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()
Dparser.h37 uint64_t state64; ///< contains the last 8 bytes in MSB order member
Dparser.c309 pc->state64 = pc->state64 << 8 | pc->buffer[pc->last_index + next]; in ff_combine_frame()