libvlc_media.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:10k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libvlc.h:  libvlc external API
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2009 the VideoLAN team
  5.  * $Id: e9156223f97c813be0a28879517e0fad856f5e97 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *          Jean-Paul Saman <jpsaman@videolan.org>
  9.  *          Pierre d'Herbemont <pdherbemont@videolan.org>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. /**
  26.  * file
  27.  * This file defines libvlc_media external API
  28.  */
  29. #ifndef VLC_LIBVLC_MEDIA_H
  30. #define VLC_LIBVLC_MEDIA_H 1
  31. /*****************************************************************************
  32.  * media
  33.  *****************************************************************************/
  34. /** defgroup libvlc_media libvlc_media
  35.  * ingroup libvlc
  36.  * LibVLC Media
  37.  * @{
  38.  */
  39. typedef struct libvlc_media_t libvlc_media_t;
  40. /* Meta Handling */
  41. /** defgroup libvlc_meta libvlc_meta
  42.  * ingroup libvlc_media
  43.  * LibVLC Media Meta
  44.  * @{
  45.  */
  46. typedef enum libvlc_meta_t {
  47.     libvlc_meta_Title,
  48.     libvlc_meta_Artist,
  49.     libvlc_meta_Genre,
  50.     libvlc_meta_Copyright,
  51.     libvlc_meta_Album,
  52.     libvlc_meta_TrackNumber,
  53.     libvlc_meta_Description,
  54.     libvlc_meta_Rating,
  55.     libvlc_meta_Date,
  56.     libvlc_meta_Setting,
  57.     libvlc_meta_URL,
  58.     libvlc_meta_Language,
  59.     libvlc_meta_NowPlaying,
  60.     libvlc_meta_Publisher,
  61.     libvlc_meta_EncodedBy,
  62.     libvlc_meta_ArtworkURL,
  63.     libvlc_meta_TrackID,
  64.     /* Add new meta types HERE */
  65. } libvlc_meta_t;
  66. /** @}*/
  67. /**
  68.  * Note the order of libvlc_state_t enum must match exactly the order of
  69.  * @see mediacontrol_PlayerStatus, @see input_state_e enums,
  70.  * and VideoLAN.LibVLC.State (at bindings/cil/src/media.cs).
  71.  *
  72.  * Expected states by web plugins are:
  73.  * IDLE/CLOSE=0, OPENING=1, BUFFERING=2, PLAYING=3, PAUSED=4,
  74.  * STOPPING=5, ENDED=6, ERROR=7
  75.  */
  76. typedef enum libvlc_state_t
  77. {
  78.     libvlc_NothingSpecial=0,
  79.     libvlc_Opening,
  80.     libvlc_Buffering,
  81.     libvlc_Playing,
  82.     libvlc_Paused,
  83.     libvlc_Stopped,
  84.     libvlc_Ended,
  85.     libvlc_Error
  86. } libvlc_state_t;
  87. /**
  88.  * Create a media with the given MRL.
  89.  *
  90.  * param p_instance the instance
  91.  * param psz_mrl the MRL to read
  92.  * param p_e an initialized exception pointer
  93.  * return the newly created media
  94.  */
  95. VLC_PUBLIC_API libvlc_media_t * libvlc_media_new(
  96.                                    libvlc_instance_t *p_instance,
  97.                                    const char * psz_mrl,
  98.                                    libvlc_exception_t *p_e );
  99. /**
  100.  * Create a media as an empty node with the passed name.
  101.  *
  102.  * param p_instance the instance
  103.  * param psz_name the name of the node
  104.  * param p_e an initialized exception pointer
  105.  * return the new empty media
  106.  */
  107. VLC_PUBLIC_API libvlc_media_t * libvlc_media_new_as_node(
  108.                                    libvlc_instance_t *p_instance,
  109.                                    const char * psz_name,
  110.                                    libvlc_exception_t *p_e );
  111. /**
  112.  * Add an option to the media.
  113.  *
  114.  * This option will be used to determine how the media_player will
  115.  * read the media. This allows to use VLC's advanced
  116.  * reading/streaming options on a per-media basis.
  117.  *
  118.  * The options are detailed in vlc --long-help, for instance "--sout-all"
  119.  *
  120.  * param p_instance the instance
  121.  * param ppsz_options the options (as a string)
  122.  * param p_e an initialized exception pointer
  123.  */
  124. VLC_PUBLIC_API void libvlc_media_add_option(
  125.                                    libvlc_media_t * p_md,
  126.                                    const char * ppsz_options,
  127.                                    libvlc_exception_t * p_e );
  128. /**
  129.  * Add an option to the media from an untrusted source.
  130.  *
  131.  * This option will be used to determine how the media_player will
  132.  * read the media. This allows to use VLC's advanced
  133.  * reading/streaming options on a per-media basis.
  134.  *
  135.  * The options are detailed in vlc --long-help, for instance "--sout-all"
  136.  *
  137.  * param p_instance the instance
  138.  * param ppsz_options the options (as a string)
  139.  * param p_e an initialized exception pointer
  140.  */
  141. VLC_PUBLIC_API void libvlc_media_add_option_untrusted(
  142.                                    libvlc_media_t * p_md,
  143.                                    const char * ppsz_options,
  144.                                    libvlc_exception_t * p_e );
  145. /**
  146.  * Retain a reference to a media descriptor object (libvlc_media_t). Use
  147.  * libvlc_media_release() to decrement the reference count of a
  148.  * media descriptor object.
  149.  *
  150.  * param p_meta_desc a media descriptor object.
  151.  */
  152. VLC_PUBLIC_API void libvlc_media_retain(
  153.                                    libvlc_media_t *p_meta_desc );
  154. /**
  155.  * Decrement the reference count of a media descriptor object. If the
  156.  * reference count is 0, then libvlc_media_release() will release the
  157.  * media descriptor object. It will send out an libvlc_MediaFreed event
  158.  * to all listeners. If the media descriptor object has been released it
  159.  * should not be used again.
  160.  *
  161.  * param p_meta_desc a media descriptor object.
  162.  */
  163. VLC_PUBLIC_API void libvlc_media_release(
  164.                                    libvlc_media_t *p_meta_desc );
  165. /**
  166.  * Get the media resource locator (mrl) from a media descriptor object
  167.  *
  168.  * param p_md a media descriptor object
  169.  * param p_e an initialized exception object
  170.  * return string with mrl of media descriptor object
  171.  */
  172. VLC_PUBLIC_API char * libvlc_media_get_mrl( libvlc_media_t * p_md,
  173.                                                        libvlc_exception_t * p_e );
  174. /**
  175.  * Duplicate a media descriptor object.
  176.  *
  177.  * param p_meta_desc a media descriptor object.
  178.  */
  179. VLC_PUBLIC_API libvlc_media_t * libvlc_media_duplicate( libvlc_media_t * );
  180. /**
  181.  * Read the meta of the media.
  182.  *
  183.  * param p_meta_desc the media to read
  184.  * param e_meta the meta to read
  185.  * param p_e an initialized exception pointer
  186.  * return the media's meta
  187.  */
  188. VLC_PUBLIC_API char * libvlc_media_get_meta(
  189.                                    libvlc_media_t *p_meta_desc,
  190.                                    libvlc_meta_t e_meta,
  191.                                    libvlc_exception_t *p_e );
  192. /**
  193.  * Get current state of media descriptor object. Possible media states
  194.  * are defined in libvlc_structures.c ( libvlc_NothingSpecial=0,
  195.  * libvlc_Opening, libvlc_Buffering, libvlc_Playing, libvlc_Paused,
  196.  * libvlc_Stopped, libvlc_Ended,
  197.  * libvlc_Error).
  198.  *
  199.  * @see libvlc_state_t
  200.  * param p_meta_desc a media descriptor object
  201.  * param p_e an initialized exception object
  202.  * return state of media descriptor object
  203.  */
  204. VLC_PUBLIC_API libvlc_state_t libvlc_media_get_state(
  205.                                    libvlc_media_t *p_meta_desc,
  206.                                    libvlc_exception_t *p_e );
  207. /**
  208.  * Get subitems of media descriptor object. This will increment
  209.  * the reference count of supplied media descriptor object. Use
  210.  * libvlc_media_list_release() to decrement the reference counting.
  211.  *
  212.  * param p_md media descriptor object
  213.  * param p_e initalized exception object
  214.  * return list of media descriptor subitems or NULL
  215.  */
  216. /* This method uses libvlc_media_list_t, however, media_list usage is optionnal
  217.  * and this is here for convenience */
  218. #define VLC_FORWARD_DECLARE_OBJECT(a) struct a
  219. VLC_PUBLIC_API VLC_FORWARD_DECLARE_OBJECT(libvlc_media_list_t *)
  220. libvlc_media_subitems( libvlc_media_t *p_md,
  221.                       libvlc_exception_t *p_e );
  222. /**
  223.  * Get event manager from media descriptor object.
  224.  * NOTE: this function doesn't increment reference counting.
  225.  *
  226.  * param p_md a media descriptor object
  227.  * param p_e an initialized exception object
  228.  * return event manager object
  229.  */
  230. VLC_PUBLIC_API libvlc_event_manager_t *
  231.     libvlc_media_event_manager( libvlc_media_t * p_md,
  232.                                            libvlc_exception_t * p_e );
  233. /**
  234.  * Get duration of media descriptor object item.
  235.  *
  236.  * param p_md media descriptor object
  237.  * param p_e an initialized exception object
  238.  * return duration of media item
  239.  */
  240. VLC_PUBLIC_API libvlc_time_t
  241.    libvlc_media_get_duration( libvlc_media_t * p_md,
  242.                                          libvlc_exception_t * p_e );
  243. /**
  244.  * Get preparsed status for media descriptor object.
  245.  *
  246.  * param p_md media descriptor object
  247.  * param p_e an initialized exception object
  248.  * return true if media object has been preparsed otherwise it returns false
  249.  */
  250. VLC_PUBLIC_API int
  251.    libvlc_media_is_preparsed( libvlc_media_t * p_md,
  252.                                          libvlc_exception_t * p_e );
  253. /**
  254.  * Sets media descriptor's user_data. user_data is specialized data
  255.  * accessed by the host application, VLC.framework uses it as a pointer to
  256.  * an native object that references a libvlc_media_t pointer
  257.  *
  258.  * param p_md media descriptor object
  259.  * param p_new_user_data pointer to user data
  260.  * param p_e an initialized exception object
  261.  */
  262. VLC_PUBLIC_API void
  263.     libvlc_media_set_user_data( libvlc_media_t * p_md,
  264.                                            void * p_new_user_data,
  265.                                            libvlc_exception_t * p_e);
  266. /**
  267.  * Get media descriptor's user_data. user_data is specialized data
  268.  * accessed by the host application, VLC.framework uses it as a pointer to
  269.  * an native object that references a libvlc_media_t pointer
  270.  *
  271.  * param p_md media descriptor object
  272.  * param p_e an initialized exception object
  273.  */
  274. VLC_PUBLIC_API void *
  275.     libvlc_media_get_user_data( libvlc_media_t * p_md,
  276.                                            libvlc_exception_t * p_e);
  277. /** @}*/
  278. #endif /* VLC_LIBVLC_MEDIA_H */