Home
last modified time | relevance | path

Searched refs:vscc (Results 1 – 6 of 6) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/winks/
Dksvideohelpers.c269 const KS_VIDEO_STREAM_CONFIG_CAPS * vscc) in ks_video_append_video_stream_cfg_fields() argument
276 g_return_val_if_fail (vscc, FALSE); in ks_video_append_video_stream_cfg_fields()
279 if (vscc->MinOutputSize.cx == vscc->MaxOutputSize.cx) { in ks_video_append_video_stream_cfg_fields()
281 "width", G_TYPE_INT, vscc->MaxOutputSize.cx, NULL); in ks_video_append_video_stream_cfg_fields()
285 vscc->MinOutputSize.cx, vscc->MaxOutputSize.cx, NULL); in ks_video_append_video_stream_cfg_fields()
289 if (vscc->MinOutputSize.cy == vscc->MaxOutputSize.cy) { in ks_video_append_video_stream_cfg_fields()
291 "height", G_TYPE_INT, vscc->MaxOutputSize.cy, NULL); in ks_video_append_video_stream_cfg_fields()
295 vscc->MinOutputSize.cy, vscc->MaxOutputSize.cy, NULL); in ks_video_append_video_stream_cfg_fields()
299 compress_fraction (NANOSECONDS, vscc->MinFrameInterval, &min_n, &min_d); in ks_video_append_video_stream_cfg_fields()
300 compress_fraction (NANOSECONDS, vscc->MaxFrameInterval, &max_n, &max_d); in ks_video_append_video_stream_cfg_fields()
[all …]
Dksvideohelpers.h44 const KS_VIDEO_STREAM_CONFIG_CAPS vscc; member
/third_party/uboot/u-boot-2020.01/tools/
Difdtool.c299 static void dump_vscc(uint32_t vscc) in dump_vscc() argument
302 vscc >> 24); in dump_vscc()
304 vscc & (1 << 20) ? 0x06 : 0x50); in dump_vscc()
306 vscc & (1 << 19) ? "Yes" : "No"); in dump_vscc()
308 vscc & (1 << 18) ? 64 : 1); in dump_vscc()
310 switch ((vscc >> 16) & 0x3) { in dump_vscc()
326 (vscc >> 8) & 0xff); in dump_vscc()
328 vscc & (1 << 4) ? 0x06 : 0x50); in dump_vscc()
330 vscc & (1 << 3) ? "Yes" : "No"); in dump_vscc()
332 vscc & (1 << 2) ? 64 : 1); in dump_vscc()
[all …]
Difdtool.h79 uint32_t vscc; member
/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/
Dgstdshow.cpp118 (BYTE *) & pin_mediatype->vscc); in gst_dshow_new_pin_mediatype_from_streamcaps()
129 pin_mediatype->granularityWidth = pin_mediatype->vscc.OutputGranularityX; in gst_dshow_new_pin_mediatype_from_streamcaps()
130 pin_mediatype->granularityHeight = pin_mediatype->vscc.OutputGranularityY; in gst_dshow_new_pin_mediatype_from_streamcaps()
716 min_w = pin_mediatype->vscc.MinOutputSize.cx; in gst_dshow_new_video_caps()
717 max_w = pin_mediatype->vscc.MaxOutputSize.cx; in gst_dshow_new_video_caps()
718 min_h = pin_mediatype->vscc.MinOutputSize.cy; in gst_dshow_new_video_caps()
719 max_h = pin_mediatype->vscc.MaxOutputSize.cy; in gst_dshow_new_video_caps()
720 min_fr = (gint) (10000000 / pin_mediatype->vscc.MaxFrameInterval); in gst_dshow_new_video_caps()
721 max_fr = (gint)(10000000 / pin_mediatype->vscc.MinFrameInterval); in gst_dshow_new_video_caps()
Dgstdshow.h51 VIDEO_STREAM_CONFIG_CAPS vscc; member