Lines Matching refs:interface_as_function

45 #define GST_IMPLEMENT_V4L2_VIDORIENT_METHODS(Type, interface_as_function)                         \  argument
48interface_as_function ## _video_orientation_get_hflip (GstVideoOrientation *vo, gboolean *flip) …
55interface_as_function ## _video_orientation_get_vflip (GstVideoOrientation *vo, gboolean *flip) …
62interface_as_function ## _video_orientation_get_hcenter (GstVideoOrientation *vo, gint *center) …
69interface_as_function ## _video_orientation_get_vcenter (GstVideoOrientation *vo, gint *center) …
76interface_as_function ## _video_orientation_set_hflip (GstVideoOrientation *vo, gboolean flip) …
83interface_as_function ## _video_orientation_set_vflip (GstVideoOrientation *vo, gboolean flip) …
90interface_as_function ## _video_orientation_set_hcenter (GstVideoOrientation *vo, gint center) …
97interface_as_function ## _video_orientation_set_vcenter (GstVideoOrientation *vo, gint center) …
104interface_as_function ## _video_orientation_interface_init (GstVideoOrientationInterface * iface) …
107 iface->get_hflip = interface_as_function ## _video_orientation_get_hflip; \
108 iface->get_vflip = interface_as_function ## _video_orientation_get_vflip; \
109 iface->get_hcenter = interface_as_function ## _video_orientation_get_hcenter; \
110 iface->get_vcenter = interface_as_function ## _video_orientation_get_vcenter; \
111 iface->set_hflip = interface_as_function ## _video_orientation_set_hflip; \
112 iface->set_vflip = interface_as_function ## _video_orientation_set_vflip; \
113 iface->set_hcenter = interface_as_function ## _video_orientation_set_hcenter; \
114 iface->set_vcenter = interface_as_function ## _video_orientation_set_vcenter; \