diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2008-02-20 12:26:19 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2008-02-20 12:26:19 +0000 |
commit | 5a0b5789a3284a6ca1e0780e5db48f806e3f9c2c (patch) | |
tree | 827d7d0422f30ba2622c2dd9659cebb8fd12c125 /plugins/indexers | |
parent | 6c2f01c3a3b7675d8539c3d0b0ae651d1fb19d93 (diff) |
plugins/elements/: Remove GstBufferStore, no idea why we were still building it.
Original commit message from CVS:
* plugins/elements/Makefile.am:
* plugins/elements/gstbufferstore.c:
* plugins/elements/gstbufferstore.h:
* plugins/elements/gsttypefindelement.h:
Remove GstBufferStore, no idea why we were still building it.
It's not used anywhere and superseded by GstAdapter.
* plugins/elements/gstfilesrc.c: (gst_file_src_map_region),
(gst_file_src_create_mmap):
* plugins/indexers/gstfileindex.c: (gst_file_index_add_association):
Printf format fixes for 64-bit integers.
Diffstat (limited to 'plugins/indexers')
-rw-r--r-- | plugins/indexers/gstfileindex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/indexers/gstfileindex.c b/plugins/indexers/gstfileindex.c index 4d5bbe766..5c59c2be1 100644 --- a/plugins/indexers/gstfileindex.c +++ b/plugins/indexers/gstfileindex.c @@ -801,7 +801,7 @@ gst_file_index_add_association (GstIndex * index, GstIndexEntry * entry) if (exact) { /* maybe overwrite instead? */ GST_DEBUG_OBJECT (index, - "Ignoring duplicate index association at %lld", + "Ignoring duplicate index association at %" G_GINT64_FORMAT, GST_INDEX_ASSOC_VALUE (entry, 0)); return; } @@ -844,7 +844,7 @@ show_entry (GstIndexEntry *entry) g_print ("%d: %08x ", entry->id, GST_INDEX_ASSOC_FLAGS (entry)); for (i = 0; i < GST_INDEX_NASSOCS (entry); i++) { - g_print ("%d %lld ", GST_INDEX_ASSOC_FORMAT (entry, i), + g_print ("%d %" G_GINT64_FORMAT, GST_INDEX_ASSOC_FORMAT (entry, i), GST_INDEX_ASSOC_VALUE (entry, i)); } g_print ("\n"); |