Home
last modified time | relevance | path

Searched refs:vpad (Results 1 – 13 of 13) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dgstvideoaggregator.c467 (GstVideoAggregatorPad * vpad) in gst_video_aggregator_convert_pad_update_conversion_info_internal() argument
469 GstVideoAggregatorConvertPad *pad = GST_VIDEO_AGGREGATOR_CONVERT_PAD (vpad); in gst_video_aggregator_convert_pad_update_conversion_info_internal()
477 gst_video_aggregator_convert_pad_prepare_frame (GstVideoAggregatorPad * vpad, in gst_video_aggregator_convert_pad_prepare_frame() argument
481 GstVideoAggregatorConvertPad *pad = GST_VIDEO_AGGREGATOR_CONVERT_PAD (vpad); in gst_video_aggregator_convert_pad_prepare_frame()
505 if (!gst_video_info_is_equal (&vpad->info, &pad->priv->conversion_info)) { in gst_video_aggregator_convert_pad_prepare_frame()
507 gst_video_converter_new_with_pool (&vpad->info, in gst_video_aggregator_convert_pad_prepare_frame()
518 gst_video_format_to_string (GST_VIDEO_INFO_FORMAT (&vpad->info)), in gst_video_aggregator_convert_pad_prepare_frame()
527 if (!gst_video_frame_map (&frame, &vpad->info, buffer, GST_MAP_READ)) { in gst_video_aggregator_convert_pad_prepare_frame()
565 gst_video_aggregator_convert_pad_clean_frame (GstVideoAggregatorPad * vpad, in gst_video_aggregator_convert_pad_clean_frame() argument
568 GstVideoAggregatorConvertPad *pad = GST_VIDEO_AGGREGATOR_CONVERT_PAD (vpad); in gst_video_aggregator_convert_pad_clean_frame()
[all …]
/third_party/ffmpeg/libavformat/
Damvenc.c66 AVPacket *vpad; /* Most recent video frame, for padding. */ member
198 amv->vpad = av_packet_alloc(); in amv_init()
199 if (!amv->vpad) { in amv_init()
203 amv->vpad->stream_index = AMV_STREAM_VIDEO; in amv_init()
204 amv->vpad->duration = 1; in amv_init()
213 av_packet_free(&amv->vpad); in amv_deinit()
337 return amv_write_packet_internal(s, amv->vpad); in amv_pad()
360 av_packet_unref(amv->vpad); in amv_write_packet()
361 if ((ret = av_packet_ref(amv->vpad, pkt)) < 0) in amv_write_packet()
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstglmixer.c40 static gboolean gst_gl_mixer_pad_prepare_frame (GstVideoAggregatorPad * vpad,
43 static void gst_gl_mixer_pad_clean_frame (GstVideoAggregatorPad * vpad,
103 gst_gl_mixer_pad_prepare_frame (GstVideoAggregatorPad * vpad, in gst_gl_mixer_pad_prepare_frame() argument
107 GstGLMixerPad *pad = GST_GL_MIXER_PAD (vpad); in gst_gl_mixer_pad_prepare_frame()
116 GST_VIDEO_INFO_WIDTH (&vpad->info), GST_VIDEO_INFO_HEIGHT (&vpad->info)); in gst_gl_mixer_pad_prepare_frame()
134 gst_gl_mixer_pad_clean_frame (GstVideoAggregatorPad * vpad, in gst_gl_mixer_pad_clean_frame() argument
137 GstGLMixerPad *pad = GST_GL_MIXER_PAD (vpad); in gst_gl_mixer_pad_clean_frame()
/third_party/ffmpeg/libavfilter/
Daf_anequalizer.c191 AVFilterPad pad, vpad; in init() local
204 vpad = (AVFilterPad){ in init()
209 ret = ff_insert_outpad(ctx, 1, &vpad); in init()
Dvf_dctdnoiz.c764 const int vpad = (inlink->h - s->pr_height); in filter_frame() local
776 if (vpad) { in filter_frame()
780 for (y = 0; y < vpad; y++) { in filter_frame()
Daf_afir.c837 AVFilterPad pad, vpad; in init() local
876 vpad = (AVFilterPad){ in init()
882 ret = ff_insert_outpad(ctx, 1, &vpad); in init()
Daf_aiir.c1465 AVFilterPad pad, vpad; in init() local
1492 vpad = (AVFilterPad){ in init()
1498 ret = ff_insert_outpad(ctx, 1, &vpad); in init()
/third_party/gstreamer/gstreamer/plugins/elements/
Dgsttee.c1207 gst_tee_push_eos (const GValue * vpad, GstTee * tee) in gst_tee_push_eos() argument
1209 GstPad *pad = g_value_get_object (vpad); in gst_tee_push_eos()
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11compositor.cpp2420 GstVideoAggregatorPad * vpad, DeviceCheckData * data) in gst_d3d11_compositor_check_device_update() argument
2428 buf = gst_video_aggregator_pad_get_current_buffer (vpad); in gst_d3d11_compositor_check_device_update()
/third_party/gstreamer/gstreamer/gst/
Dgstelement.c3166 activate_pads (const GValue * vpad, GValue * ret, gboolean * active) in activate_pads() argument
3168 GstPad *pad = g_value_get_object (vpad); in activate_pads()
Dgstbin.c2617 activate_pads (const GValue * vpad, GValue * ret, gboolean * active) in activate_pads() argument
2619 GstPad *pad = g_value_get_object (vpad); in activate_pads()
/third_party/ffmpeg/libavcodec/
Dmpegvideo_enc.c1270 int vpad = 16; in load_input_picture() local
1275 vpad = 32; in load_input_picture()
1291 if ((s->width & 15) || (s->height & (vpad-1))) { in load_input_picture()
1295 vpad >> v_shift, in load_input_picture()
/third_party/gstreamer/gstplugins_base/
DChangeLog10511 the converter, as the vpad info may have changed as well.