Home
last modified time | relevance | path

Searched refs:video_info (Results 1 – 25 of 27) sorted by relevance

12

/third_party/uboot/u-boot-2020.01/drivers/video/exynos/
Dexynos_dp.c796 if (priv->video_info.master_mode) { in exynos_dp_config_video()
802 &priv->video_info); in exynos_dp_config_video()
805 exynos_dp_set_video_color_format(regs, &priv->video_info); in exynos_dp_config_video()
807 if (priv->video_info.bist_mode) { in exynos_dp_config_video()
818 if (priv->video_info.master_mode == 0) { in exynos_dp_config_video()
841 if (priv->video_info.bist_pattern != COLOR_RAMP && in exynos_dp_config_video()
842 priv->video_info.bist_pattern != BALCK_WHITE_V_LINES && in exynos_dp_config_video()
843 priv->video_info.bist_pattern != COLOR_SQUARE) in exynos_dp_config_video()
845 priv->video_info.bist_mode); in exynos_dp_config_video()
854 priv->video_info.master_mode); in exynos_dp_config_video()
[all …]
Dexynos_dp_lowlevel.c1007 struct edp_video_info *video_info) in exynos_dp_config_video_slave_mode() argument
1020 reg |= (video_info->interlaced << INTERACE_SCAN_CFG_SHIFT); in exynos_dp_config_video_slave_mode()
1026 reg |= (video_info->v_sync_polarity << V_S_POLARITY_CFG_SHIFT); in exynos_dp_config_video_slave_mode()
1032 reg |= (video_info->h_sync_polarity << H_S_POLARITY_CFG_SHIFT); in exynos_dp_config_video_slave_mode()
1041 struct edp_video_info *video_info) in exynos_dp_set_video_color_format() argument
1046 reg = (video_info->dynamic_range << IN_D_RANGE_SHIFT) | in exynos_dp_set_video_color_format()
1047 (video_info->color_depth << IN_BPC_SHIFT) | in exynos_dp_set_video_color_format()
1048 (video_info->color_space << IN_COLOR_F_SHIFT); in exynos_dp_set_video_color_format()
1054 if (video_info->ycbcr_coeff) in exynos_dp_set_video_color_format()
1066 struct edp_video_info video_info = priv->video_info; in exynos_dp_config_video_bist() local
[all …]
Dexynos_dp_lowlevel.h72 struct edp_video_info *video_info);
74 struct edp_video_info *video_info);
/third_party/gstreamer/gstplugins_bad/ext/wayland/
Dgstwaylandsink.c524 gsize size = sink->video_info.size; in gst_wayland_create_pool()
555 if (!gst_video_info_from_caps (&sink->video_info, caps)) in gst_wayland_sink_set_caps()
558 format = GST_VIDEO_INFO_FORMAT (&sink->video_info); in gst_wayland_sink_set_caps()
609 gst_query_add_allocation_pool (query, pool, sink->video_info.size, 2, 0); in gst_wayland_sink_propose_allocation()
656 info = &sink->video_info; in render_last_buffer()
700 &sink->video_info, sink->fullscreen, &sink->render_lock); in gst_wayland_sink_show_frame()
728 old_vinfo = sink->video_info; in gst_wayland_sink_show_frame()
734 sink->video_info.offset[i] = vmeta->offset[i]; in gst_wayland_sink_show_frame()
735 sink->video_info.stride[i] = vmeta->stride[i]; in gst_wayland_sink_show_frame()
737 sink->video_info.size = gst_buffer_get_size (buffer); in gst_wayland_sink_show_frame()
[all …]
Dgstwaylandsink.h62 GstVideoInfo video_info; member
/third_party/gstreamer/gstplugins_bad/sys/applemedia/
Dvtdec.c278 format, vtdec->video_info.width, vtdec->video_info.height, in gst_vtdec_negotiate()
382 gst_video_info_from_caps (&vtdec->video_info, state->caps); in gst_vtdec_set_format()
537 vtdec->video_info.width); in gst_vtdec_create_session()
539 vtdec->video_info.height); in gst_vtdec_create_session()
560 cm_format, vtdec->video_info.width, vtdec->video_info.height, in create_format_description()
591 vtdec->video_info.par_n); in create_format_description_from_codec_data()
593 vtdec->video_info.par_d); in create_format_description_from_codec_data()
607 cm_format, vtdec->video_info.width, vtdec->video_info.height, in create_format_description_from_codec_data()
969 int width_in_mb_s = GST_ROUND_UP_16 (vtdec->video_info.width) / dpb_mb_size; in compute_h264_decode_picture_buffer_length()
970 int height_in_mb_s = GST_ROUND_UP_16 (vtdec->video_info.height) / dpb_mb_size; in compute_h264_decode_picture_buffer_length()
[all …]
Dvtenc.c692 self->video_info = state->info; in gst_vtenc_set_format()
1079 if (self->video_info.fps_d == 0) { in gst_vtenc_update_latency()
1094 if (self->video_info.fps_d == 0 || self->video_info.fps_n == 0) { in gst_vtenc_update_latency()
1101 self->video_info.fps_d, self->video_info.fps_n); in gst_vtenc_update_latency()
1106 frames, self->video_info.fps_n, self->video_info.fps_d, in gst_vtenc_update_latency()
1152 switch (GST_VIDEO_INFO_FORMAT (&self->video_info)) { in gst_vtenc_encode_frame()
1163 if (!gst_video_frame_map (&inframe, &self->video_info, frame->input_buffer, in gst_vtenc_encode_frame()
1177 gst_core_video_buffer_new ((CVBufferRef) pbuf, &self->video_info, NULL); in gst_vtenc_encode_frame()
1178 if (!gst_video_frame_map (&outframe, &self->video_info, outbuf, in gst_vtenc_encode_frame()
1202 vframe = gst_vtenc_frame_new (frame->input_buffer, &self->video_info); in gst_vtenc_encode_frame()
[all …]
Dvtdec.h46 GstVideoInfo video_info; member
Dvtenc.h78 GstVideoInfo video_info; member
/third_party/gstreamer/gstplugins_base/tools/
Dgst-discoverer.c232 GstDiscovererVideoInfo *video_info; in gst_stream_video_information_to_string() local
243 video_info = (GstDiscovererVideoInfo *) info; in gst_stream_video_information_to_string()
245 gst_discoverer_video_info_get_width (video_info)); in gst_stream_video_information_to_string()
247 gst_discoverer_video_info_get_height (video_info)); in gst_stream_video_information_to_string()
249 gst_discoverer_video_info_get_depth (video_info)); in gst_stream_video_information_to_string()
252 gst_discoverer_video_info_get_framerate_num (video_info), in gst_stream_video_information_to_string()
253 gst_discoverer_video_info_get_framerate_denom (video_info)); in gst_stream_video_information_to_string()
256 gst_discoverer_video_info_get_par_num (video_info), in gst_stream_video_information_to_string()
257 gst_discoverer_video_info_get_par_denom (video_info)); in gst_stream_video_information_to_string()
260 gst_discoverer_video_info_is_interlaced (video_info) ? "true" : "false"); in gst_stream_video_information_to_string()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdkbufferpool.c104 GstVideoInfo video_info; in gst_msdk_buffer_pool_set_config() local
114 if (!gst_video_info_from_caps (&video_info, caps)) in gst_msdk_buffer_pool_set_config()
138 gst_msdk_set_video_alignment (&video_info, &alignment); in gst_msdk_buffer_pool_set_config()
139 gst_video_info_align (&video_info, &alignment); in gst_msdk_buffer_pool_set_config()
158 gst_msdk_dmabuf_allocator_new (priv->context, &video_info, in gst_msdk_buffer_pool_set_config()
162 gst_msdk_video_allocator_new (priv->context, &video_info, in gst_msdk_buffer_pool_set_config()
165 allocator = gst_msdk_system_allocator_new (&video_info); in gst_msdk_buffer_pool_set_config()
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/
Dgstccextractor.c148 memset (&filter->video_info, 0, sizeof (filter->video_info)); in gst_cc_extractor_reset()
213 if (!gst_video_info_from_caps (&filter->video_info, caps)) { in gst_cc_extractor_sink_event()
272 const GstVideoInfo * video_info) in create_caps_from_caption_type() argument
277 video_info->fps_n, video_info->fps_d, NULL); in create_caps_from_caption_type()
291 &filter->video_info); in forward_sticky_events()
353 create_caps_from_caption_type (meta->caption_type, &filter->video_info); in gst_cc_extractor_handle_meta()
Dgstccextractor.h50 GstVideoInfo video_info; member
/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/
Dgstdshow.cpp92 VIDEOINFOHEADER *video_info = NULL; in gst_dshow_new_pin_mediatype_from_enum_mediatypes() local
100 video_info = (VIDEOINFOHEADER *) pin_mediatype->mediatype->pbFormat; in gst_dshow_new_pin_mediatype_from_enum_mediatypes()
102 pin_mediatype->defaultWidth = video_info->bmiHeader.biWidth; in gst_dshow_new_pin_mediatype_from_enum_mediatypes()
103 pin_mediatype->defaultHeight = video_info->bmiHeader.biHeight; in gst_dshow_new_pin_mediatype_from_enum_mediatypes()
104 pin_mediatype->defaultFPS = (gint) (10000000 / video_info->AvgTimePerFrame); in gst_dshow_new_pin_mediatype_from_enum_mediatypes()
115 VIDEOINFOHEADER *video_info = NULL; in gst_dshow_new_pin_mediatype_from_streamcaps() local
124 video_info = (VIDEOINFOHEADER *) pin_mediatype->mediatype->pbFormat; in gst_dshow_new_pin_mediatype_from_streamcaps()
126 pin_mediatype->defaultWidth = video_info->bmiHeader.biWidth; in gst_dshow_new_pin_mediatype_from_streamcaps()
127 pin_mediatype->defaultHeight = video_info->bmiHeader.biHeight; in gst_dshow_new_pin_mediatype_from_streamcaps()
128 pin_mediatype->defaultFPS = (gint) (10000000 / video_info->AvgTimePerFrame); in gst_dshow_new_pin_mediatype_from_streamcaps()
Dgstdshowvideosrc.cpp679 VIDEOINFOHEADER *video_info = NULL; in gst_dshowvideosrc_set_caps() local
701 video_info = (VIDEOINFOHEADER *) pin_mediatype->mediatype->pbFormat; in gst_dshowvideosrc_set_caps()
702 video_info->bmiHeader.biWidth = width; in gst_dshowvideosrc_set_caps()
703 video_info->bmiHeader.biHeight = height; in gst_dshowvideosrc_set_caps()
704 video_info->AvgTimePerFrame = in gst_dshowvideosrc_set_caps()
706 video_info->bmiHeader.biSizeImage = DIBSIZE (video_info->bmiHeader); in gst_dshowvideosrc_set_caps()
707 pin_mediatype->mediatype->lSampleSize = DIBSIZE (video_info->bmiHeader); in gst_dshowvideosrc_set_caps()
/third_party/gstreamer/gstplugins_bad/gst/inter/
Dgstintervideosink.c201 memset (&intervideosink->surface->video_info, 0, sizeof (GstVideoInfo)); in gst_inter_video_sink_start()
217 memset (&intervideosink->surface->video_info, 0, sizeof (GstVideoInfo)); in gst_inter_video_sink_stop()
238 intervideosink->surface->video_info = info; in gst_inter_video_sink_set_caps()
Dgstintersurface.h39 GstVideoInfo video_info; member
Dgstintervideosrc.c207 if (intervideosrc->surface->video_info.finfo) { in gst_inter_video_src_get_caps()
208 caps = gst_video_info_to_caps (&intervideosrc->surface->video_info); in gst_inter_video_src_get_caps()
342 if (intervideosrc->surface->video_info.finfo) { in gst_inter_video_src_create()
343 GstVideoInfo tmp_info = intervideosrc->surface->video_info; in gst_inter_video_src_create()
/third_party/gstreamer/gstplugins_bad/gst/yadif/
Dgstyadif.c262 gst_video_info_from_caps (&yadif->video_info, incaps); in gst_yadif_set_caps()
307 if (!gst_video_frame_map (&yadif->dest_frame, &yadif->video_info, outbuf, in gst_yadif_transform()
311 if (!gst_video_frame_map (&yadif->cur_frame, &yadif->video_info, inbuf, in gst_yadif_transform()
Dgstyadif.h50 GstVideoInfo video_info; member
Dvf_yadif.c129 const GstVideoInfo *vi = &yadif->video_info; in yadif_filter()
/third_party/uboot/u-boot-2020.01/arch/arm/mach-exynos/include/mach/
Ddp_info.h66 struct edp_video_info video_info; member
/third_party/gstreamer/gstplugins_base/gst/rawparse/
Dgstrawvideoparse.c900 GstVideoInfo *video_info = &(config_ptr->info); in gst_raw_video_parse_process() local
910 GST_VIDEO_INFO_SIZE (video_info), &alloc_params); in gst_raw_video_parse_process()
912 GST_VIDEO_INFO_SIZE (video_info)); in gst_raw_video_parse_process()
918 GST_VIDEO_INFO_SIZE (video_info)); in gst_raw_video_parse_process()
936 GST_VIDEO_INFO_N_PLANES (video_info), in gst_raw_video_parse_process()
/third_party/gstreamer/gstplugins_bad/sys/dshowdecwrapper/
Dgstdshowvideodec.cpp610 GstVideoInfo video_info; in gst_dshowvideodec_sink_setcaps() local
996 VIDEOINFOHEADER *video_info; in gst_dshowvideodec_src_getcaps() local
1003 video_info = (VIDEOINFOHEADER *) mediatype->pbFormat; in gst_dshowvideodec_src_getcaps()
1009 "width", G_TYPE_INT, video_info->bmiHeader.biWidth, in gst_dshowvideodec_src_getcaps()
1010 "height", G_TYPE_INT, video_info->bmiHeader.biHeight, in gst_dshowvideodec_src_getcaps()
1012 (int) (10000000 / video_info->AvgTimePerFrame), 1, "endianness", in gst_dshowvideodec_src_getcaps()
/third_party/gstreamer/gstplugins_bad/tests/check/libs/
Dplayer.c628 GstPlayerVideoInfo *video_info = (GstPlayerVideoInfo *) stream; in test_video_info() local
636 fail_unless_equals_int (gst_player_video_info_get_width (video_info), 320); in test_video_info()
637 fail_unless_equals_int (gst_player_video_info_get_height (video_info), 240); in test_video_info()
638 gst_player_video_info_get_framerate (video_info, &fps_n, &fps_d); in test_video_info()
641 gst_player_video_info_get_pixel_aspect_ratio (video_info, &par_n, &par_d); in test_video_info()

12