HomeSort by relevance Sort by last modified time
    Searched refs:vc1 (Results 1 - 20 of 20) sorted by null

  /external/mesa3d/src/gallium/state_trackers/va/
picture_vc1.c 32 VAPictureParameterBufferVC1 * vc1 = buf->data; local
35 context->desc.vc1.slice_count = 0;
36 vlVaGetReferenceFrame(drv, vc1->forward_reference_picture, &context->desc.vc1.ref[0]);
37 vlVaGetReferenceFrame(drv, vc1->backward_reference_picture, &context->desc.vc1.ref[1]);
38 context->desc.vc1.picture_type = vc1->picture_fields.bits.picture_type;
39 context->desc.vc1.frame_coding_mode = vc1->picture_fields.bits.frame_coding_mode
    [all...]
va_private.h 244 struct pipe_vc1_picture_desc vc1; member in union:__anon28378::__anon28379
  /external/valgrind/drd/
drd_vc.h 81 Bool DRD_(vc_lte)(const VectorClock* const vc1,
83 Bool DRD_(vc_ordered)(const VectorClock* const vc1,
97 * @return True if all thread id's that are present in vc1 also exist in
102 Bool DRD_(vc_lte)(const VectorClock* const vc1, const VectorClock* const vc2)
107 for (i = 0; i < vc1->size; i++)
109 while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid)
111 if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid)
118 tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid);
120 if (vc1->vc[i].count > vc2->vc[j].count)
drd_segment.c 208 HChar *vc1, *vc2; local
210 vc1 = DRD_(vc_aprint)(&sg1->vc);
214 "Merging segments with vector clocks %s and %s\n", vc1, vc2);
215 VG_(free)(vc1);
drd_vc.c 115 * @return True if vector clocks vc1 and vc2 are ordered, and false otherwise.
118 Bool DRD_(vc_ordered)(const VectorClock* const vc1,
121 return DRD_(vc_lte)(vc1, vc2) || DRD_(vc_lte)(vc2, vc1);
  /external/valgrind/drd/tests/
unit_vc.stderr.exp 0 vc1: [ 3: 7, 5: 8 ]
4 vc_lte(vc1, vc2) = 0, vc_lte(vc1, vc3) = 1, vc_lte(vc2, vc3) = 1
unit_vc.c 58 VectorClock vc1; local
68 DRD_(vc_init)(&vc1, vc1elem, sizeof(vc1elem)/sizeof(vc1elem[0]));
74 DRD_(vc_combine)(&vc3, &vc1);
77 fprintf(stderr, "vc1: %s", (str = DRD_(vc_aprint)(&vc1)));
84 fprintf(stderr, "vc_lte(vc1, vc2) = %d, vc_lte(vc1, vc3) = %d,"
86 DRD_(vc_lte)(&vc1, &vc2), DRD_(vc_lte)(&vc1, &vc3),
97 DRD_(vc_reserve)(&vc1, i)
    [all...]
  /external/clang/test/CodeGen/
Nontemporal.cpp 15 char __attribute__((vector_size(8))) vc1, vc2; variable
33 __builtin_nontemporal_store(vc1, &vc2); // CHECK: store <8 x i8>{{.*}}align 8, !nontemporal
47 vc2 = __builtin_nontemporal_load(&vc1); // CHECK: load <8 x i8>{{.*}}align 8, !nontemporal
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/include/
viddec_fw_frame_attr.h 65 This enumeration lists all the frame types defined by the MPEG, VC1 and H264 specifications.
75 VIDDEC_FRAME_TYPE_BI=0x5, /** BI frame - Intracoded B frame - vc1 only */
76 VIDDEC_FRAME_TYPE_SKIP=0x6, /** Skipped frame - vc1 only */
157 This structure contains the VC1 specific frame attributes.
163 Refer to "TFCNTR" in the picture layer of the SMPTE VC1 Specification.
170 of the SMPTE VC1 Specification.
179 "PS_WIDTH" and "PS_HEIGHT" in the picture layer of the SMPTE VC1 Specification.
254 For VC1, refer to "MAX_CODED_WIDTH" and "MAX_CODED_HEIGHT" in the sequence layer,
255 "CODED_SIZE_FLAG", "CODED_WIDTH" and "CODED_HEIGHT" in the entrypoint layer of the SMPTE VC1 Specification.
265 For VC1, refer to "PTYPE" and FPTYPE in the picture layer (Tables 33, 34, 35, 105) in SMPTE VC1 Specificat (…)
274 viddec_vc1_frame_attributes_t vc1; member in union:viddec_frame_attributes::__anon42190
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv84_video.h 44 struct pipe_vc1_picture_desc *vc1; member in union:pipe_desc
nv98_video_ppp.c 106 case PIPE_VIDEO_FORMAT_VC1: ppp_caps = nv98_decoder_vc1_ppp(dec, desc.vc1, target); break;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
viddec_vc1_workload.c 4 #include "vc1.h"
10 /* this function returns workload frame types corresponding to VC1 PTYPES (frame types)
11 * VC1 frame types: can be found in vc1parse_common_defs.h
38 } // switch on vc1 frame type
65 attrs->vc1.tfcntr = info->picLayerHeader.TFCNTR;
68 attrs->vc1.tff = info->picLayerHeader.TFF;
69 attrs->vc1.rptfrm = info->picLayerHeader.RPTFRM;
70 attrs->vc1.rff = info->picLayerHeader.RFF;
73 attrs->vc1.ps_present = info->picLayerHeader.PS_PRESENT;
74 attrs->vc1.num_of_pan_scan_windows = info->picLayerHeader.number_of_pan_scan_window
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_video_ppp.c 106 case PIPE_VIDEO_FORMAT_VC1: ppp_caps = nvc0_decoder_vc1_ppp(dec, desc.vc1, target); break;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_vp3_video.h 60 struct pipe_vc1_picture_desc *vc1; member in union:pipe_desc
nouveau_vp3_video_bsp.c 305 caps = nouveau_vp3_fill_picparm_vc1_bsp(dec, desc.vc1, bsp);
nouveau_vp3_video_vp.c 502 *caps = nouveau_vp3_fill_picparm_vc1_vp(dec, desc.vc1, refs, is_ref, vp);
504 if (desc.vc1->frame_coding_mode == 3)
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_uvd.h 408 struct ruvd_vc1 vc1; member in union:ruvd_msg::__anon27874::__anon27876::__anon27877
radeon_uvd.c 731 /* get vc1 specific message bits */
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_utils.c 13 #include "vc1.h"
120 SET_FUNC_POINTER(VBP_VC1, vc1);
284 * for H.264 and MPEG-4, VC1 advanced profile and set to 0
285 * for VC1 simple or main profile when parsing the frame
  /external/mesa3d/src/gallium/state_trackers/vdpau/
decode.c 582 struct pipe_vc1_picture_desc vc1; member in union:__anon28383
660 ret = vlVdpDecoderRenderVC1(&desc.vc1, (VdpPictureInfoVC1 *)picture_info);

Completed in 2742 milliseconds