Home
last modified time | relevance | path

Searched refs:caps (Results 1 – 25 of 2518) sorted by relevance

12345678910>>...101

/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_chipset.c37 static void r300_apply_hyperz_blacklist(struct r300_capabilities* caps) in r300_apply_hyperz_blacklist() argument
58 caps->zmask_ram = 0; in r300_apply_hyperz_blacklist()
59 caps->hiz_ram = 0; in r300_apply_hyperz_blacklist()
66 void r300_parse_chipset(uint32_t pci_id, struct r300_capabilities* caps) in r300_parse_chipset() argument
71 caps->family = CHIP_##chipfamily; \ in r300_parse_chipset()
83 caps->high_second_pipe = FALSE; in r300_parse_chipset()
84 caps->num_vert_fpus = 0; in r300_parse_chipset()
85 caps->hiz_ram = 0; in r300_parse_chipset()
86 caps->zmask_ram = 0; in r300_parse_chipset()
87 caps->has_cmask = FALSE; in r300_parse_chipset()
[all …]
/third_party/mesa3d/src/gallium/drivers/virgl/
Dvirgl_screen.c70 if (vscreen->caps.caps.v2.host_feature_check_version >= 5) in virgl_get_name()
71 return vscreen->caps.caps.v2.renderer; in virgl_get_name()
88 return vscreen->caps.caps.v2.max_anisotropy > 1.0; in virgl_get_param()
92 return vscreen->caps.caps.v1.max_render_targets; in virgl_get_param()
94 return vscreen->caps.caps.v1.max_dual_source_render_targets; in virgl_get_param()
96 return vscreen->caps.caps.v1.bset.occlusion_query; in virgl_get_param()
99 return vscreen->caps.caps.v1.bset.mirror_clamp; in virgl_get_param()
103 if (vscreen->caps.caps.v2.max_texture_2d_size) in virgl_get_param()
104 return vscreen->caps.caps.v2.max_texture_2d_size; in virgl_get_param()
107 if (vscreen->caps.caps.v2.max_texture_3d_size) in virgl_get_param()
[all …]
Dvirgl_winsys.h39 union virgl_caps caps; member
116 int (*get_caps)(struct virgl_winsys *vws, struct virgl_drm_caps *caps);
145 static inline void virgl_ws_fill_new_caps_defaults(struct virgl_drm_caps *caps) in virgl_ws_fill_new_caps_defaults() argument
147 caps->caps.v2.min_aliased_point_size = 1.f; in virgl_ws_fill_new_caps_defaults()
148 caps->caps.v2.max_aliased_point_size = 255.f; in virgl_ws_fill_new_caps_defaults()
149 caps->caps.v2.min_smooth_point_size = 1.f; in virgl_ws_fill_new_caps_defaults()
150 caps->caps.v2.max_smooth_point_size = 190.f; in virgl_ws_fill_new_caps_defaults()
151 caps->caps.v2.min_aliased_line_width = 1.f; in virgl_ws_fill_new_caps_defaults()
152 caps->caps.v2.max_aliased_line_width = 10.f; in virgl_ws_fill_new_caps_defaults()
153 caps->caps.v2.min_smooth_line_width = 0.f; in virgl_ws_fill_new_caps_defaults()
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgstcaps.c84 GstCaps caps; member
93 #define IS_WRITABLE(caps) \ argument
94 (GST_CAPS_REFCOUNT_VALUE (caps) == 1)
97 #define CAPS_IS_ANY(caps) \ argument
98 (!!(GST_CAPS_FLAGS(caps) & GST_CAPS_FLAG_ANY))
101 #define CAPS_IS_EMPTY(caps) \ argument
102 (!CAPS_IS_ANY(caps) && CAPS_IS_EMPTY_SIMPLE(caps))
104 #define CAPS_IS_EMPTY_SIMPLE(caps) \ argument
105 ((GST_CAPS_ARRAY (caps) == NULL) || (GST_CAPS_LEN (caps) == 0))
111 #define gst_caps_get_structure_unchecked(caps, index) \ argument
[all …]
Dgstcaps.h121 #define GST_CAPS_IS_SIMPLE(caps) (gst_caps_get_size(caps) == 1) argument
149 #define GST_CAPS_FLAGS(caps) GST_MINI_OBJECT_FLAGS(caps) argument
158 #define GST_CAPS_REFCOUNT(caps) GST_MINI_OBJECT_REFCOUNT(caps) argument
165 #define GST_CAPS_REFCOUNT_VALUE(caps) GST_MINI_OBJECT_REFCOUNT_VALUE(caps) argument
174 #define GST_CAPS_FLAG_IS_SET(caps,flag) GST_MINI_OBJECT_FLAG_IS_SET (caps, flag) argument
182 #define GST_CAPS_FLAG_SET(caps,flag) GST_MINI_OBJECT_FLAG_SET (caps, flag) argument
190 #define GST_CAPS_FLAG_UNSET(caps,flag) GST_MINI_OBJECT_FLAG_UNSET (caps, flag) argument
195 gst_caps_ref (GstCaps * caps) in gst_caps_ref() argument
197 return (GstCaps *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (caps)); in gst_caps_ref()
201 gst_caps_unref (GstCaps * caps) in gst_caps_unref() argument
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DCaps.cpp68 TextureCaps caps; in GenerateMinimumTextureCaps() local
71 caps.texturable = internalFormatInfo.textureSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
72 caps.filterable = internalFormatInfo.filterSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
73 caps.textureAttachment = internalFormatInfo.textureAttachmentSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
74 caps.renderbuffer = internalFormatInfo.renderbufferSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
75 caps.blendable = internalFormatInfo.blendSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
77 caps.sampleCounts.insert(0); in GenerateMinimumTextureCaps()
83 caps.sampleCounts.insert(4); in GenerateMinimumTextureCaps()
87 return caps; in GenerateMinimumTextureCaps()
94 void TextureCapsMap::insert(GLenum internalFormat, const TextureCaps &caps) in insert() argument
[all …]
DCompiler.cpp78 const gl::Caps &caps = state.getCaps(); in Compiler() local
91 mResources.MaxVertexAttribs = caps.maxVertexAttributes; in Compiler()
92 mResources.MaxVertexUniformVectors = caps.maxVertexUniformVectors; in Compiler()
93 mResources.MaxVaryingVectors = caps.maxVaryingVectors; in Compiler()
94 mResources.MaxVertexTextureImageUnits = caps.maxShaderTextureImageUnits[ShaderType::Vertex]; in Compiler()
95 mResources.MaxCombinedTextureImageUnits = caps.maxCombinedTextureImageUnits; in Compiler()
96 mResources.MaxTextureImageUnits = caps.maxShaderTextureImageUnits[ShaderType::Fragment]; in Compiler()
97 mResources.MaxFragmentUniformVectors = caps.maxFragmentUniformVectors; in Compiler()
98 mResources.MaxDrawBuffers = caps.maxDrawBuffers; in Compiler()
133 mResources.MaxViewsOVR = caps.maxViews; in Compiler()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DCaps.cpp67 TextureCaps caps; in GenerateMinimumTextureCaps() local
70 caps.texturable = internalFormatInfo.textureSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
71 caps.filterable = internalFormatInfo.filterSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
72 caps.textureAttachment = internalFormatInfo.textureAttachmentSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
73 caps.renderbuffer = internalFormatInfo.renderbufferSupport(clientVersion, extensions); in GenerateMinimumTextureCaps()
75 caps.sampleCounts.insert(0); in GenerateMinimumTextureCaps()
81 caps.sampleCounts.insert(4); in GenerateMinimumTextureCaps()
85 return caps; in GenerateMinimumTextureCaps()
92 void TextureCapsMap::insert(GLenum internalFormat, const TextureCaps &caps) in insert() argument
95 get(formatID) = caps; in insert()
[all …]
DCompiler.cpp71 const gl::Caps &caps = state.getCaps(); in Compiler() local
81 mResources.MaxVertexAttribs = caps.maxVertexAttributes; in Compiler()
82 mResources.MaxVertexUniformVectors = caps.maxVertexUniformVectors; in Compiler()
83 mResources.MaxVaryingVectors = caps.maxVaryingVectors; in Compiler()
84 mResources.MaxVertexTextureImageUnits = caps.maxShaderTextureImageUnits[ShaderType::Vertex]; in Compiler()
85 mResources.MaxCombinedTextureImageUnits = caps.maxCombinedTextureImageUnits; in Compiler()
86 mResources.MaxTextureImageUnits = caps.maxShaderTextureImageUnits[ShaderType::Fragment]; in Compiler()
87 mResources.MaxFragmentUniformVectors = caps.maxFragmentUniformVectors; in Compiler()
88 mResources.MaxDrawBuffers = caps.maxDrawBuffers; in Compiler()
115 mResources.MaxVertexOutputVectors = caps.maxVertexOutputComponents / 4; in Compiler()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/riff/
Driff-media.c56 GstCaps *caps = NULL; in gst_riff_create_video_caps() local
71 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
74 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
77 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
85 caps = in gst_riff_create_video_caps()
104 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
111 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
120 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
130 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
137 caps = gst_caps_new_simple ("video/x-raw", in gst_riff_create_video_caps()
[all …]
/third_party/gstreamer/gstplugins_base/tests/check/gst/
Dtypefindfunctions.c33 GstCaps *caps; in typefind_data() local
42 caps = gst_type_find_helper_for_buffer (NULL, buf, prob); in typefind_data()
43 GST_INFO ("caps: %" GST_PTR_FORMAT ", probability=%u", caps, *prob); in typefind_data()
47 return caps; in typefind_data()
84 GstCaps *caps = NULL; in GST_START_TEST() local
95 caps = gst_type_find_helper_for_buffer (NULL, buf, &prob); in GST_START_TEST()
96 fail_unless (caps != NULL); in GST_START_TEST()
97 GST_LOG ("Found type: %" GST_PTR_FORMAT, caps); in GST_START_TEST()
99 type = gst_structure_get_name (gst_caps_get_structure (caps, 0)); in GST_START_TEST()
104 gst_caps_unref (caps); in GST_START_TEST()
[all …]
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Dccextractor.c49 GstCaps *caps; in GST_START_TEST() local
62 caps = gst_pad_get_current_caps (h->sinkpad); in GST_START_TEST()
63 fail_unless (caps != NULL); in GST_START_TEST()
64 fail_unless (gst_caps_can_intersect (caps, in GST_START_TEST()
66 gst_caps_unref (caps); in GST_START_TEST()
88 GstCaps *caps; in GST_START_TEST() local
133 caps = gst_pad_get_current_caps (h->sinkpad); in GST_START_TEST()
134 fail_unless (caps != NULL); in GST_START_TEST()
135 fail_unless (gst_caps_can_intersect (caps, in GST_START_TEST()
137 gst_caps_unref (caps); in GST_START_TEST()
[all …]
/third_party/gstreamer/gstreamer/docs/random/wtay/
Dcapsnego-cases5 pad has caps
15 call negotiate function, set the resulting caps
23 call negotiate function, set the resulting caps
27 always compatible, caps are those of the pad
31 always compatible, caps are those of the pad
35 always compatible, caps are those of the pad
39 always compatible, caps are those of the pad
42 pad has caps
49 call negotiate function, set the resulting caps
57 call negotiate until caps match padtemplate
[all …]
/third_party/ffmpeg/libavdevice/
Ddshow_common.c85 void ff_print_VIDEO_STREAM_CONFIG_CAPS(const VIDEO_STREAM_CONFIG_CAPS *caps) in ff_print_VIDEO_STREAM_CONFIG_CAPS() argument
90 ff_printGUID(&caps->guid); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
92 dshowdebug(" VideoStandard\t%lu\n", caps->VideoStandard); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
93 dshowdebug(" InputSize %ld\t%ld\n", caps->InputSize.cx, caps->InputSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
94 dshowdebug(" MinCroppingSize %ld\t%ld\n", caps->MinCroppingSize.cx, caps->MinCroppingSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
95 dshowdebug(" MaxCroppingSize %ld\t%ld\n", caps->MaxCroppingSize.cx, caps->MaxCroppingSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
96 dshowdebug(" CropGranularityX\t%d\n", caps->CropGranularityX); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
97 dshowdebug(" CropGranularityY\t%d\n", caps->CropGranularityY); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
98 dshowdebug(" CropAlignX\t%d\n", caps->CropAlignX); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
99 dshowdebug(" CropAlignY\t%d\n", caps->CropAlignY); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
[all …]
/third_party/gstreamer/gst_libav/ext/libav/
Dgstavcodecmap.c191 gst_ffmpeg_video_set_pix_fmts (GstCaps * caps, const enum AVPixelFormat *fmts) in gst_ffmpeg_video_set_pix_fmts() argument
209 gst_caps_set_value (caps, "format", &va); in gst_ffmpeg_video_set_pix_fmts()
230 gst_caps_set_value (caps, "format", &v); in gst_ffmpeg_video_set_pix_fmts()
232 gst_caps_set_value (caps, "format", &va); in gst_ffmpeg_video_set_pix_fmts()
251 GstCaps *caps = NULL; in gst_ff_vid_caps_new() local
261 caps = gst_caps_new_simple (mimetype, in gst_ff_vid_caps_new()
278 gst_caps_set_simple (caps, in gst_ff_vid_caps_new()
285 caps = gst_caps_new_simple (mimetype, in gst_ff_vid_caps_new()
289 gst_caps_append (caps, gst_caps_new_simple (mimetype, in gst_ff_vid_caps_new()
305 caps = gst_caps_new_empty (); in gst_ff_vid_caps_new()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Drenderer9_utils.cpp484 gl::Caps *caps, in GenerateCaps() argument
510 caps->compressedTextureFormats.push_back(internalFormat); in GenerateCaps()
515 caps->maxElementIndex = static_cast<GLint64>(std::numeric_limits<unsigned int>::max()); in GenerateCaps()
518 caps->max3DTextureSize = 1; in GenerateCaps()
521 caps->max2DTextureSize = std::min(deviceCaps.MaxTextureWidth, deviceCaps.MaxTextureHeight); in GenerateCaps()
524 caps->maxCubeMapTextureSize = caps->max2DTextureSize; in GenerateCaps()
527 caps->maxArrayTextureLayers = 1; in GenerateCaps()
530 caps->maxLODBias = 0.0f; in GenerateCaps()
533 caps->maxRenderbufferSize = caps->max2DTextureSize; in GenerateCaps()
536 caps->maxDrawBuffers = 1; in GenerateCaps()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Drenderer9_utils.cpp501 gl::Caps *caps, in GenerateCaps() argument
527 caps->compressedTextureFormats.push_back(internalFormat); in GenerateCaps()
532 caps->maxElementIndex = static_cast<GLint64>(std::numeric_limits<unsigned int>::max()); in GenerateCaps()
535 caps->max3DTextureSize = 1; in GenerateCaps()
538 caps->max2DTextureSize = std::min(deviceCaps.MaxTextureWidth, deviceCaps.MaxTextureHeight); in GenerateCaps()
541 caps->maxCubeMapTextureSize = caps->max2DTextureSize; in GenerateCaps()
544 caps->maxArrayTextureLayers = 1; in GenerateCaps()
547 caps->maxLODBias = 0.0f; in GenerateCaps()
550 caps->maxRenderbufferSize = caps->max2DTextureSize; in GenerateCaps()
553 caps->maxDrawBuffers = 1; in GenerateCaps()
[all …]
/third_party/gstreamer/gstplugins_base/gst/overlaycomposition/
Dgstoverlaycomposition.c63 GstCaps *caps; in can_blend_caps() local
65 caps = gst_static_caps_get (&overlay_composition_caps); in can_blend_caps()
66 ret = gst_caps_is_subset (incaps, caps); in can_blend_caps()
67 gst_caps_unref (caps); in can_blend_caps()
203 gst_caps_replace (&self->caps, NULL); in gst_overlay_composition_change_state()
215 gst_overlay_composition_negotiate (GstOverlayComposition * self, GstCaps * caps) in gst_overlay_composition_negotiate() argument
235 if (!caps) in gst_overlay_composition_negotiate()
236 caps = gst_pad_get_current_caps (self->sinkpad); in gst_overlay_composition_negotiate()
238 gst_caps_ref (caps); in gst_overlay_composition_negotiate()
240 if (!caps || gst_caps_is_empty (caps)) in gst_overlay_composition_negotiate()
[all …]
/third_party/gstreamer/gstplugins_bad/tests/examples/camerabin2/
Dgst-camera2.c59 GstCaps *caps = NULL; in create_ogg_profile() local
61 caps = gst_caps_new_empty_simple ("application/ogg"); in create_ogg_profile()
62 container = gst_encoding_container_profile_new ("ogg", NULL, caps, NULL); in create_ogg_profile()
63 gst_caps_unref (caps); in create_ogg_profile()
65 caps = gst_caps_new_empty_simple ("video/x-theora"); in create_ogg_profile()
67 gst_encoding_video_profile_new (caps, NULL, NULL, 1)); in create_ogg_profile()
68 gst_caps_unref (caps); in create_ogg_profile()
70 caps = gst_caps_new_empty_simple ("audio/x-vorbis"); in create_ogg_profile()
72 gst_encoding_audio_profile_new (caps, NULL, NULL, 1)); in create_ogg_profile()
73 gst_caps_unref (caps); in create_ogg_profile()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/codecalpha/
Dgstcodecalphademux.c128 gst_codec_alpha_demux_transform_caps (GstCaps * caps, gboolean codec_alpha) in gst_codec_alpha_demux_transform_caps() argument
130 if (!caps) in gst_codec_alpha_demux_transform_caps()
133 caps = gst_caps_copy (caps); in gst_codec_alpha_demux_transform_caps()
134 gst_caps_set_simple (caps, "codec-alpha", G_TYPE_BOOLEAN, codec_alpha, NULL); in gst_codec_alpha_demux_transform_caps()
136 return caps; in gst_codec_alpha_demux_transform_caps()
143 GstCaps *caps; in gst_codec_alpha_demux_transform_caps_event() local
145 gst_event_parse_caps (src_event, &caps); in gst_codec_alpha_demux_transform_caps_event()
147 caps = gst_codec_alpha_demux_transform_caps (caps, FALSE); in gst_codec_alpha_demux_transform_caps_event()
148 dst_event = gst_event_new_caps (caps); in gst_codec_alpha_demux_transform_caps_event()
151 gst_caps_unref (caps); in gst_codec_alpha_demux_transform_caps_event()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp425 gl::Caps *caps, in GenerateCaps() argument
441 caps->compressedTextureFormats.push_back(internalFormat); in GenerateCaps()
453 caps->maxElementIndex = QuerySingleGLInt64(functions, GL_MAX_ELEMENT_INDEX); in GenerateCaps()
456 if (caps->maxElementIndex == 0) in GenerateCaps()
458 caps->maxElementIndex = 0xFFFF; in GenerateCaps()
464 caps->maxElementIndex = static_cast<GLint64>(std::numeric_limits<unsigned int>::max()); in GenerateCaps()
482 caps->max3DTextureSize = std::min({QuerySingleGLInt(functions, GL_MAX_3D_TEXTURE_SIZE), in GenerateCaps()
491 caps->max2DTextureSize = std::min(QuerySingleGLInt(functions, GL_MAX_TEXTURE_SIZE), in GenerateCaps()
493 caps->maxCubeMapTextureSize = in GenerateCaps()
501 caps->maxArrayTextureLayers = in GenerateCaps()
[all …]
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Dvideorate.c170 GstCaps *caps; in GST_START_TEST() local
179 caps = gst_caps_from_string (VIDEO_CAPS_STRING); in GST_START_TEST()
180 gst_check_setup_events (mysrcpad, videorate, caps, GST_FORMAT_TIME); in GST_START_TEST()
182 gst_caps_unref (caps); in GST_START_TEST()
202 GstCaps *caps; in GST_START_TEST() local
221 caps = gst_caps_from_string (VIDEO_CAPS_STRING); in GST_START_TEST()
222 gst_check_setup_events (mysrcpad, videorate, caps, GST_FORMAT_TIME); in GST_START_TEST()
223 gst_caps_unref (caps); in GST_START_TEST()
327 GstCaps *caps; in GST_START_TEST() local
339 caps = gst_caps_from_string (VIDEO_CAPS_STRING); in GST_START_TEST()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.cpp948 void SetUAVRelatedResourceLimits(D3D_FEATURE_LEVEL featureLevel, gl::Caps *caps) in SetUAVRelatedResourceLimits() argument
950 ASSERT(caps); in SetUAVRelatedResourceLimits()
976 caps->maxCombinedAtomicCounterBuffers = reservedUAVsForAtomicCounterBuffers; in SetUAVRelatedResourceLimits()
977 caps->maxShaderAtomicCounterBuffers[gl::ShaderType::Compute] = in SetUAVRelatedResourceLimits()
979 caps->maxShaderAtomicCounterBuffers[gl::ShaderType::Fragment] = in SetUAVRelatedResourceLimits()
981 caps->maxAtomicCounterBufferBindings = reservedUAVsForAtomicCounterBuffers; in SetUAVRelatedResourceLimits()
986 caps->maxCombinedAtomicCounters = reservedUAVsForAtomicCounterBuffers * 1024; in SetUAVRelatedResourceLimits()
987 caps->maxShaderAtomicCounters[gl::ShaderType::Compute] = caps->maxCombinedAtomicCounters; in SetUAVRelatedResourceLimits()
993 caps->maxShaderStorageBlockSize = in SetUAVRelatedResourceLimits()
999 caps->maxCombinedShaderOutputResources = in SetUAVRelatedResourceLimits()
[all …]
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtph263ppay.c108 GstCaps * caps);
183 gst_rtp_h263p_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps) in gst_rtp_h263p_pay_setcaps() argument
189 g_return_val_if_fail (gst_caps_is_fixed (caps), FALSE); in gst_rtp_h263p_pay_setcaps()
219 caps_append (GstCaps * caps, GstStructure * in_s, guint x, guint y, guint mpi) in caps_append() argument
224 return caps; in caps_append()
227 return caps; in caps_append()
236 caps = gst_caps_merge_structure (caps, s); in caps_append()
238 return caps; in caps_append()
247 GstCaps *caps = NULL, *templ; in gst_rtp_h263p_pay_sink_getcaps() local
262 caps = in gst_rtp_h263p_pay_sink_getcaps()
[all …]
/third_party/python/Lib/
Dmailcap.py29 caps = {}
39 if not key in caps:
40 caps[key] = value
42 caps[key] = caps[key] + value
43 return caps
67 caps, _ = _readmailcapfile(fp, None)
68 return caps
80 caps = {}
106 if key in caps:
107 caps[key].append(fields)
[all …]

12345678910>>...101