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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dummy.c : dummy plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 the VideoLAN team
  5.  * $Id: 547c84bf7634b790cb7b897c0d7a1aaf0499912a $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include "dummy.h"
  32. /*****************************************************************************
  33.  * Module descriptor
  34.  *****************************************************************************/
  35. #define CHROMA_TEXT N_("Dummy image chroma format")
  36. #define CHROMA_LONGTEXT N_( 
  37.     "Force the dummy video output to create images using a specific chroma " 
  38.     "format instead of trying to improve performances by using the most " 
  39.     "efficient one.")
  40. #define SAVE_TEXT N_("Save raw codec data")
  41. #define SAVE_LONGTEXT N_( 
  42.     "Save the raw codec data if you have selected/forced the dummy " 
  43.     "decoder in the main options." )
  44. #ifdef WIN32
  45. #define QUIET_TEXT N_("Do not open a DOS command box interface")
  46. #define QUIET_LONGTEXT N_( 
  47.     "By default the dummy interface plugin will start a DOS command box. " 
  48.     "Enabling the quiet mode will not bring this command box but can also " 
  49.     "be pretty annoying when you want to stop VLC and no video window is " 
  50.     "open." )
  51. #endif
  52. vlc_module_begin ()
  53.     set_shortname( N_("Dummy"))
  54.     set_description( N_("Dummy interface function") )
  55.     set_capability( "interface", 0 )
  56.     set_callbacks( OpenIntf, NULL )
  57. #ifdef WIN32
  58.     set_section( N_( "Dummy Interface" ), NULL )
  59.     add_category_hint( N_("Interface"), NULL, false )
  60.     add_bool( "dummy-quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, false )
  61. #endif
  62.     add_submodule ()
  63.         set_description( N_("Dummy access function") )
  64.         set_capability( "access", 0 )
  65.         set_callbacks( OpenAccess, NULL )
  66.         add_shortcut( "vlc" )
  67.     add_submodule ()
  68.         set_description( N_("Dummy demux function") )
  69.         set_capability( "demux", 0 )
  70.         set_callbacks( OpenDemux, CloseDemux )
  71.         add_shortcut( "vlc" )
  72.     add_submodule ()
  73.         set_section( N_( "Dummy decoder" ), NULL )
  74.         set_description( N_("Dummy decoder function") )
  75.         set_capability( "decoder", 0 )
  76.         set_callbacks( OpenDecoder, CloseDecoder )
  77.         set_category( CAT_INPUT )
  78.         set_subcategory( SUBCAT_INPUT_SCODEC )
  79.         add_bool( "dummy-save-es", 0, NULL, SAVE_TEXT, SAVE_LONGTEXT, true )
  80.     add_submodule ()
  81.         set_section( N_( "Dump decoder" ), NULL )
  82.         set_description( N_("Dump decoder function") )
  83.         set_capability( "decoder", -1 )
  84.         set_callbacks( OpenDecoderDump, CloseDecoder )
  85.         add_shortcut( "dump" )
  86.     add_submodule ()
  87.         set_description( N_("Dummy encoder function") )
  88.         set_capability( "encoder", 0 )
  89.         set_callbacks( OpenEncoder, CloseEncoder )
  90.     add_submodule ()
  91.         set_description( N_("Dummy audio output function") )
  92.         set_capability( "audio output", 1 )
  93.         set_callbacks( OpenAudio, NULL )
  94.     add_submodule ()
  95.         set_description( N_("Dummy video output function") )
  96.         set_section( N_( "Dummy Video output" ), NULL )
  97.         set_capability( "video output", 1 )
  98.         set_callbacks( OpenVideo, NULL )
  99.         set_category( CAT_VIDEO )
  100.         set_subcategory( SUBCAT_VIDEO_VOUT )
  101.         add_category_hint( N_("Video"), NULL, false )
  102.         add_string( "dummy-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, true )
  103.     add_submodule ()
  104.         set_description( N_("Dummy font renderer function") )
  105.         set_capability( "text renderer", 1 )
  106.         set_callbacks( OpenRenderer, NULL )
  107. vlc_module_end ()