Lines Matching refs:size
224 // padded to zero where table size is less then 16
594 static inline int16_t adpcm_sbpro_expand_nibble(ADPCMChannelStatus *c, int8_t nibble, int size, int shift)
598 sign = nibble & (1<<(size-1));
599 delta = nibble & ((1<<(size-1))-1);
606 if (delta >= (2*size - 3) && c->step < 3)
767 int size = buf_size*8;
770 init_get_bits(&gb, buf, size);
778 while (get_bits_count(&gb) <= size - 22 * channels) {
784 for (count = 0; get_bits_count(&gb) <= size - nb_bits * channels && count < 4095; count++) {
1029 bytestream2_skip(gb, 4); // channel size
1069 int buf_size = avpkt->size;
2124 for (int block = 0; block < avpkt->size / FFMAX(avctx->block_align, 16 * channels); block++) {
2182 for (int block = 0; block < avpkt->size / avctx->block_align; block++) {
2221 if (avpkt->size && bytestream2_tell(&gb) == 0) {
2228 if (avpkt->size < bytestream2_tell(&gb)) {
2229 av_log(avctx, AV_LOG_ERROR, "Overread of %d < %d\n", avpkt->size, bytestream2_tell(&gb));
2230 return avpkt->size;