Lines Matching defs:pic_conf

65     IVIPicConfig    pic_conf;
82 pic_conf.luma_bands = get_bits(&ctx->gb, 2) * 3 + 1;
83 pic_conf.chroma_bands = get_bits1(&ctx->gb) * 3 + 1;
84 is_scalable = pic_conf.luma_bands != 1 || pic_conf.chroma_bands != 1;
85 if (is_scalable && (pic_conf.luma_bands != 4 || pic_conf.chroma_bands != 1)) {
87 pic_conf.luma_bands, pic_conf.chroma_bands);
93 pic_conf.pic_height = get_bits(&ctx->gb, 13);
94 pic_conf.pic_width = get_bits(&ctx->gb, 13);
96 pic_conf.pic_height = ivi5_common_pic_sizes[pic_size_indx * 2 + 1] << 2;
97 pic_conf.pic_width = ivi5_common_pic_sizes[pic_size_indx * 2 ] << 2;
105 pic_conf.chroma_height = (pic_conf.pic_height + 3) >> 2;
106 pic_conf.chroma_width = (pic_conf.pic_width + 3) >> 2;
109 pic_conf.tile_height = pic_conf.pic_height;
110 pic_conf.tile_width = pic_conf.pic_width;
112 pic_conf.tile_height = pic_conf.tile_width = tile_size;
116 if (ivi_pic_config_cmp(&pic_conf, &ctx->pic_conf) || ctx->gop_invalid) {
117 result = ff_ivi_init_planes(avctx, ctx->planes, &pic_conf, 0);
122 ctx->pic_conf = pic_conf;
128 for (i = 0; i < (!p ? pic_conf.luma_bands : pic_conf.chroma_bands); i++) {
201 quant_mat = (pic_conf.luma_bands > 1) ? i+1 : 0;
230 for (i = 0; i < pic_conf.chroma_bands; i++) {
252 result = ff_ivi_init_tiles(ctx->planes, pic_conf.tile_width,
253 pic_conf.tile_height);
656 ctx->pic_conf.pic_width = avctx->width;
657 ctx->pic_conf.pic_height = avctx->height;
658 ctx->pic_conf.chroma_width = (avctx->width + 3) >> 2;
659 ctx->pic_conf.chroma_height = (avctx->height + 3) >> 2;
660 ctx->pic_conf.tile_width = avctx->width;
661 ctx->pic_conf.tile_height = avctx->height;
662 ctx->pic_conf.luma_bands = ctx->pic_conf.chroma_bands = 1;
664 result = ff_ivi_init_planes(avctx, ctx->planes, &ctx->pic_conf, 0);