/third_party/gstreamer/gstreamer/gst/ |
D | gstsample.h | 38 #define GST_SAMPLE_CAST(obj) ((GstSample *)obj) 48 typedef struct _GstSample GstSample; typedef 56 GstSample * gst_sample_new (GstBuffer *buffer, 61 GstBuffer * gst_sample_get_buffer (GstSample *sample); 64 GstCaps * gst_sample_get_caps (GstSample *sample); 67 GstSegment * gst_sample_get_segment (GstSample *sample); 70 const GstStructure * gst_sample_get_info (GstSample *sample); 73 GstBufferList * gst_sample_get_buffer_list (GstSample *sample); 76 void gst_sample_set_buffer_list (GstSample *sample, GstBufferList *buffer_list); 79 void gst_sample_set_buffer (GstSample *sample, GstBuffer *buffer); [all …]
|
D | gstsample.c | 52 GST_DEFINE_MINI_OBJECT_TYPE (GstSample, gst_sample); 62 static GstSample * 63 _gst_sample_copy (GstSample * sample) in _gst_sample_copy() 65 GstSample *copy; in _gst_sample_copy() 80 _gst_sample_free (GstSample * sample) in _gst_sample_free() 106 memset (sample, 0xff, sizeof (GstSample)); in _gst_sample_free() 109 g_slice_free1 (sizeof (GstSample), sample); in _gst_sample_free() 126 GstSample * 130 GstSample *sample; in gst_sample_new() 132 sample = g_slice_new0 (GstSample); in gst_sample_new() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/app/ |
D | gstappsink.h | 106 GstSample * (*pull_preroll) (GstAppSink *appsink); 107 GstSample * (*pull_sample) (GstAppSink *appsink); 108 GstSample * (*try_pull_preroll) (GstAppSink *appsink, GstClockTime timeout); 109 GstSample * (*try_pull_sample) (GstAppSink *appsink, GstClockTime timeout); 166 GstSample * gst_app_sink_pull_preroll (GstAppSink *appsink); 169 GstSample * gst_app_sink_pull_sample (GstAppSink *appsink); 175 GstSample * gst_app_sink_try_pull_preroll (GstAppSink *appsink, GstClockTime timeout); 178 GstSample * gst_app_sink_try_pull_sample (GstAppSink *appsink, GstClockTime timeout);
|
D | gstappsrc.h | 131 GstFlowReturn (*push_sample) (GstAppSrc *appsrc, GstSample *sample); 220 GstFlowReturn gst_app_src_push_sample (GstAppSrc *appsrc, GstSample *sample);
|
D | gstappsink.c | 138 GstSample *sample; 1630 GstSample * 1655 GstSample * 1726 GstSample * 1730 GstSample *sample = NULL; in gst_app_sink_try_pull_preroll() 1822 GstSample *
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | video.h | 154 typedef void (*GstVideoConvertSampleCallback) (GstSample * sample, GError *error, gpointer user_dat… 157 void gst_video_convert_sample_async (GstSample * sample, 165 GstSample * gst_video_convert_sample (GstSample * sample,
|
D | convertframe.c | 300 GstSample * 301 gst_video_convert_sample (GstSample * sample, const GstCaps * to_caps, in gst_video_convert_sample() 306 GstSample *result = NULL; in gst_video_convert_sample() 430 GstSample *sample; 435 GstSample *converted_sample; 473 GstSample *sample; in convert_frame_dispatch_callback() 500 GstSample * sample, GError * error) in convert_frame_finish() 634 GstSample *sample = NULL; in convert_frame_new_preroll_callback() 683 gst_video_convert_sample_async (GstSample * sample, in gst_video_convert_sample_async()
|
/third_party/gstreamer/gstplugins_good/tests/check/pipelines/ |
D | flacdec.c | 25 _get_first_sample (GstSample * sample) in _get_first_sample() 68 GstSample *sample = NULL; in GST_START_TEST() 119 GstSample *sample = NULL; in GST_START_TEST() 179 GstSample *sample = NULL; in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | appsink.c | 232 GstSample *sample; in callback_function_sample_fallback() 269 GstSample *sample; in callback_function_sample() 417 GstSample *pulled_preroll; in GST_START_TEST() 418 GstSample *pulled_sample; in GST_START_TEST() 451 GstSample *s; in GST_START_TEST() 513 GstSample *pulled_preroll = NULL; in GST_START_TEST() 538 GstSample *pulled_sample = NULL; in GST_START_TEST() 572 GstSample *pulled_preroll = NULL; in my_app_thread() 573 GstSample *pulled_sample = NULL; in my_app_thread() 673 GstSample *s1, *s2, *s3; in GST_START_TEST() [all …]
|
/third_party/gstreamer/gstplugins_base/gst/playback/ |
D | gstplaysink.h | 99 GstSample * gst_play_sink_get_last_sample (GstPlaySink * playsink); 100 GstSample * gst_play_sink_convert_sample (GstPlaySink * playsink, GstCaps * caps);
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | cccombiner.c | 79 GstSample *video_sample = in samples_selected_cb() 81 GstSample *captions_sample = in samples_selected_cb()
|
D | pnm.c | 33 GstSample *sample; in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_base/tests/check/pipelines/ |
D | tcp.c | 112 GstSample *out; in symmetry_test_assert_passthrough() 258 GstSample *sample = NULL; in GST_START_TEST() 327 GstSample *out; in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_base/gst/overlaycomposition/ |
D | gstoverlaycomposition.h | 38 GstSample *sample;
|
/third_party/gstreamer/gstreamer/libs/gst/base/ |
D | gstaggregator.h | 353 GstSample * (*peek_next_sample) (GstAggregator *aggregator, 420 GstSample * gst_aggregator_peek_next_sample (GstAggregator *self,
|
/third_party/gstreamer/gstplugins_base/tests/icles/ |
D | benchmark-appsink.c | 32 GstSample *sample; in main()
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | splitmuxsrc.c | 153 GstSample *sample; in receive_sample() 336 guint fragment_id, GstSample * first_sample) in check_format_location() 369 GstSample *sample; in new_sample_verify_continuous_timestamps() 393 GstSample *sample; in new_sample_verify_1sec_offset()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/basecamerabinsrc/ |
D | gstcamerabinpreview.h | 61 gboolean gst_camerabin_preview_pipeline_post (GstCameraBinPreviewPipelineData * preview, GstSample …
|
D | gstcamerabinpreview.c | 89 GstSample *sample; in gst_camerabin_preview_pipeline_new_sample() 264 GstSample * sample) in gst_camerabin_preview_pipeline_post()
|
/third_party/gstreamer/gstreamer/tests/check/libs/ |
D | basesink.c | 33 GstSample *last_sample; in GST_START_TEST() 84 GstSample *last_sample; in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/qt/qglwidgetvideooverlay/ |
D | pipeline.h | 62 … static gboolean drawCallback (GstElement *sink, void *context, GstSample * sample, gpointer data);
|
/third_party/gstreamer/gstplugins_base/tests/examples/gl/qt/mousevideooverlay/ |
D | pipeline.h | 65 static gboolean drawCallback (void * sink, void *context, GstSample * sample, gpointer data);
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/play/ |
D | gstplay-media-info-private.h | 102 GstSample *image_sample;
|
/third_party/gstreamer/gstplugins_good/ext/taglib/ |
D | gstid3v2mux.cc | 380 GstSample *sample; in add_id3v2frame_tag() 383 sample = (GstSample *) g_value_get_boxed (val); in add_id3v2frame_tag() 424 GstSample *sample; in add_image_tag() 430 sample = (GstSample *) g_value_get_boxed (val); in add_image_tag()
|
/third_party/gstreamer/gstplugins_base/tests/examples/app/ |
D | appsrc_ex.c | 95 GstSample *sample; in main()
|