Lines Matching refs:base

66 	struct pipe_video_codec		base;
207 switch (u_reduce_video_profile(dec->base.profile)) {
241 unsigned width = align(dec->base.width, VL_MACROBLOCK_WIDTH);
242 unsigned height = align(dec->base.height, VL_MACROBLOCK_HEIGHT);
245 unsigned max_references = dec->base.max_references + 1;
256 switch (u_reduce_video_profile(dec->base.profile)) {
264 switch(dec->base.level) {
377 switch (pic->base.profile) {
396 result.level = dec->base.level;
410 switch (dec->base.chroma_format) {
476 switch(pic->base.profile) {
517 if (pic->base.profile != PIPE_VIDEO_PROFILE_VC1_SIMPLE) {
553 frame = (uintptr_t)vl_video_buffer_get_associated_data(ref, &dec->base);
618 result.video_object_layer_width = dec->base.width;
619 result.video_object_layer_height = dec->base.height;
953 dec->msg->body.decode.width_in_samples = dec->base.width;
954 dec->msg->body.decode.height_in_samples = dec->base.height;
965 dec->msg->body.decode.db_pitch = align(dec->base.width, get_db_pitch_alignment(dec));
1076 dec->base = *templ;
1077 dec->base.context = context;
1078 dec->base.width = width;
1079 dec->base.height = height;
1081 dec->base.destroy = ruvd_destroy;
1082 dec->base.begin_frame = ruvd_begin_frame;
1083 dec->base.decode_macroblock = ruvd_decode_macroblock;
1084 dec->base.decode_bitstream = ruvd_decode_bitstream;
1085 dec->base.end_frame = ruvd_end_frame;
1086 dec->base.flush = ruvd_flush;
1141 dec->msg->body.create.width_in_samples = dec->base.width;
1142 dec->msg->body.create.height_in_samples = dec->base.height;
1151 return &dec->base;