renatofilho@787: #include "gstplay-marshal.h" renatofilho@787: renatofilho@787: #include renatofilho@787: renatofilho@787: renatofilho@787: #ifdef G_ENABLE_DEBUG renatofilho@787: #define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) renatofilho@787: #define g_marshal_value_peek_char(v) g_value_get_char (v) renatofilho@787: #define g_marshal_value_peek_uchar(v) g_value_get_uchar (v) renatofilho@787: #define g_marshal_value_peek_int(v) g_value_get_int (v) renatofilho@787: #define g_marshal_value_peek_uint(v) g_value_get_uint (v) renatofilho@787: #define g_marshal_value_peek_long(v) g_value_get_long (v) renatofilho@787: #define g_marshal_value_peek_ulong(v) g_value_get_ulong (v) renatofilho@787: #define g_marshal_value_peek_int64(v) g_value_get_int64 (v) renatofilho@787: #define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v) renatofilho@787: #define g_marshal_value_peek_enum(v) g_value_get_enum (v) renatofilho@787: #define g_marshal_value_peek_flags(v) g_value_get_flags (v) renatofilho@787: #define g_marshal_value_peek_float(v) g_value_get_float (v) renatofilho@787: #define g_marshal_value_peek_double(v) g_value_get_double (v) renatofilho@787: #define g_marshal_value_peek_string(v) (char*) g_value_get_string (v) renatofilho@787: #define g_marshal_value_peek_param(v) g_value_get_param (v) renatofilho@787: #define g_marshal_value_peek_boxed(v) g_value_get_boxed (v) renatofilho@787: #define g_marshal_value_peek_pointer(v) g_value_get_pointer (v) renatofilho@787: #define g_marshal_value_peek_object(v) g_value_get_object (v) renatofilho@787: #else /* !G_ENABLE_DEBUG */ renatofilho@787: /* WARNING: This code accesses GValues directly, which is UNSUPPORTED API. renatofilho@787: * Do not access GValues directly in your code. Instead, use the renatofilho@787: * g_value_get_*() functions renatofilho@787: */ renatofilho@787: #define g_marshal_value_peek_boolean(v) (v)->data[0].v_int renatofilho@787: #define g_marshal_value_peek_char(v) (v)->data[0].v_int renatofilho@787: #define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint renatofilho@787: #define g_marshal_value_peek_int(v) (v)->data[0].v_int renatofilho@787: #define g_marshal_value_peek_uint(v) (v)->data[0].v_uint renatofilho@787: #define g_marshal_value_peek_long(v) (v)->data[0].v_long renatofilho@787: #define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong renatofilho@787: #define g_marshal_value_peek_int64(v) (v)->data[0].v_int64 renatofilho@787: #define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64 renatofilho@787: #define g_marshal_value_peek_enum(v) (v)->data[0].v_long renatofilho@787: #define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong renatofilho@787: #define g_marshal_value_peek_float(v) (v)->data[0].v_float renatofilho@787: #define g_marshal_value_peek_double(v) (v)->data[0].v_double renatofilho@787: #define g_marshal_value_peek_string(v) (v)->data[0].v_pointer renatofilho@787: #define g_marshal_value_peek_param(v) (v)->data[0].v_pointer renatofilho@787: #define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer renatofilho@787: #define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer renatofilho@787: #define g_marshal_value_peek_object(v) (v)->data[0].v_pointer renatofilho@787: #endif /* !G_ENABLE_DEBUG */ renatofilho@787: renatofilho@787: renatofilho@787: /* BOOLEAN:OBJECT (gstplay-marshal.list:1) */ renatofilho@787: void renatofilho@787: gst_play_marshal_BOOLEAN__OBJECT (GClosure *closure, renatofilho@787: GValue *return_value, renatofilho@787: guint n_param_values, renatofilho@787: const GValue *param_values, renatofilho@787: gpointer invocation_hint, renatofilho@787: gpointer marshal_data) renatofilho@787: { renatofilho@787: typedef gboolean (*GMarshalFunc_BOOLEAN__OBJECT) (gpointer data1, renatofilho@787: gpointer arg_1, renatofilho@787: gpointer data2); renatofilho@787: register GMarshalFunc_BOOLEAN__OBJECT callback; renatofilho@787: register GCClosure *cc = (GCClosure*) closure; renatofilho@787: register gpointer data1, data2; renatofilho@787: gboolean v_return; renatofilho@787: renatofilho@787: g_return_if_fail (return_value != NULL); renatofilho@787: g_return_if_fail (n_param_values == 2); renatofilho@787: renatofilho@787: if (G_CCLOSURE_SWAP_DATA (closure)) renatofilho@787: { renatofilho@787: data1 = closure->data; renatofilho@787: data2 = g_value_peek_pointer (param_values + 0); renatofilho@787: } renatofilho@787: else renatofilho@787: { renatofilho@787: data1 = g_value_peek_pointer (param_values + 0); renatofilho@787: data2 = closure->data; renatofilho@787: } renatofilho@787: callback = (GMarshalFunc_BOOLEAN__OBJECT) (marshal_data ? marshal_data : cc->callback); renatofilho@787: renatofilho@787: v_return = callback (data1, renatofilho@787: g_marshal_value_peek_object (param_values + 1), renatofilho@787: data2); renatofilho@787: renatofilho@787: g_value_set_boolean (return_value, v_return); renatofilho@787: } renatofilho@787: renatofilho@787: /* VOID:OBJECT,BOOLEAN (gstplay-marshal.list:2) */ renatofilho@787: void renatofilho@787: gst_play_marshal_VOID__OBJECT_BOOLEAN (GClosure *closure, renatofilho@787: GValue *return_value, renatofilho@787: guint n_param_values, renatofilho@787: const GValue *param_values, renatofilho@787: gpointer invocation_hint, renatofilho@787: gpointer marshal_data) renatofilho@787: { renatofilho@787: typedef void (*GMarshalFunc_VOID__OBJECT_BOOLEAN) (gpointer data1, renatofilho@787: gpointer arg_1, renatofilho@787: gboolean arg_2, renatofilho@787: gpointer data2); renatofilho@787: register GMarshalFunc_VOID__OBJECT_BOOLEAN callback; renatofilho@787: register GCClosure *cc = (GCClosure*) closure; renatofilho@787: register gpointer data1, data2; renatofilho@787: renatofilho@787: g_return_if_fail (n_param_values == 3); renatofilho@787: renatofilho@787: if (G_CCLOSURE_SWAP_DATA (closure)) renatofilho@787: { renatofilho@787: data1 = closure->data; renatofilho@787: data2 = g_value_peek_pointer (param_values + 0); renatofilho@787: } renatofilho@787: else renatofilho@787: { renatofilho@787: data1 = g_value_peek_pointer (param_values + 0); renatofilho@787: data2 = closure->data; renatofilho@787: } renatofilho@787: callback = (GMarshalFunc_VOID__OBJECT_BOOLEAN) (marshal_data ? marshal_data : cc->callback); renatofilho@787: renatofilho@787: callback (data1, renatofilho@787: g_marshal_value_peek_object (param_values + 1), renatofilho@787: g_marshal_value_peek_boolean (param_values + 2), renatofilho@787: data2); renatofilho@787: } renatofilho@787: renatofilho@787: /* BOOLEAN:OBJECT,POINTER (gstplay-marshal.list:3) */ renatofilho@787: void renatofilho@787: gst_play_marshal_BOOLEAN__OBJECT_POINTER (GClosure *closure, renatofilho@787: GValue *return_value, renatofilho@787: guint n_param_values, renatofilho@787: const GValue *param_values, renatofilho@787: gpointer invocation_hint, renatofilho@787: gpointer marshal_data) renatofilho@787: { renatofilho@787: typedef gboolean (*GMarshalFunc_BOOLEAN__OBJECT_POINTER) (gpointer data1, renatofilho@787: gpointer arg_1, renatofilho@787: gpointer arg_2, renatofilho@787: gpointer data2); renatofilho@787: register GMarshalFunc_BOOLEAN__OBJECT_POINTER callback; renatofilho@787: register GCClosure *cc = (GCClosure*) closure; renatofilho@787: register gpointer data1, data2; renatofilho@787: gboolean v_return; renatofilho@787: renatofilho@787: g_return_if_fail (return_value != NULL); renatofilho@787: g_return_if_fail (n_param_values == 3); renatofilho@787: renatofilho@787: if (G_CCLOSURE_SWAP_DATA (closure)) renatofilho@787: { renatofilho@787: data1 = closure->data; renatofilho@787: data2 = g_value_peek_pointer (param_values + 0); renatofilho@787: } renatofilho@787: else renatofilho@787: { renatofilho@787: data1 = g_value_peek_pointer (param_values + 0); renatofilho@787: data2 = closure->data; renatofilho@787: } renatofilho@787: callback = (GMarshalFunc_BOOLEAN__OBJECT_POINTER) (marshal_data ? marshal_data : cc->callback); renatofilho@787: renatofilho@787: v_return = callback (data1, renatofilho@787: g_marshal_value_peek_object (param_values + 1), renatofilho@787: g_marshal_value_peek_pointer (param_values + 2), renatofilho@787: data2); renatofilho@787: renatofilho@787: g_value_set_boolean (return_value, v_return); renatofilho@787: } renatofilho@787: