Lines Matching defs:data_size
118 int prof_num, size_t data_size)
157 slice_off[slice + 1] > data_size) {
159 "Invalid slice size %"SIZE_SPECIFIER".\n", data_size);
243 static int hqa_decode_frame(HQContext *ctx, AVFrame *pic, size_t data_size)
288 slice_off[slice + 1] > data_size) {
290 "Invalid slice size %"SIZE_SPECIFIER".\n", data_size);
309 unsigned int data_size;
333 data_size = bytestream2_get_bytes_left(&ctx->gbc);
334 if (data_size < 4) {
335 av_log(avctx, AV_LOG_ERROR, "Frame is too small (%d).\n", data_size);
344 ret = hq_decode_frame(ctx, pic, tag >> 24, data_size);
346 ret = hqa_decode_frame(ctx, pic, data_size);