mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
capsfilter: sprinkle some GST_DEBUG_FUNCPTR
This commit is contained in:
parent
ac1e923617
commit
ff7d9470b7
1 changed files with 7 additions and 4 deletions
|
@ -113,10 +113,13 @@ gst_capsfilter_class_init (GstCapsFilterClass * klass)
|
|||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
trans_class = GST_BASE_TRANSFORM_CLASS (klass);
|
||||
trans_class->transform_caps = gst_capsfilter_transform_caps;
|
||||
trans_class->transform_ip = gst_capsfilter_transform_ip;
|
||||
trans_class->prepare_output_buffer = gst_capsfilter_prepare_buf;
|
||||
trans_class->transform_size = gst_capsfilter_transform_size;
|
||||
trans_class->transform_caps =
|
||||
GST_DEBUG_FUNCPTR (gst_capsfilter_transform_caps);
|
||||
trans_class->transform_ip = GST_DEBUG_FUNCPTR (gst_capsfilter_transform_ip);
|
||||
trans_class->prepare_output_buffer =
|
||||
GST_DEBUG_FUNCPTR (gst_capsfilter_prepare_buf);
|
||||
trans_class->transform_size =
|
||||
GST_DEBUG_FUNCPTR (gst_capsfilter_transform_size);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue