mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 09:38:17 +00:00
tag: Adds xmp functions mappings
Maps gst_tag_list_from_xmp_buffer and gst_tag_list_to_xmp_buffer https://bugzilla.gnome.org/show_bug.cgi?id=617068
This commit is contained in:
parent
8331db15ca
commit
697c8e73f7
2 changed files with 54 additions and 0 deletions
17
gst/tag.defs
17
gst/tag.defs
|
@ -253,3 +253,20 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-function tag_list_from_xmp_buffer
|
||||
(c-name "gst_tag_list_from_xmp_buffer")
|
||||
(return-type "GstTagList*")
|
||||
(parameters
|
||||
'("const-GstBuffer*" "buffer")
|
||||
)
|
||||
)
|
||||
|
||||
(define-function tag_list_to_xmp_buffer
|
||||
(c-name "gst_tag_list_to_xmp_buffer")
|
||||
(return-type "GstBuffer*")
|
||||
(parameters
|
||||
'("const-GstTagList*" "taglist")
|
||||
'("gboolean" "readonly")
|
||||
)
|
||||
)
|
||||
|
||||
|
|
37
testsuite/test_libtag.py
Normal file
37
testsuite/test_libtag.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
# -*- Mode: Python -*-
|
||||
# vi:si:et:sw=4:sts=4:ts=4
|
||||
#
|
||||
# gst-python - Python bindings for GStreamer
|
||||
# Copyright (C) 2010 Thiago Santos <thiago.sousa.santos@collabora.co.uk>
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2.1 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
from common import gst, TestCase
|
||||
from gst import tag
|
||||
|
||||
class TesLibTag(TestCase):
|
||||
def testXmp(self):
|
||||
taglist = gst.TagList()
|
||||
taglist['title'] = 'my funny title'
|
||||
taglist['geo-location-latitude'] = 23.25
|
||||
|
||||
xmp = tag.tag_list_to_xmp_buffer (taglist, True)
|
||||
self.assertNotEquals(xmp, None)
|
||||
taglist2 = tag.tag_list_from_xmp_buffer (xmp)
|
||||
|
||||
self.assertEquals(len(taglist2), 2)
|
||||
self.assertEquals(taglist2['title'], 'my funny title')
|
||||
self.assertEquals(taglist2['geo-location-latitude'], 23.25)
|
||||
|
Loading…
Reference in a new issue