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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * avformat.c: demuxer and muxer using libavformat library
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2008 the VideoLAN team
  5.  * $Id: 7bf3b50d72ab5953245d7c11218362af93819e18 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_codec.h>
  33. /* ffmpeg header */
  34. #ifdef HAVE_LIBAVFORMAT_AVFORMAT_H
  35. #   include <libavformat/avformat.h>
  36. #elif defined(HAVE_FFMPEG_AVFORMAT_H)
  37. #   include <ffmpeg/avformat.h>
  38. #endif
  39. #include "avformat.h"
  40. /*****************************************************************************
  41.  * Module descriptor
  42.  *****************************************************************************/
  43. vlc_module_begin ()
  44.     add_shortcut( "ffmpeg" )
  45.     set_category( CAT_INPUT )
  46.     set_subcategory( SUBCAT_INPUT_DEMUX )
  47.     set_description( N_("FFmpeg demuxer" ) )
  48.     set_shortname( N_("Avformat") )
  49.     set_capability( "demux", 2 )
  50.     set_callbacks( OpenDemux, CloseDemux )
  51. #ifdef ENABLE_SOUT
  52.     /* mux submodule */
  53.     add_submodule ()
  54.     add_shortcut( "ffmpeg" )
  55.     set_description( N_("FFmpeg muxer" ) )
  56.     set_capability( "sout mux", 2 )
  57.     add_string( "ffmpeg-mux", NULL, NULL, MUX_TEXT,
  58.                 MUX_LONGTEXT, true )
  59.     set_callbacks( OpenMux, CloseMux )
  60. #endif
  61. vlc_module_end ()