Home
last modified time | relevance | path

Searched refs:total_blocks (Results 1 – 16 of 16) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dbmvaudio.c47 int blocks = 0, total_blocks, i; in bmv_aud_decode_frame() local
52 total_blocks = *buf++; in bmv_aud_decode_frame()
53 if (buf_size < total_blocks * 65 + 1) { in bmv_aud_decode_frame()
55 total_blocks * 65 + 1, buf_size); in bmv_aud_decode_frame()
60 frame->nb_samples = total_blocks * 32; in bmv_aud_decode_frame()
65 for (blocks = 0; blocks < total_blocks; blocks++) { in bmv_aud_decode_frame()
Dmsvideo1.c89 int total_blocks; in msvideo1_decode_8bit() local
109 total_blocks = blocks_wide * blocks_high; in msvideo1_decode_8bit()
120 total_blocks--; in msvideo1_decode_8bit()
132 if ((byte_a == 0) && (byte_b == 0) && (total_blocks == 0)) in msvideo1_decode_8bit()
177 total_blocks--; in msvideo1_decode_8bit()
189 int total_blocks; in msvideo1_decode_16bit() local
209 total_blocks = blocks_wide * blocks_high; in msvideo1_decode_16bit()
220 total_blocks--; in msvideo1_decode_16bit()
232 if ((byte_a == 0) && (byte_b == 0) && (total_blocks == 0)) { in msvideo1_decode_16bit()
290 total_blocks--; in msvideo1_decode_16bit()
Drpza.c56 if (total_blocks < 1) { \
70 total_blocks--; \
87 int total_blocks; in rpza_decode_stream() local
106 total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4); in rpza_decode_stream()
108 if (total_blocks / 32 > bytestream2_get_bytes_left(&s->gb)) in rpza_decode_stream()
136 n_blocks = FFMIN(n_blocks, total_blocks); in rpza_decode_stream()
Dsmc.c72 total_blocks--; \
73 if (total_blocks < !!n_blocks) \
106 int total_blocks; in smc_decode_stream() local
124 total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4); in smc_decode_stream()
127 while (total_blocks) { in smc_decode_stream()
441 int total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4); in smc_decode_frame() local
443 if (total_blocks / 1024 > avpkt->size) in smc_decode_frame()
Drpzaenc.c83 int total_blocks; member
554 int total_blocks; in rpza_encode_stream() local
570 total_blocks = ((s->frame_width + 3) / 4) * ((s->frame_height + 3) / 4); in rpza_encode_stream()
578 while (block_counter < total_blocks) { in rpza_encode_stream()
586 while (n_blocks < 32 && block_counter + n_blocks < total_blocks) { in rpza_encode_stream()
657 while (n_blocks < 32 && block_counter + n_blocks < total_blocks) { in rpza_encode_stream()
Descape130.c203 unsigned total_blocks = avctx->width * avctx->height / 4, in escape130_decode_frame() local
235 for (block_index = 0; block_index < total_blocks; block_index++) { in escape130_decode_frame()
/third_party/libsnd/src/
Dsds.c49 int samplesperblock, total_blocks ; member
294 psds->total_blocks = blockcount ; in sds_read_header()
713 if (newblock > psds->total_blocks) in sds_seek()
731 if (newblock > psds->total_blocks) in sds_seek()
803 if (psds->write_block > psds->total_blocks) in sds_2byte_write()
804 psds->total_blocks = psds->write_block ; in sds_2byte_write()
805 psds->frames = psds->total_blocks * psds->samplesperblock ; in sds_2byte_write()
845 if (psds->write_block > psds->total_blocks) in sds_3byte_write()
846 psds->total_blocks = psds->write_block ; in sds_3byte_write()
847 psds->frames = psds->total_blocks * psds->samplesperblock ; in sds_3byte_write()
[all …]
/third_party/python/Python/
Dpyarena.c70 size_t total_blocks; member
150 arena->total_blocks = 1; in _PyArena_New()
194 arena->total_blocks++; in _PyArena_Malloc()
/third_party/openssl/crypto/
Dparam_build.c46 size_t total_blocks; member
68 bld->total_blocks += pd->alloc_blocks; in param_push()
360 const size_t total = OSSL_PARAM_ALIGN_SIZE * (p_blks + bld->total_blocks); in OSSL_PARAM_BLD_to_param()
381 bld->total_blocks = 0; in OSSL_PARAM_BLD_to_param()
/third_party/libwebsockets/lib/misc/lwsac/
Dprivate-lib-misc-lwsac.h60 int total_blocks; member
Dlwsac.c184 lachead->total_blocks++; in _lwsac_use()
291 (int)(lachead->total_alloc_size >> 10), lachead->total_blocks); in lwsac_info()
/third_party/ffmpeg/libavformat/
Dape.c151 int total_blocks, final_size = 0; in ape_read_header() local
335total_blocks = (ape->totalframes == 0) ? 0 : ((ape->totalframes - 1) * ape->blocksperframe) + ape-… in ape_read_header()
346 st->duration = total_blocks; in ape_read_header()
/third_party/gstreamer/gstplugins_good/gst/avi/
Dgstavidemux.h98 guint32 total_blocks; member
Dgstavidemux.c1358 entry->total = stream->total_blocks; in gst_avi_demux_add_index()
1364 stream->total_blocks += DIV_ROUND_UP (entry->size, blockalign); in gst_avi_demux_add_index()
1366 stream->total_blocks++; in gst_avi_demux_add_index()
2433 stream->total_blocks = 0; in gst_avi_demux_parse_stream()
/third_party/libcoap/src/
Dblock.c770 check_all_blocks_in(coap_rblock_t *rec_blocks, size_t total_blocks) { in check_all_blocks_in() argument
781 if (block + 1 < total_blocks) in check_all_blocks_in()
/third_party/rust/crates/libc/src/unix/haiku/
Dnative.rs336 pub total_blocks: ::off_t,