Lines Matching defs:block
27 block[i] = (c) * quant[i];
35 * @brief read one block from stream
37 * @param block where data is written to
38 * @param scan array containing the mapping stream address -> block position
40 * @return 0 means the block is not coded, < 0 means an error occurred.
46 static inline int get_block(GetBitContext *gb, int16_t *block, const uint8_t *scan,
52 // block not coded
62 // but since we do not know where they are we just clear the whole block
63 memset(block, 0, 64 * sizeof(int16_t));
120 int res = get_block(&gb, block, c->scan, quant); \
124 c->idsp.idct_put(dst, stride, block); \
126 int16_t *block = c->block;