From 7eebff44896c76e3fe188d2c2c625a0a19fbdbef Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sat, 13 Oct 2007 16:31:35 +0000 Subject: [PATCH] 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. --- ChangeLog | 5 +++++ gst/gstmodule.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e1db7537ba..c2f9bd70f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-10-11 Edward Hervey + + * gst/gstmodule.c: (init_gst): + Added new gst.TAG_COMPOSER constant that appeared in core 0.10.15. + 2007-10-09 Edward Hervey * gst/base.defs: diff --git a/gst/gstmodule.c b/gst/gstmodule.c index c0c969c95a..2c8fc28aec 100644 --- a/gst/gstmodule.c +++ b/gst/gstmodule.c @@ -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