Lines Matching defs:length
189 uint32_t key, length;
194 length = bytestream2_get_le32(gb);
198 if (length != 4)
205 if (length < 16)
215 length -= 16;
218 if (length != 4)
225 bytestream2_get_buffer(gb, codec_name, FFMIN(length, sizeof(codec_name) - 1));
226 length -= FFMIN(length, sizeof(codec_name) - 1);
227 if (strncmp(codec_name, "cintel_craw", FFMIN(length, sizeof(codec_name) - 1)))
232 if (bytestream2_get_bytes_left(gb) < length)
235 s->data_size = length;
239 length--;
243 length--;
246 if (length != 4)
253 if (length != 32)
260 av_log(avctx, AV_LOG_DEBUG, "skipping unknown key %u of length %u\n", key, length);
262 bytestream2_skip(gb, length);