diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2007-12-03 16:14:01 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2007-12-03 16:14:01 +0000 |
commit | e415aeeb4f0e0bf7a622328ee9a2b36804c50d29 (patch) | |
tree | ba99c1acb3c9a743c407eee7fce8a7855a703cb4 /ext/metadata/metadataexif.c | |
parent | 79b7ae29aa2bdc345496c975b56203fab7af5a00 (diff) | |
download | gst-plugins-bad-e415aeeb4f0e0bf7a622328ee9a2b36804c50d29.tar.gz gst-plugins-bad-e415aeeb4f0e0bf7a622328ee9a2b36804c50d29.tar.bz2 gst-plugins-bad-e415aeeb4f0e0bf7a622328ee9a2b36804c50d29.zip |
Muxer writes (in jpeg only) whole IPTC chunk sent as tag. Muxer implemets GstTagSetter interface.
Original commit message from CVS:
Muxer writes (in jpeg only) whole IPTC chunk sent as tag. Muxer implemets GstTagSetter interface.
Diffstat (limited to 'ext/metadata/metadataexif.c')
-rw-r--r-- | ext/metadata/metadataexif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/metadata/metadataexif.c b/ext/metadata/metadataexif.c index 135bedd2..4bc8d4bf 100644 --- a/ext/metadata/metadataexif.c +++ b/ext/metadata/metadataexif.c @@ -65,7 +65,7 @@ metadataparse_exif_tag_list_add (GstTagList * taglist, GstTagMergeMode mode, void metadatamux_exif_create_chunk_from_tag_list (guint8 ** buf, guint32 * size, - GstTagList * taglist) + const GstTagList * taglist) { /* do nothing */ } @@ -203,7 +203,7 @@ exif_content_foreach_entry_func (ExifEntry * entry, void *user_data) void metadatamux_exif_create_chunk_from_tag_list (guint8 ** buf, guint32 * size, - GstTagList * taglist) + const GstTagList * taglist) { ExifData *ed = NULL; GstBuffer *exif_chunk = NULL; |