mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
4cd6e80599
commit
bbcfe40af4
3 changed files with 13 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
@ -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>
|
2006-01-17 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
* gst/gstregistry.c (_gst_registry_remove_cache_plugins): Lock the
|
* gst/gstregistry.c (_gst_registry_remove_cache_plugins): Lock the
|
||||||
|
|
|
@ -675,7 +675,7 @@ gst_index_add_entry (GstIndex * index, GstIndexEntry * entry)
|
||||||
*/
|
*/
|
||||||
GstIndexEntry *
|
GstIndexEntry *
|
||||||
gst_index_add_associationv (GstIndex * index, gint id, GstAssocFlags flags,
|
gst_index_add_associationv (GstIndex * index, gint id, GstAssocFlags flags,
|
||||||
int n, const GstIndexAssociation * list)
|
gint n, const GstIndexAssociation * list)
|
||||||
{
|
{
|
||||||
GstIndexEntry *entry;
|
GstIndexEntry *entry;
|
||||||
|
|
||||||
|
|
|
@ -390,6 +390,8 @@ void gst_index_set_resolver (GstIndex *index,
|
||||||
gboolean gst_index_get_writer_id (GstIndex *index, GstObject *writer, gint *id);
|
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_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,
|
GstIndexEntry* gst_index_add_association (GstIndex *index, gint id, GstAssocFlags flags,
|
||||||
GstFormat format, gint64 value, ...);
|
GstFormat format, gint64 value, ...);
|
||||||
GstIndexEntry* gst_index_add_object (GstIndex *index, gint id, gchar *key,
|
GstIndexEntry* gst_index_add_object (GstIndex *index, gint id, gchar *key,
|
||||||
|
|
Loading…
Reference in a new issue