Lines Matching defs:src
395 ctx->src + slice_off[slice_no],
407 const uint8_t *src = avpkt->data;
417 info_tag = AV_RL32(src);
419 uint32_t info_offset = AV_RL32(src + 4);
426 ff_canopus_parse_info_tag(avctx, src + 8, info_offset);
429 src += info_offset;
432 data_start = src - avpkt->data;
434 ctx->src = src;
442 if (src[0] != 'H' || src[1] != 'Q') {
446 ctx->interlaced = !(src[2] & 0x80);
447 ctx->format = src[2] & 7;
448 ctx->dcb = (src[3] & 3) + 8;
449 ctx->width = AV_RB16(src + 4);
450 ctx->height = AV_RB16(src + 6);
452 ctx->slice_off[i] = AV_RB24(src + 8 + i * 3);