Home
last modified time | relevance | path

Searched refs:pic_conf (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dindeo5.c65 IVIPicConfig pic_conf; in decode_gop_header() local
82 pic_conf.luma_bands = get_bits(&ctx->gb, 2) * 3 + 1; in decode_gop_header()
83 pic_conf.chroma_bands = get_bits1(&ctx->gb) * 3 + 1; in decode_gop_header()
84 is_scalable = pic_conf.luma_bands != 1 || pic_conf.chroma_bands != 1; in decode_gop_header()
85 if (is_scalable && (pic_conf.luma_bands != 4 || pic_conf.chroma_bands != 1)) { in decode_gop_header()
87 pic_conf.luma_bands, pic_conf.chroma_bands); in decode_gop_header()
93 pic_conf.pic_height = get_bits(&ctx->gb, 13); in decode_gop_header()
94 pic_conf.pic_width = get_bits(&ctx->gb, 13); in decode_gop_header()
96 pic_conf.pic_height = ivi5_common_pic_sizes[pic_size_indx * 2 + 1] << 2; in decode_gop_header()
97 pic_conf.pic_width = ivi5_common_pic_sizes[pic_size_indx * 2 ] << 2; in decode_gop_header()
[all …]
Dindeo4.c109 IVIPicConfig pic_conf; in decode_pic_hdr() local
152 pic_conf.pic_height = get_bits(&ctx->gb, 16); in decode_pic_hdr()
153 pic_conf.pic_width = get_bits(&ctx->gb, 16); in decode_pic_hdr()
155 pic_conf.pic_height = ivi4_common_pic_sizes[pic_size_indx * 2 + 1]; in decode_pic_hdr()
156 pic_conf.pic_width = ivi4_common_pic_sizes[pic_size_indx * 2 ]; in decode_pic_hdr()
162 pic_conf.tile_height = scale_tile_size(pic_conf.pic_height, get_bits(&ctx->gb, 4)); in decode_pic_hdr()
163 pic_conf.tile_width = scale_tile_size(pic_conf.pic_width, get_bits(&ctx->gb, 4)); in decode_pic_hdr()
165 pic_conf.tile_height = pic_conf.pic_height; in decode_pic_hdr()
166 pic_conf.tile_width = pic_conf.pic_width; in decode_pic_hdr()
174 pic_conf.chroma_height = (pic_conf.pic_height + 3) >> 2; in decode_pic_hdr()
[all …]
Divi.h229 IVIPicConfig pic_conf; member
Divi.c924 if (ctx->pic_conf.luma_bands <= 1 && i == 2) in prepare_buf()