gst/gstindex.h (gst_index_add_associationv): Add to header. The symbol was exported before, it appears this was just ...

Original commit message from CVS:
2006-01-18  Andy Wingo  <wingo@pobox.com>

* gst/gstindex.h (gst_index_add_associationv): Add to header. The
symbol was exported before, it appears this was just an oversight.
Fixes #168703.
Patch by: Torsten Schoenfeld <kaffeetisch at gmx.de>

* gst/gstindex.c (gst_index_add_associationv): Changed int in
prototype to gint. OK since this prototype was not in the header.
This commit is contained in:
Torsten Schoenfeld 2006-01-18 09:42:12 +00:00 committed by Andy Wingo
parent 4cd6e80599
commit bbcfe40af4
3 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,13 @@
2006-01-18 Andy Wingo <wingo@pobox.com>
* gst/gstindex.h (gst_index_add_associationv): Add to header. The
symbol was exported before, it appears this was just an oversight.
Fixes #168703.
Patch by: Torsten Schoenfeld <kaffeetisch at gmx.de>
* gst/gstindex.c (gst_index_add_associationv): Changed int in
prototype to gint. OK since this prototype was not in the header.
2006-01-17 Andy Wingo <wingo@pobox.com>
* gst/gstregistry.c (_gst_registry_remove_cache_plugins): Lock the

View file

@ -675,7 +675,7 @@ gst_index_add_entry (GstIndex * index, GstIndexEntry * entry)
*/
GstIndexEntry *
gst_index_add_associationv (GstIndex * index, gint id, GstAssocFlags flags,
int n, const GstIndexAssociation * list)
gint n, const GstIndexAssociation * list)
{
GstIndexEntry *entry;

View file

@ -390,6 +390,8 @@ void gst_index_set_resolver (GstIndex *index,
gboolean gst_index_get_writer_id (GstIndex *index, GstObject *writer, gint *id);
GstIndexEntry* gst_index_add_format (GstIndex *index, gint id, GstFormat format);
GstIndexEntry* gst_index_add_associationv (GstIndex * index, gint id, GstAssocFlags flags,
gint n, const GstIndexAssociation * list);
GstIndexEntry* gst_index_add_association (GstIndex *index, gint id, GstAssocFlags flags,
GstFormat format, gint64 value, ...);
GstIndexEntry* gst_index_add_object (GstIndex *index, gint id, gchar *key,