亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? libvlc_vlm.h

?? mips版本的VLC視頻服務器
?? H
字號:
/***************************************************************************** * libvlc_vlm.h:  libvlc_* new external API ***************************************************************************** * Copyright (C) 1998-2008 the VideoLAN team * $Id: c3305badee3758f50ad4e5053ff1c7db8648157a $ * * Authors: Clément Stenac <zorglub@videolan.org> *          Jean-Paul Saman <jpsaman _at_ m2x _dot_ nl> * * 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. *****************************************************************************/#ifndef LIBVLC_VLM_H#define LIBVLC_VLM_H 1/** * \file * This file defines libvlc_vlm_* external API */# ifdef __cplusplusextern "C" {# endif/***************************************************************************** * VLM *****************************************************************************//** \defgroup libvlc_vlm libvlc_vlm * \ingroup libvlc * LibVLC VLM * @{ *//** * Release the vlm instance related to the given libvlc_instance_t * * \param p_instance the instance * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_release( libvlc_instance_t *, libvlc_exception_t * );/** * Add a broadcast, with one input. * * \param p_instance the instance * \param psz_name the name of the new broadcast * \param psz_input the input MRL * \param psz_output the output MRL (the parameter to the "sout" variable) * \param i_options number of additional options * \param ppsz_options additional options * \param b_enabled boolean for enabling the new broadcast * \param b_loop Should this broadcast be played in loop ? * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_add_broadcast( libvlc_instance_t *,                                              const char *, const char *,                                              const char * , int,                                              const char * const*,                                              int, int,                                              libvlc_exception_t * );/** * Add a vod, with one input. * * \param p_instance the instance * \param psz_name the name of the new vod media * \param psz_input the input MRL * \param i_options number of additional options * \param ppsz_options additional options * \param b_enabled boolean for enabling the new vod * \param psz_mux the muxer of the vod media * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_add_vod( libvlc_instance_t *,                                        const char *, const char *,                                        int, const char * const*,                                        int, const char *,                                        libvlc_exception_t * );/** * Delete a media (VOD or broadcast). * * \param p_instance the instance * \param psz_name the media to delete * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_del_media( libvlc_instance_t *,                                          const char *,                                          libvlc_exception_t * );/** * Enable or disable a media (VOD or broadcast). * * \param p_instance the instance * \param psz_name the media to work on * \param b_enabled the new status * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_set_enabled( libvlc_instance_t *, const char *,                                            int, libvlc_exception_t * );/** * Set the output for a media. * * \param p_instance the instance * \param psz_name the media to work on * \param psz_output the output MRL (the parameter to the "sout" variable) * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_set_output( libvlc_instance_t *, const char *,                                           const char *,                                           libvlc_exception_t * );/** * Set a media's input MRL. This will delete all existing inputs and * add the specified one. * * \param p_instance the instance * \param psz_name the media to work on * \param psz_input the input MRL * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_set_input( libvlc_instance_t *, const char *,                                          const char *,                                          libvlc_exception_t * );/** * Add a media's input MRL. This will add the specified one. * * \param p_instance the instance * \param psz_name the media to work on * \param psz_input the input MRL * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_add_input( libvlc_instance_t *, const char *,                                          const char *,                                          libvlc_exception_t * );/** * Set a media's loop status. * * \param p_instance the instance * \param psz_name the media to work on * \param b_loop the new status * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_set_loop( libvlc_instance_t *, const char *,                                         int, libvlc_exception_t * );/** * Set a media's vod muxer. * * \param p_instance the instance * \param psz_name the media to work on * \param psz_mux the new muxer * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_set_mux( libvlc_instance_t *, const char *,                                        const char *, libvlc_exception_t * );/** * Edit the parameters of a media. This will delete all existing inputs and * add the specified one. * * \param p_instance the instance * \param psz_name the name of the new broadcast * \param psz_input the input MRL * \param psz_output the output MRL (the parameter to the "sout" variable) * \param i_options number of additional options * \param ppsz_options additional options * \param b_enabled boolean for enabling the new broadcast * \param b_loop Should this broadcast be played in loop ? * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_change_media( libvlc_instance_t *,                                             const char *, const char *,                                             const char* , int,                                             const char * const *, int, int,                                             libvlc_exception_t * );/** * Play the named broadcast. * * \param p_instance the instance * \param psz_name the name of the broadcast * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_play_media ( libvlc_instance_t *, const char *,                                            libvlc_exception_t * );/** * Stop the named broadcast. * * \param p_instance the instance * \param psz_name the name of the broadcast * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_stop_media ( libvlc_instance_t *, const char *,                                            libvlc_exception_t * );/** * Pause the named broadcast. * * \param p_instance the instance * \param psz_name the name of the broadcast * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_pause_media( libvlc_instance_t *, const char *,                                            libvlc_exception_t * );/** * Seek in the named broadcast. * * \param p_instance the instance * \param psz_name the name of the broadcast * \param f_percentage the percentage to seek to * \param p_e an initialized exception pointer */VLC_PUBLIC_API void libvlc_vlm_seek_media( libvlc_instance_t *, const char *,                                           float, libvlc_exception_t * );/** * Return information about the named broadcast. * \bug will always return NULL * \param p_instance the instance * \param psz_name the name of the broadcast * \param p_e an initialized exception pointer * \return string with information about named media */VLC_PUBLIC_API char* libvlc_vlm_show_media( libvlc_instance_t *, const char *,                                            libvlc_exception_t * );/** * Get vlm_media instance position by name or instance id * * \param p_instance a libvlc instance * \param psz_name name of vlm media instance * \param i_instance instance id * \param p_e an initialized exception pointer * \return position as float */VLC_PUBLIC_API float libvlc_vlm_get_media_instance_position( libvlc_instance_t *,                                                             const char *, int,                                                             libvlc_exception_t * );/** * Get vlm_media instance time by name or instance id * * \param p_instance a libvlc instance * \param psz_name name of vlm media instance * \param i_instance instance id * \param p_e an initialized exception pointer * \return time as integer */VLC_PUBLIC_API int libvlc_vlm_get_media_instance_time( libvlc_instance_t *,                                                       const char *, int,                                                       libvlc_exception_t * );/** * Get vlm_media instance length by name or instance id * * \param p_instance a libvlc instance * \param psz_name name of vlm media instance * \param i_instance instance id * \param p_e an initialized exception pointer * \return length of media item */VLC_PUBLIC_API int libvlc_vlm_get_media_instance_length( libvlc_instance_t *,                                                         const char *, int ,                                                         libvlc_exception_t * );/** * Get vlm_media instance playback rate by name or instance id * * \param p_instance a libvlc instance * \param psz_name name of vlm media instance * \param i_instance instance id * \param p_e an initialized exception pointer * \return playback rate */VLC_PUBLIC_API int libvlc_vlm_get_media_instance_rate( libvlc_instance_t *,                                                       const char *, int,                                                       libvlc_exception_t * );/** * Get vlm_media instance title number by name or instance id * \bug will always return 0 * \param p_instance a libvlc instance * \param psz_name name of vlm media instance * \param i_instance instance id * \param p_e an initialized exception pointer * \return title as number */VLC_PUBLIC_API int libvlc_vlm_get_media_instance_title( libvlc_instance_t *,                                                        const char *, int,                                                        libvlc_exception_t * );/** * Get vlm_media instance chapter number by name or instance id * \bug will always return 0 * \param p_instance a libvlc instance * \param psz_name name of vlm media instance * \param i_instance instance id * \param p_e an initialized exception pointer * \return chapter as number */VLC_PUBLIC_API int libvlc_vlm_get_media_instance_chapter( libvlc_instance_t *,                                                          const char *, int,                                                          libvlc_exception_t * );/** * Is libvlc instance seekable ? * \bug will always return 0 * \param p_instance a libvlc instance * \param psz_name name of vlm media instance * \param i_instance instance id * \param p_e an initialized exception pointer * \return 1 if seekable, 0 if not */VLC_PUBLIC_API int libvlc_vlm_get_media_instance_seekable( libvlc_instance_t *,                                                           const char *, int,                                                           libvlc_exception_t * );/** @} */# ifdef __cplusplus}# endif#endif /* <vlc/libvlc_vlm.h> */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
视频一区视频二区中文| 久久日一线二线三线suv| 亚洲免费观看视频| 色婷婷久久99综合精品jk白丝| 亚洲四区在线观看| 色偷偷成人一区二区三区91| 亚洲精品大片www| 欧美综合色免费| 视频在线观看一区二区三区| 日韩一区二区三区电影| 国产一区二区三区在线观看精品 | 日韩精品影音先锋| 久久精品国产亚洲一区二区三区| 精品国产不卡一区二区三区| 成人美女在线视频| 一区二区三区日本| 精品精品欲导航| 成人av网址在线| 亚洲国产视频一区| 337p日本欧洲亚洲大胆色噜噜| 成人午夜短视频| 一区二区不卡在线播放| 精品国产凹凸成av人网站| 成人免费毛片片v| 偷窥少妇高潮呻吟av久久免费| 久久久影视传媒| 色国产精品一区在线观看| 美女视频黄久久| 亚洲天堂久久久久久久| 日韩欧美一区二区在线视频| 风流少妇一区二区| 香蕉影视欧美成人| 亚洲国产成人自拍| 欧美日本一区二区三区| 国产成人精品三级麻豆| 亚洲成av人在线观看| 国产午夜精品理论片a级大结局| 91极品视觉盛宴| 国产精品羞羞答答xxdd| 亚洲成a人v欧美综合天堂下载 | 亚洲青青青在线视频| 日韩欧美亚洲一区二区| 91蜜桃在线观看| 寂寞少妇一区二区三区| 亚洲精品视频在线| 久久综合久色欧美综合狠狠| 色94色欧美sute亚洲线路二| 国产一区二区三区在线观看免费 | 性感美女极品91精品| 国产色婷婷亚洲99精品小说| 7777精品伊人久久久大香线蕉的| 成人app网站| 国产一区二区91| 美女视频黄频大全不卡视频在线播放| 日韩码欧中文字| 国产欧美视频在线观看| 欧美一三区三区四区免费在线看| 色综合久久综合网| 成人激情文学综合网| 久久成人18免费观看| 日韩电影在线观看网站| 亚洲国产sm捆绑调教视频| 中文字幕一区二区三区乱码在线| 久久久三级国产网站| 日韩欧美高清在线| 日韩午夜激情av| 7777精品伊人久久久大香线蕉经典版下载 | 成人av网在线| 岛国精品在线观看| 国产精品 日产精品 欧美精品| 蜜臀va亚洲va欧美va天堂| 视频一区视频二区中文| 午夜伦理一区二区| 亚洲.国产.中文慕字在线| 亚洲福利视频一区| 亚洲福利视频三区| 午夜国产精品一区| 亚洲v精品v日韩v欧美v专区| 一区2区3区在线看| 亚洲成人你懂的| 日韩一区精品字幕| 日本不卡一区二区| 蜜臀国产一区二区三区在线播放| 日韩av电影免费观看高清完整版 | 欧美日韩精品一区二区在线播放| 色哟哟亚洲精品| 91福利在线观看| 欧美日韩中文字幕精品| 欧美日韩精品福利| 日韩午夜电影av| 久久久噜噜噜久久人人看| 国产欧美精品区一区二区三区| 国产亲近乱来精品视频| 国产精品九色蝌蚪自拍| 亚洲一区在线观看视频| 肉丝袜脚交视频一区二区| 久久se这里有精品| 岛国一区二区三区| 在线亚洲免费视频| 7777精品伊人久久久大香线蕉 | 日本一区二区免费在线观看视频 | 国模冰冰炮一区二区| 国产白丝网站精品污在线入口| 丁香婷婷深情五月亚洲| 91一区二区在线| 欧美日韩久久一区| 欧美精品一区二区三区四区| 国产清纯美女被跳蛋高潮一区二区久久w| 国产三级一区二区| 亚洲国产乱码最新视频| 国产美女娇喘av呻吟久久| 色综合一个色综合| 日韩女优电影在线观看| 亚洲日本青草视频在线怡红院| 日韩福利视频导航| 不卡一二三区首页| 日韩欧美国产一区二区三区| 国产精品国产三级国产专播品爱网| 亚洲超碰97人人做人人爱| 国产精品一区2区| 欧美午夜精品理论片a级按摩| xfplay精品久久| 夜夜嗨av一区二区三区| 国产在线麻豆精品观看| 色综合视频在线观看| 精品国产伦理网| 一区二区三区国产精品| 国产不卡在线一区| 日韩精品中文字幕一区| 一区二区三区高清在线| 国产一区二区电影| 欧美精品自拍偷拍| 国产日产欧美一区二区视频| 亚洲自拍偷拍av| 大胆亚洲人体视频| 欧美日韩免费一区二区三区视频| 欧美精品一区二区三区在线播放| 亚洲图片你懂的| 国产精品99久久久久久宅男| 91理论电影在线观看| 精品人在线二区三区| 亚洲三级视频在线观看| 国产精品麻豆视频| 老司机精品视频线观看86| 99精品欧美一区二区三区综合在线| 91精品国产aⅴ一区二区| 中文一区在线播放| 日本va欧美va欧美va精品| hitomi一区二区三区精品| 91精品国产综合久久婷婷香蕉 | 国产麻豆91精品| 91成人在线免费观看| 欧美国产精品v| 日韩av网站免费在线| 在线亚洲高清视频| 亚洲国产岛国毛片在线| 亚洲成人自拍网| 欧洲日韩一区二区三区| 国产精品入口麻豆九色| 精品一区二区三区久久| 91精品中文字幕一区二区三区| 亚洲最大成人网4388xx| 成人av在线影院| 久久久99精品久久| 美女网站一区二区| 日韩一区二区中文字幕| 一区二区三区 在线观看视频| 国产成人综合视频| 久久久精品人体av艺术| 日韩精品乱码av一区二区| 欧美精品色综合| 亚洲一区在线观看免费观看电影高清| av在线一区二区三区| 国产婷婷一区二区| 99精品国产视频| 国产欧美精品区一区二区三区 | 国产成人综合在线观看| 久久久久久久久久电影| 精品在线你懂的| 欧美不卡在线视频| 久久精品国产一区二区三| 久久久久国产免费免费 | 欧美亚洲尤物久久| 亚洲黄色性网站| 欧美丰满美乳xxx高潮www| 五月天国产精品| 欧美日韩激情一区二区| 图片区日韩欧美亚洲| 欧美岛国在线观看| 国产一区二区视频在线| 久久久久99精品一区| 丁香网亚洲国际| 亚洲国产中文字幕在线视频综合 | 一本大道av伊人久久综合| 亚洲欧美色综合| 色欧美88888久久久久久影院| 午夜av区久久| 精品国产免费久久| 粉嫩av一区二区三区粉嫩| 日韩美女久久久|