Home
last modified time | relevance | path

Searched refs:chunk_type (Results 1 – 17 of 17) sorted by relevance

/third_party/ffmpeg/libavformat/
Dipmovie.c124 int chunk_type; in load_ipmovie_packet() local
159 chunk_type = CHUNK_HAVE_PACKET; in load_ipmovie_packet()
235 chunk_type = CHUNK_HAVE_PACKET; in load_ipmovie_packet()
240 chunk_type = CHUNK_DONE; in load_ipmovie_packet()
244 return chunk_type; in load_ipmovie_packet()
276 int chunk_type; in process_ipmovie_chunk() local
290 chunk_type = load_ipmovie_packet(s, pb, pkt); in process_ipmovie_chunk()
291 if (chunk_type != CHUNK_DONE) in process_ipmovie_chunk()
292 return chunk_type; in process_ipmovie_chunk()
301 chunk_type = AV_RL16(&chunk_preamble[2]); in process_ipmovie_chunk()
[all …]
Dmmsh.c78 ChunkType chunk_type; in get_chunk_header() local
86 chunk_type = AV_RL16(chunk_header); in get_chunk_header()
89 switch (chunk_type) { in get_chunk_header()
99 av_log(NULL, AV_LOG_ERROR, "Strange chunk type %d\n", chunk_type); in get_chunk_header()
109 if (chunk_type == CHUNK_TYPE_END || chunk_type == CHUNK_TYPE_DATA) in get_chunk_header()
111 return chunk_type; in get_chunk_header()
146 ChunkType chunk_type; in get_http_header_data() local
150 res = chunk_type = get_chunk_header(mmsh, &len); in get_http_header_data()
153 } else if (chunk_type == CHUNK_TYPE_ASF_HEADER){ in get_http_header_data()
188 } else if (chunk_type == CHUNK_TYPE_DATA) { in get_http_header_data()
[all …]
Dwestwood_vqa.c180 uint32_t chunk_type; in wsvqa_read_packet() local
185 chunk_type = AV_RB32(&preamble[0]); in wsvqa_read_packet()
192 if (chunk_type == VQFL_TAG) { in wsvqa_read_packet()
207 } else if ((chunk_type == SND0_TAG) || (chunk_type == SND1_TAG) || in wsvqa_read_packet()
208 (chunk_type == SND2_TAG) || (chunk_type == VQFR_TAG)) { in wsvqa_read_packet()
214 switch (chunk_type) { in wsvqa_read_packet()
237 switch (chunk_type) { in wsvqa_read_packet()
257 switch (chunk_type) { in wsvqa_read_packet()
303 switch(chunk_type){ in wsvqa_read_packet()
311 av_fourcc2str(av_bswap32(chunk_type))); in wsvqa_read_packet()
Didroqdec.c101 unsigned int chunk_type; in roq_read_packet() local
117 chunk_type = AV_RL16(&preamble[0]); in roq_read_packet()
124 switch (chunk_type) { in roq_read_packet()
187 if (chunk_type == RoQ_SOUND_STEREO) { in roq_read_packet()
200 if (chunk_type == RoQ_QUAD_VQ) { in roq_read_packet()
212 if (chunk_type == RoQ_QUAD_VQ) { in roq_read_packet()
232 av_log(s, AV_LOG_ERROR, " unknown RoQ chunk (%04X)\n", chunk_type); in roq_read_packet()
Dimx.c92 uint32_t chunk_size, chunk_type; in simbiosis_imx_read_packet() local
101 chunk_type = avio_rl32(pb); in simbiosis_imx_read_packet()
103 switch (chunk_type) { in simbiosis_imx_read_packet()
Ddtshddec.c57 uint64_t chunk_type, chunk_size; in dtshd_read_header() local
71 chunk_type = avio_rb64(pb); in dtshd_read_header()
86 switch (chunk_type) { in dtshd_read_header()
Delectronicarts.c580 unsigned int chunk_type, chunk_size; in ea_read_packet() local
587 chunk_type = avio_rl32(pb); in ea_read_packet()
593 switch (chunk_type) { in ea_read_packet()
734 partial_packet = chunk_type == MVIh_TAG; in ea_read_packet()
735 if (chunk_type == AV0K_TAG || chunk_type == AV0F_TAG) in ea_read_packet()
/third_party/ffmpeg/libavcodec/
Dbrenderpix.c141 unsigned int chunk_type; in pix_decode_frame() local
162 chunk_type = bytestream2_get_be32(&gb); in pix_decode_frame()
163 if (chunk_type != HEADER1_CHUNK && chunk_type != HEADER2_CHUNK) { in pix_decode_frame()
164 av_log(avctx, AV_LOG_ERROR, "Invalid chunk type %d.\n", chunk_type); in pix_decode_frame()
217 chunk_type = bytestream2_get_be32(&gb); in pix_decode_frame()
220 (chunk_type == HEADER1_CHUNK || in pix_decode_frame()
221 chunk_type == HEADER2_CHUNK)) { in pix_decode_frame()
234 chunk_type = bytestream2_get_be32(&gb); in pix_decode_frame()
237 if (chunk_type != IMAGE_DATA_CHUNK || data_len != 1032 || in pix_decode_frame()
250 chunk_type = bytestream2_get_be32(&gb); in pix_decode_frame()
[all …]
Dflicvideo.c167 int chunk_type; in flic_decode_frame_8BPP() local
220 chunk_type = bytestream2_get_le16(&g2); in flic_decode_frame_8BPP()
222 switch (chunk_type) { in flic_decode_frame_8BPP()
229 … if ((chunk_type == FLI_256_COLOR) && (s->fli_type != FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE)) in flic_decode_frame_8BPP()
453 av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type); in flic_decode_frame_8BPP()
506 int chunk_type; in flic_decode_frame_15_16BPP() local
552 chunk_type = bytestream2_get_le16(&g2); in flic_decode_frame_15_16BPP()
555 switch (chunk_type) { in flic_decode_frame_15_16BPP()
563 chunk_type); in flic_decode_frame_15_16BPP()
763 av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type); in flic_decode_frame_15_16BPP()
[all …]
Ddfa.c346 uint32_t chunk_type, chunk_size; in dfa_decode_frame() local
361 chunk_type = bytestream2_get_le32(&gb); in dfa_decode_frame()
362 if (!chunk_type) in dfa_decode_frame()
364 if (chunk_type == 1) { in dfa_decode_frame()
371 } else if (chunk_type <= 9) { in dfa_decode_frame()
372 if (decoder[chunk_type - 2](&gb, s->frame_buf, avctx->width, avctx->height)) { in dfa_decode_frame()
374 chunk_name[chunk_type - 2]); in dfa_decode_frame()
380 chunk_type); in dfa_decode_frame()
Dvqavideo.c345 unsigned int chunk_type; in vqa_decode_frame_pal8() local
374 chunk_type = bytestream2_get_be32u(&s->gb); in vqa_decode_frame_pal8()
378 switch (chunk_type) { in vqa_decode_frame_pal8()
410 av_fourcc2str(av_bswap32(chunk_type)), chunk_type); in vqa_decode_frame_pal8()
628 unsigned int chunk_type; in vqa_decode_frame_hicolor() local
641 chunk_type = bytestream2_get_be32u(&s->gb); in vqa_decode_frame_hicolor()
645 switch (chunk_type) { in vqa_decode_frame_hicolor()
660 av_fourcc2str(av_bswap32(chunk_type)), chunk_type); in vqa_decode_frame_hicolor()
Deamad.c258 int chunk_type; in decode_frame() local
263 chunk_type = bytestream2_get_le32(&gb); in decode_frame()
264 inter = (chunk_type == MADm_TAG || chunk_type == MADe_TAG); in decode_frame()
326 if (chunk_type != MADe_TAG) { in decode_frame()
Deatgv.c272 int chunk_type, ret; in tgv_decode_frame() local
277 chunk_type = AV_RL32(&buf[0]); in tgv_decode_frame()
280 if (chunk_type == kVGT_TAG) { in tgv_decode_frame()
312 if (chunk_type == kVGT_TAG) { in tgv_decode_frame()
Dwebp.c1343 uint32_t chunk_type, chunk_size; in webp_decode_frame() local
1375 chunk_type = bytestream2_get_le32(&gb); in webp_decode_frame()
1387 switch (chunk_type) { in webp_decode_frame()
1513 AV_WL32(chunk_str, chunk_type); in webp_decode_frame()
1519 AV_WL32(chunk_str, chunk_type); in webp_decode_frame()
Dg2meet.c1385 int chunk_type, chunk_start; in g2m_decode_frame() local
1409 chunk_type = bytestream2_get_byte(&bc); in g2m_decode_frame()
1413 chunk_size, chunk_type); in g2m_decode_frame()
1416 switch (chunk_type) { in g2m_decode_frame()
1551 chunk_type); in g2m_decode_frame()
Dcinepakenc.c376 static int write_chunk_header(unsigned char *buf, int chunk_type, int chunk_size) in write_chunk_header() argument
378 buf[0] = chunk_type; in write_chunk_header()
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c1557 png_uint_32 chunk_type; /* From header */ member
1569 type_message(chunk->file, chunk->chunk_type, message); in chunk_message()
1599 chunk->chunk_type = file->type; in chunk_init()
1621 png_uint_32 type = file->chunk->chunk_type; in current_type()
2086 type_name(zlib->chunk->chunk_type, stderr); in zlib_message()
2120 type_name(zlib->chunk->chunk_type, stdout); in zlib_end()
2145 type_name(zlib->chunk->chunk_type, stdout); in zlib_end()
2856 assert(file->chunk->chunk_type == png_IDAT); in process_chunk()
3253 type = chunk->chunk_type; in read_callback()
3289 type = chunk->chunk_type; in read_callback()