From e720f95202410cf707ccd8bb3d40dd874e116ddf Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 4 Jan 2003 16:57:31 +0000 Subject: [PATCH] Make sure we call the app resolved before passing the final id/string to the index implemention. Original commit message from CVS: Make sure we call the app resolved before passing the final id/string to the index implemention. --- gst/gstindex.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/gstindex.c b/gst/gstindex.c index 04c09dbc7e..26c97676dd 100644 --- a/gst/gstindex.c +++ b/gst/gstindex.c @@ -420,14 +420,14 @@ gst_index_get_writer_id (GstIndex *index, GstObject *writer, gint *id) iclass = GST_INDEX_GET_CLASS (index); - if (iclass->resolve_writer) { - success = iclass->resolve_writer (index, writer, id, &writer_string); - } - if (index->resolver) { success = index->resolver (index, writer, id, &writer_string, index->resolver_user_data); } + if (iclass->resolve_writer) { + success = iclass->resolve_writer (index, writer, id, &writer_string); + } + return success; }