]> git.sesse.net Git - vlc/commitdiff
Libvlc add a media descriptor object.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 17 Jun 2007 16:24:49 +0000 (16:24 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 17 Jun 2007 16:24:49 +0000 (16:24 +0000)
include/vlc/libvlc.h
include/vlc/libvlc_structures.h
src/Makefile.am
src/control/media_descriptor.c [new file with mode: 0644]

index c4e32e3756b6c755221963a7c0a6e336ca9eec4e..71d95fe57b1d6e5062e7f50fe399632175bc0038 100644 (file)
@@ -121,6 +121,45 @@ VLC_PUBLIC_API void libvlc_destroy( libvlc_instance_t *, libvlc_exception_t * );
 
 /** @}*/
 
+
+/*****************************************************************************
+ * Media descriptor
+ *****************************************************************************/
+/** defgroup libvlc_media_descriptor Media Descriptor
+ * \ingroup libvlc
+ * LibVLC Media Descriptor
+ * @{
+ */
+/**
+ * Create a media descriptor with the given mrl.
+ * \param p_instance the instance
+ * \param psz_mrl the mrl to read
+ */
+VLC_PUBLIC_API libvlc_media_descriptor_t * libvlc_media_descriptor_new(
+                                   libvlc_instance_t *p_instance,
+                                   const char * psz_mrl,
+                                   libvlc_exception_t *p_e );
+
+/**
+ * Destroy a media descriptor object.
+ * \param p_meta_desc the md to destroy
+ */
+VLC_PUBLIC_API void libvlc_media_descriptor_destroy(
+                                   libvlc_media_descriptor_t *p_meta_desc );
+
+/**
+ * Read the meta of the media descriptor.
+ * \param p_meta_desc the media descriptor to read
+ * \param p_meta_desc the meta to read
+ */
+VLC_PUBLIC_API char * libvlc_media_descriptor_get_meta(
+                                   libvlc_media_descriptor_t *p_meta_desc,
+                                   libvlc_meta_t e_meta,
+                                   libvlc_exception_t *p_e );
+
+/** @}*/
+
 /*****************************************************************************
  * Playlist
  *****************************************************************************/
index b5f27f390d971dcca9eb35a800721bf347049b4a..7bc53a65f497e2228608e8e6d0a5abfd5653feb3 100644 (file)
@@ -52,6 +52,39 @@ typedef struct
 
 /**@} */
 
+/*****************************************************************************
+ * Media Descriptor
+ *****************************************************************************/
+/** defgroup libvlc_media_descriptor MediaDescriptor
+ * \ingroup libvlc
+ * LibVLC Media Descriptor handling
+ * @{
+ */
+
+/* Meta Handling */
+/** defgroup libvlc_meta Meta
+ * \ingroup libvlc_media_descriptor
+ * LibVLC Media Meta
+ * @{
+ */
+
+typedef enum {
+    libvlc_meta_Title,
+    libvlc_meta_Artist
+} libvlc_meta_t;
+
+/**@} */
+
+
+typedef struct {
+    bool                b_preparsed;
+    input_item_t      * p_input_item;
+    libvlc_instance_t * p_libvlc_instance;
+} libvlc_media_descriptor_t;
+
+/**@} */
+
+
 /*****************************************************************************
  * Playlist
  *****************************************************************************/
index bbabd316ac30522c3d329c5a27327844f6bab8e0..bab9de72c1c5d7a8b752339c8712ab8af6f7248d 100644 (file)
@@ -323,6 +323,7 @@ SOURCES_libvlc_control = \
        control/video.c \
        control/audio.c \
        control/event.c \
+       control/media_descriptor.c \
        control/mediacontrol_internal.h \
        control/mediacontrol_core.c \
        control/mediacontrol_util.c \
diff --git a/src/control/media_descriptor.c b/src/control/media_descriptor.c
new file mode 100644 (file)
index 0000000..025fa9d
--- /dev/null
@@ -0,0 +1,105 @@
+/*****************************************************************************
+ * media_descriptor.c: Libvlc API media descriport management
+ *****************************************************************************
+ * Copyright (C) 2007 the VideoLAN team
+ * $Id$
+ *
+ * Authors: Pierre d'Herbemont <pdherbemont@videolan.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#include <vlc/libvlc.h>
+#include <vlc_input.h>
+#include <vlc_meta.h>
+
+#include "libvlc_internal.h"
+
+
+/**************************************************************************
+ * Create a new media descriptor object (Private)
+ **************************************************************************/
+static void preparse_if_needed( libvlc_media_descriptor_t *p_media_desc )
+{
+    /* XXX: need some locking here */
+    if (!p_media_desc->b_preparsed)
+    {
+        input_Preparse( p_media_desc->p_libvlc_instance->p_libvlc_int,
+                        p_media_desc->p_input_item );
+        p_media_desc->b_preparsed = TRUE;
+    }
+}
+
+/**************************************************************************
+ * Create a new media descriptor object
+ **************************************************************************/
+libvlc_media_descriptor_t * libvlc_media_descriptor_new(
+                                   libvlc_instance_t *p_instance,
+                                   const char * psz_mrl,
+                                   libvlc_exception_t *p_e )
+{
+    input_item_t * p_input_item;
+    libvlc_media_descriptor_t * p_media_desc;
+
+    p_input_item = input_ItemNew( p_instance->p_libvlc_int, psz_mrl, psz_mrl );
+
+    if (!p_input_item)
+        return NULL; /* XXX: throw an exception */
+
+    p_media_desc = malloc( sizeof(libvlc_input_t) );
+    p_media_desc->p_libvlc_instance = p_instance;
+    p_media_desc->p_input_item      = p_input_item;
+    p_media_desc->b_preparsed       = FALSE;
+
+    return p_media_desc;
+}
+
+/**************************************************************************
+ * Delete a media descriptor object
+ **************************************************************************/
+void libvlc_media_descriptor_destroy( libvlc_media_descriptor_t *p_meta_desc )
+{
+    if (!p_meta_desc)
+        return;
+
+    /* XXX: locking */
+    input_ItemClean( p_meta_desc->p_input_item );
+
+    free( p_meta_desc );
+}
+
+/**************************************************************************
+ * Getters for meta information
+ **************************************************************************/
+static const int meta_conversion[] =
+{
+    [libvlc_meta_Title]  = 0, /* Offset in the vlc_meta_t structure */
+    [libvlc_meta_Artist] = 1
+};
+
+char * libvlc_media_descriptor_get_meta( libvlc_media_descriptor_t *p_meta_desc,
+                                         libvlc_meta_t e_meta,
+                                         libvlc_exception_t *p_e )
+{
+    char ** ppsz_meta;
+
+    /* XXX: locking */
+
+    preparse_if_needed( p_meta_desc );
+
+    ppsz_meta = (char**)p_meta_desc->p_input_item->p_meta;
+
+    return strdup( ppsz_meta[ meta_conversion[e_meta] ] );
+}