mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
gst/gstmodule.c: Added new gst.TAG_COMPOSER constant that appeared in core 0.10.15.
Original commit message from CVS: * gst/gstmodule.c: (init_gst): Added new gst.TAG_COMPOSER constant that appeared in core 0.10.15.
This commit is contained in:
parent
ef1189b506
commit
7eebff4489
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-10-11 Edward Hervey <bilboed@bilboed.com>
|
||||
|
||||
* gst/gstmodule.c: (init_gst):
|
||||
Added new gst.TAG_COMPOSER constant that appeared in core 0.10.15.
|
||||
|
||||
2007-10-09 Edward Hervey <bilboed@bilboed.com>
|
||||
|
||||
* gst/base.defs:
|
||||
|
|
|
@ -253,7 +253,9 @@ init_gst (void)
|
|||
PyModule_AddStringConstant (m, "TAG_EXTENDED_COMMENT", GST_TAG_EXTENDED_COMMENT);
|
||||
#if ((GST_VERSION_MICRO >= 14) || (GST_VERSION_MICRO == 13 && GST_VERSION_NANO > 0))
|
||||
PyModule_AddStringConstant (m, "TAG_LICENSE_URI", GST_TAG_LICENSE_URI);
|
||||
PyModule_AddStringConstant (m, "TAG_COPYRIGHT_URI", GST_TAG_COPYRIGHT_URI);
|
||||
#if ((GST_VERSION_MICRO >= 15) || (GST_VERSION_MICRO == 14 && GST_VERSION_NANO > 0))
|
||||
PyModule_AddStringConstant (m, "TAG_COMPOSER", GST_TAG_COMPOSER);
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue