Home
last modified time | relevance | path

Searched refs:chunk_count (Results 1 – 13 of 13) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dhap.c31 if (first_in_frame == 1 && ctx->chunk_count != count) { in ff_hap_set_chunk_count()
36 ctx->chunk_count = 0; in ff_hap_set_chunk_count()
38 ctx->chunk_count = count; in ff_hap_set_chunk_count()
40 } else if (ctx->chunk_count != count) { in ff_hap_set_chunk_count()
Dhapenc.c97 for (i = 0; i < ctx->chunk_count; i++) { in hap_compress_frame()
108 chunk->uncompressed_size = ctx->tex_size / ctx->chunk_count; in hap_compress_frame()
146 return (5 * ctx->chunk_count) + 8; in hap_decode_instructions_length()
154 if (ctx->chunk_count > 1) { in hap_header_length()
168 if (ctx->chunk_count == 1) { in hap_write_frame_header()
178 hap_write_section_header(&pbc, HAP_HDR_SHORT, ctx->chunk_count, in hap_write_frame_header()
181 for (i = 0; i < ctx->chunk_count; i++) { in hap_write_frame_header()
185 hap_write_section_header(&pbc, HAP_HDR_SHORT, ctx->chunk_count * 4, in hap_write_frame_header()
188 for (i = 0; i < ctx->chunk_count; i++) { in hap_write_frame_header()
200 int pktsize = FFMAX(ctx->tex_size, ctx->max_snappy * ctx->chunk_count) + header_length; in hap_encode()
Dhapdec.c106 for (i = 0; i < ctx->chunk_count; i++) { in hap_parse_decode_instructions()
121 for (i = 0; i < ctx->chunk_count; i++) { in hap_can_use_tex_in_place()
187 for (i = 0; i < ctx->chunk_count; i++) { in hap_parse_frame_header()
377 ctx->chunk_results, ctx->chunk_count); in hap_decode()
379 for (i = 0; i < ctx->chunk_count; i++) { in hap_decode()
Dhap.h71 int chunk_count; member
Dexr.c182 uint32_t chunk_count; member
1931 s->chunk_count = bytestream2_get_le32(gb); in decode_header()
/third_party/mindspore/mindspore/lite/tools/converter/quantizer/
Dfse_bit_stream.h46 void SetChunkCount(int chunk_count) { this->chunk_count_ = chunk_count; } in SetChunkCount() argument
/third_party/grpc/tools/interop_matrix/
Drun_interop_matrix_tests.py259 chunk_count = (len(images) + max_chunk_size) // max_chunk_size
261 for chunk_index in range(chunk_count):
/third_party/ffmpeg/libavformat/
Disom.h163 unsigned int chunk_count; member
Dmov.c2047 sc->chunk_count = 0; in mov_read_stco()
2051 sc->chunk_count = entries; in mov_read_stco()
2062 sc->chunk_count = i; in mov_read_stco()
2739 int chunk_count; in mov_get_stsc_samples() local
2742 chunk_count = sc->stsc_data[index + 1].first - sc->stsc_data[index].first; in mov_get_stsc_samples()
2745 av_assert0(sc->stsc_data[index].first <= sc->chunk_count); in mov_get_stsc_samples()
2746 chunk_count = sc->chunk_count - (sc->stsc_data[index].first - 1); in mov_get_stsc_samples()
2749 return sc->stsc_data[index].count * (int64_t)chunk_count; in mov_get_stsc_samples()
3909 for (i = 0; i < sc->chunk_count; i++) { in mov_build_index()
3910 int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX; in mov_build_index()
[all …]
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Drtp.c1295 guint32 ssrc, chunk_count; in GST_START_TEST() local
1331 &begin_seq, &end_seq, &chunk_count)); in GST_START_TEST()
1336 fail_unless_equals_int (chunk_count, 2); in GST_START_TEST()
1349 &begin_seq, &end_seq, &chunk_count)); in GST_START_TEST()
1354 fail_unless_equals_int (chunk_count, 4); in GST_START_TEST()
1377 &begin_seq, &end_seq, &chunk_count)); in GST_START_TEST()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtp/
Dgstrtcpbuffer.c2823 guint32 * chunk_count) in gst_rtcp_packet_xr_get_rle_info() argument
2837 if (chunk_count) in gst_rtcp_packet_xr_get_rle_info()
2838 *chunk_count = (block_len - 2) * 2; in gst_rtcp_packet_xr_get_rle_info()
2879 guint32 chunk_count; in gst_rtcp_packet_xr_get_rle_nth_chunk() local
2883 &chunk_count)) in gst_rtcp_packet_xr_get_rle_nth_chunk()
2886 if (nth >= chunk_count) in gst_rtcp_packet_xr_get_rle_nth_chunk()
Dgstrtcpbuffer.h590 guint32 * chunk_count);
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_message.cc2864 int chunk_count = 0; in GenerateClear() local
2869 chunk_count++; in GenerateClear()
2876 (chunk_count == 1 || merge_zero_init))); in GenerateClear()
2877 if (!same) chunk_count = 0; in GenerateClear()