Top |
#define | MATRIX_MESSAGE_TYPE_VIDEO |
MatrixMessageVideo * | matrix_message_video_new () |
const gchar * | matrix_message_video_get_url () |
void | matrix_message_video_set_url () |
MatrixVideoInfo * | matrix_message_video_get_info () |
void | matrix_message_video_set_info () |
#define MATRIX_MESSAGE_TYPE_VIDEO (matrix_message_video_get_type ())
The type for MatrixMessageVideo.
const gchar *
matrix_message_video_get_url (MatrixMessageVideo *self
);
Get and return the current value of the "url" property.
The URL to the video clip.
void matrix_message_video_set_url (MatrixMessageVideo *self
,const gchar *value
);
Set the value of the "url" property to value
.
The URL to the video clip.
MatrixVideoInfo *
matrix_message_video_get_info (MatrixMessageVideo *self
);
Get and return the current value of the "info" property.
Metadata about the video clip referred to in url
.
void matrix_message_video_set_info (MatrixMessageVideo *self
,MatrixVideoInfo *value
);
Set the value of the "info" property to value
.
Metadata about the video clip referred to in url
.
self |
the MatrixMessageVideo instance to modify |
|
value |
the new value of the "info" property |
struct MatrixMessageVideo { MatrixMessageBase parent_instance; MatrixMessageVideoPrivate * priv; };
This message represents a single video clip.
struct MatrixMessageVideoClass { MatrixMessageBaseClass parent_class; };
The class structure for MATRIX_MESSAGE_TYPE_VIDEO
. All the fields in this structure are private and should never be accessed directly.