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:
Edward Hervey 2007-10-13 16:31:35 +00:00
parent ef1189b506
commit 7eebff4489
2 changed files with 8 additions and 1 deletions

View file

@ -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:

View file

@ -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