GStreamer Base Plugins 1.0 Library Reference Manual | ||||
---|---|---|---|---|
Top | Description |
void gst_tag_xmp_writer_add_all_schemas (GstTagXmpWriter *config
); void gst_tag_xmp_writer_add_schema (GstTagXmpWriter *config
,const gchar *schema
); gboolean gst_tag_xmp_writer_has_schema (GstTagXmpWriter *config
,const gchar *schema
); void gst_tag_xmp_writer_remove_schema (GstTagXmpWriter *config
,const gchar *schema
); void gst_tag_xmp_writer_remove_all_schemas (GstTagXmpWriter *config
); GstBuffer * gst_tag_xmp_writer_tag_list_to_xmp_buffer (GstTagXmpWriter *config
,const GstTagList *taglist
,gboolean read_only
);
This interface is implemented by elements that are able to do XMP serialization. Examples for such elements are jifmux and qtmux.
Applications can use this interface to configure which XMP schemas should be used when serializing
tags into XMP. Schemas are represented by their names, a full list of the supported schemas can be
obtained from gst_tag_xmp_list_schemas()
. By default, all schemas are used.
void gst_tag_xmp_writer_add_all_schemas (GstTagXmpWriter *config
);
Adds all available XMP schemas to the configuration. Meaning that all will be used.
|
a GstTagXmpWriter |
void gst_tag_xmp_writer_add_schema (GstTagXmpWriter *config
,const gchar *schema
);
Adds schema
to the list schemas
|
a GstTagXmpWriter |
|
the schema to be added |
gboolean gst_tag_xmp_writer_has_schema (GstTagXmpWriter *config
,const gchar *schema
);
Checks if schema
is going to be used
|
a GstTagXmpWriter |
|
the schema to test |
Returns : |
TRUE if it is going to be used |
void gst_tag_xmp_writer_remove_schema (GstTagXmpWriter *config
,const gchar *schema
);
Removes a schema from the list of schemas to use. Nothing is done if the schema wasn't in the list
|
a GstTagXmpWriter |
|
the schema to remove |
void gst_tag_xmp_writer_remove_all_schemas
(GstTagXmpWriter *config
);
Removes all schemas from the list of schemas to use. Meaning that no XMP will be generated.
|
a GstTagXmpWriter |
GstBuffer * gst_tag_xmp_writer_tag_list_to_xmp_buffer (GstTagXmpWriter *config
,const GstTagList *taglist
,gboolean read_only
);