satellite.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * satellite.c : Satellite input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000 VideoLAN
  5.  *
  6.  * Authors: Samuel Hocevar <sam@zoy.org>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  21.  *****************************************************************************/
  22. /*****************************************************************************
  23.  * Preamble
  24.  *****************************************************************************/
  25. #include <stdlib.h>                                      /* malloc(), free() */
  26. #include <string.h>                                              /* strdup() */
  27. #include <vlc/vlc.h>
  28. /*****************************************************************************
  29.  * External prototypes
  30.  *****************************************************************************/
  31. int  E_(Open)    ( vlc_object_t * );
  32. void E_(Close)   ( vlc_object_t * );
  33. /*****************************************************************************
  34.  * Module descriptor
  35.  *****************************************************************************/
  36. #define DEMUX_TEXT N_("Demux number")
  37. #define DEMUX_LONGTEXT ""
  38. #define TUNER_TEXT N_("Tuner number")
  39. #define TUNER_LONGTEXT ""
  40. #define FREQ_TEXT N_("Satellite default transponder frequency (kHz)")
  41. #define FREQ_LONGTEXT ""
  42. #define POL_TEXT N_("Satellite default transponder polarization")
  43. #define POL_LONGTEXT ""
  44. #define FEC_TEXT N_("Satellite default transponder FEC")
  45. #define FEC_LONGTEXT ""
  46. #define SRATE_TEXT N_("Satellite default transponder symbol rate (kHz)")
  47. #define SRATE_LONGTEXT ""
  48. #define DISEQC_TEXT N_("Use diseqc with antenna")
  49. #define DISEQC_LONGTEXT ""
  50. #define LNB_LOF1_TEXT N_("Antenna lnb_lof1 (kHz)")
  51. #define LNB_LOF1_LONGTEXT ""
  52. #define LNB_LOF2_TEXT N_("Antenna lnb_lof2 (kHz)")
  53. #define LNB_LOF2_LONGTEXT ""
  54. #define LNB_SLOF_TEXT N_("Antenna lnb_slof (kHz)")
  55. #define LNB_SLOF_LONGTEXT ""
  56. vlc_module_begin();
  57.     set_description( _("Satellite input") );
  58.     add_integer( "dvb-dmx", 0, NULL, DEMUX_TEXT, DEMUX_LONGTEXT, VLC_FALSE );
  59.     add_integer( "dvb-tuner", 0, NULL, TUNER_TEXT, TUNER_LONGTEXT, VLC_FALSE );
  60.     add_integer( "frequency", 0, NULL, FREQ_TEXT, FREQ_LONGTEXT, VLC_FALSE );
  61.     add_integer( "polarization", 0, NULL, POL_TEXT, POL_LONGTEXT, VLC_FALSE );
  62.     add_integer( "fec", 3, NULL, FEC_TEXT, FEC_LONGTEXT, VLC_FALSE );
  63.     add_integer( "symbol-rate", 27500000, NULL, SRATE_TEXT, SRATE_LONGTEXT,
  64.                   VLC_FALSE );
  65.     add_bool( "diseqc", 0, NULL, DISEQC_TEXT, DISEQC_LONGTEXT, VLC_TRUE );
  66.     add_integer( "lnb-lof1", 10000000, NULL,
  67.                  LNB_LOF1_TEXT, LNB_LOF1_LONGTEXT, VLC_TRUE );
  68.     add_integer( "lnb-lof2", 10000000, NULL,
  69.                  LNB_LOF2_TEXT, LNB_LOF2_LONGTEXT, VLC_TRUE );
  70.     add_integer( "lnb-slof", 11700000, NULL,
  71.                  LNB_SLOF_TEXT, LNB_SLOF_LONGTEXT, VLC_TRUE );
  72.     set_capability( "access", 0 );
  73.     add_shortcut( "sat" );
  74.     set_callbacks( E_(Open), E_(Close) );
  75. vlc_module_end();