summaryrefslogtreecommitdiff
path: root/src/tracker-extract/tracker-media-art-dummy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tracker-extract/tracker-media-art-dummy.c')
-rw-r--r--src/tracker-extract/tracker-media-art-dummy.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/tracker-extract/tracker-media-art-dummy.c b/src/tracker-extract/tracker-media-art-dummy.c
new file mode 100644
index 000000000..64462b7d1
--- /dev/null
+++ b/src/tracker-extract/tracker-media-art-dummy.c
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2008, Nokia <ivan.frade@nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ * Authors:
+ * Philip Van Hoof <philip@codeminded.be>
+ */
+
+#include "tracker-media-art-generic.h"
+
+void
+tracker_media_art_plugin_init (void)
+{
+}
+
+void
+tracker_media_art_plugin_shutdown (void)
+{
+}
+
+gboolean
+tracker_media_art_file_to_jpeg (const gchar *filename,
+ const gchar *target)
+{
+ return FALSE;
+}
+
+gboolean
+tracker_media_art_buffer_to_jpeg (const unsigned char *buffer,
+ size_t len,
+ const gchar *buffer_mime,
+ const gchar *target)
+{
+ return FALSE;
+}