diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2007-10-31 16:21:02 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2007-10-31 16:21:02 +0000 |
commit | 5888898c570f0f22c930d8c66fe0949d00a90b93 (patch) | |
tree | eb33f602f1c1a1ddda3274c89a819f6f44f3591e /ext/metadata/metadataparsexmp.c | |
parent | 7412141912cc527a231697e38793871b17e6425b (diff) | |
download | gst-plugins-bad-5888898c570f0f22c930d8c66fe0949d00a90b93.tar.gz gst-plugins-bad-5888898c570f0f22c930d8c66fe0949d00a90b93.tar.bz2 gst-plugins-bad-5888898c570f0f22c930d8c66fe0949d00a90b93.zip |
Now sending iptc tag in whole chunk. Ready to also send exif and xmp in the same way (look at bug #486659).
Original commit message from CVS:
Now sending iptc tag in whole chunk. Ready to also send exif and xmp in the same way (look at bug #486659).
Diffstat (limited to 'ext/metadata/metadataparsexmp.c')
-rw-r--r-- | ext/metadata/metadataparsexmp.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ext/metadata/metadataparsexmp.c b/ext/metadata/metadataparsexmp.c index 7aee17f2..5af6bd62 100644 --- a/ext/metadata/metadataparsexmp.c +++ b/ext/metadata/metadataparsexmp.c @@ -46,10 +46,16 @@ GST_DEBUG_CATEGORY (gst_metadata_parse_xmp_debug); #define GST_CAT_DEFAULT gst_metadata_parse_xmp_debug +void +metadataparse_xmp_tags_register (void) +{ +} + #ifndef HAVE_XMP void -metadataparse_xmp_dump (GstAdapter * adapter) +metadataparse_xmp_tag_list_add (GstTagList * taglist, GstTagMergeMode mode, + GstAdapter * adapter) { GST_LOG ("XMP not defined, here I should send just one tag as whole chunk"); @@ -59,7 +65,8 @@ metadataparse_xmp_dump (GstAdapter * adapter) #else /* ifndef HAVE_XMP */ void -metadataparse_xmp_dump (GstAdapter * adapter) +metadataparse_xmp_tag_list_add (GstTagList * taglist, GstTagMergeMode mode, + GstAdapter * adapter) { GST_LOG ("XMP still not implemented"); |