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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * stats.c : stats plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2008 the VideoLAN team
  5.  *
  6.  * Authors: Samuel Hocevar <sam@zoy.org>
  7.  *          Pierre d'Herbemont <pdherbemont@videolan.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 "stats.h"
  32. /* Example usage:
  33.  *  $ vlc movie.avi --sout="#transcode{aenc=dummy,venc=stats}:
  34.  *                          std{access=http,mux=dummy,dst=0.0.0.0:8081}"
  35.  *  $ vlc -vvv http://127.0.0.1:8081 --demux=stats --vout=stats --codec=stats
  36.  */
  37. /*****************************************************************************
  38.  * Module descriptor
  39.  *****************************************************************************/
  40. vlc_module_begin ()
  41.     set_shortname( N_("Stats"))
  42.     set_description( N_("Stats encoder function") )
  43.     set_capability( "encoder", 0 )
  44.     add_shortcut( "stats" )
  45.     set_callbacks( OpenEncoder, CloseEncoder )
  46.     add_submodule ()
  47.         set_section( N_( "Stats decoder" ), NULL )
  48.         set_description( N_("Stats decoder function") )
  49.         set_capability( "decoder", 0 )
  50.         add_shortcut( "stats" )
  51.         set_callbacks( OpenDecoder, CloseDecoder )
  52.     add_submodule ()
  53.         set_section( N_( "Stats demux" ), NULL )
  54.         set_description( N_("Stats demux function") )
  55.         set_capability( "demux", 0 )
  56.         add_shortcut( "stats" )
  57.         set_callbacks( OpenDemux, CloseDemux )
  58.     add_submodule ()
  59.         set_section( N_( "Stats video output" ), NULL )
  60.         set_description( N_("Stats video output function") )
  61.         set_capability( "video output", 0 )
  62.         add_shortcut( "stats" )
  63.         set_callbacks( OpenVideo, NULL )
  64. vlc_module_end ()