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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * avcodec.c: video and audio decoder and encoder using libavcodec
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2008 the VideoLAN team
  5.  * $Id: 0d4026e275fb4cc9ae49a0dae44f61818d4cbce0 $
  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. #include <vlc_avcodec.h>
  34. /* ffmpeg header */
  35. #define HAVE_MMX 1
  36. #ifdef HAVE_LIBAVCODEC_AVCODEC_H
  37. #   include <libavcodec/avcodec.h>
  38. #elif defined(HAVE_FFMPEG_AVCODEC_H)
  39. #   include <ffmpeg/avcodec.h>
  40. #else
  41. #   include <avcodec.h>
  42. #endif
  43. #if LIBAVCODEC_BUILD < 5000
  44. #   error You must have a libavcodec >= 5000 (get svn)
  45. #endif
  46. #include "avcodec.h"
  47. #include "avutil.h"
  48. /*****************************************************************************
  49.  * decoder_sys_t: decoder descriptor
  50.  *****************************************************************************/
  51. struct decoder_sys_t
  52. {
  53.     /* Common part between video and audio decoder */
  54.     FFMPEG_COMMON_MEMBERS
  55. };
  56. /****************************************************************************
  57.  * Local prototypes
  58.  ****************************************************************************/
  59. static int OpenDecoder( vlc_object_t * );
  60. static void CloseDecoder( vlc_object_t * );
  61. static const int  nloopf_list[] = { 0, 1, 2, 3, 4 };
  62. static const char *const nloopf_list_text[] =
  63.   { N_("None"), N_("Non-ref"), N_("Bidir"), N_("Non-key"), N_("All") };
  64. #ifdef ENABLE_SOUT
  65. static const char *const enc_hq_list[] = { "rd", "bits", "simple" };
  66. static const char *const enc_hq_list_text[] = {
  67.     N_("rd"), N_("bits"), N_("simple") };
  68. #endif
  69. /*****************************************************************************
  70.  * Module descriptor
  71.  *****************************************************************************/
  72. #define MODULE_DESCRIPTION N_( "Various audio and video decoders/encoders" 
  73.         "delivered by the FFmpeg library. This includes (MS)MPEG4, DivX, SV1,"
  74.         "H261, H263, H264, WMV, WMA, AAC, AMR, DV, MJPEG and other codecs")
  75. vlc_module_begin ()
  76.     set_shortname( "FFmpeg")
  77.     add_shortcut( "ffmpeg" )
  78.     set_category( CAT_INPUT )
  79.     set_subcategory( SUBCAT_INPUT_SCODEC )
  80.     /* decoder main module */
  81. #if defined(MODULE_NAME_is_ffmpegaltivec) 
  82.      || (defined(CAN_COMPILE_ALTIVEC) && !defined(NO_ALTIVEC_IN_FFMPEG))
  83.     set_description( N_("AltiVec FFmpeg audio/video decoder ((MS)MPEG4,SVQ1,H263,WMV,WMA)") )
  84.     /*add_requirement( ALTIVEC )*/
  85.     set_capability( "decoder", 71 )
  86. #else
  87.     set_description( N_("FFmpeg audio/video decoder") )
  88.     set_help( MODULE_DESCRIPTION )
  89.     set_capability( "decoder", 70 )
  90. #endif
  91.     set_section( N_("Decoding") , NULL )
  92.     set_callbacks( OpenDecoder, CloseDecoder )
  93.     add_bool( "ffmpeg-dr", 1, NULL, DR_TEXT, DR_TEXT, true )
  94.     add_integer ( "ffmpeg-error-resilience", 1, NULL, ERROR_TEXT,
  95.         ERROR_LONGTEXT, true )
  96.     add_integer ( "ffmpeg-workaround-bugs", 1, NULL, BUGS_TEXT, BUGS_LONGTEXT,
  97.         false )
  98.     add_bool( "ffmpeg-hurry-up", 1, NULL, HURRYUP_TEXT, HURRYUP_LONGTEXT,
  99.         false )
  100.     add_integer( "ffmpeg-skip-frame", 0, NULL, SKIP_FRAME_TEXT,
  101.         SKIP_FRAME_LONGTEXT, true )
  102.         change_integer_range( -1, 4 )
  103.     add_integer( "ffmpeg-skip-idct", 0, NULL, SKIP_IDCT_TEXT,
  104.         SKIP_IDCT_LONGTEXT, true )
  105.         change_integer_range( -1, 4 )
  106.     add_integer ( "ffmpeg-vismv", 0, NULL, VISMV_TEXT, VISMV_LONGTEXT,
  107.         true )
  108.     add_integer ( "ffmpeg-lowres", 0, NULL, LOWRES_TEXT, LOWRES_LONGTEXT,
  109.         true )
  110.         change_integer_range( 0, 2 )
  111.     add_bool( "ffmpeg-fast", 0, NULL, FAST_TEXT, FAST_LONGTEXT, true )
  112.     add_integer ( "ffmpeg-skiploopfilter", 0, NULL, SKIPLOOPF_TEXT,
  113.                   SKIPLOOPF_LONGTEXT, true )
  114.         change_safe ()
  115.         change_integer_list( nloopf_list, nloopf_list_text, NULL )
  116.     add_integer( "ffmpeg-debug", 0, NULL, DEBUG_TEXT, DEBUG_LONGTEXT,
  117.                  true )
  118. #ifdef ENABLE_SOUT
  119.     /* encoder submodule */
  120.     add_submodule ()
  121.     add_shortcut( "ffmpeg" )
  122.     set_section( N_("Encoding") , NULL )
  123.     set_description( N_("FFmpeg audio/video encoder") )
  124.     set_capability( "encoder", 100 )
  125.     set_callbacks( OpenEncoder, CloseEncoder )
  126.     add_string( ENC_CFG_PREFIX "hq", "simple", NULL, ENC_HQ_TEXT,
  127.                 ENC_HQ_LONGTEXT, false )
  128.         change_string_list( enc_hq_list, enc_hq_list_text, 0 )
  129.     add_integer( ENC_CFG_PREFIX "keyint", 0, NULL, ENC_KEYINT_TEXT,
  130.                  ENC_KEYINT_LONGTEXT, false )
  131.     add_integer( ENC_CFG_PREFIX "bframes", 0, NULL, ENC_BFRAMES_TEXT,
  132.                  ENC_BFRAMES_LONGTEXT, false )
  133.     add_bool( ENC_CFG_PREFIX "hurry-up", 0, NULL, ENC_HURRYUP_TEXT,
  134.               ENC_HURRYUP_LONGTEXT, false )
  135.     add_bool( ENC_CFG_PREFIX "interlace", 0, NULL, ENC_INTERLACE_TEXT,
  136.               ENC_INTERLACE_LONGTEXT, true )
  137.     add_bool( ENC_CFG_PREFIX "interlace-me", 1, NULL, ENC_INTERLACE_ME_TEXT,
  138.               ENC_INTERLACE_ME_LONGTEXT, true )
  139.     add_integer( ENC_CFG_PREFIX "vt", 0, NULL, ENC_VT_TEXT,
  140.                  ENC_VT_LONGTEXT, true )
  141.     add_bool( ENC_CFG_PREFIX "pre-me", 0, NULL, ENC_PRE_ME_TEXT,
  142.               ENC_PRE_ME_LONGTEXT, true )
  143.     add_integer( ENC_CFG_PREFIX "rc-buffer-size", 224*1024*8, NULL,
  144.                  ENC_RC_BUF_TEXT, ENC_RC_BUF_LONGTEXT, true )
  145.     add_float( ENC_CFG_PREFIX "rc-buffer-aggressivity", 1.0, NULL,
  146.                ENC_RC_BUF_AGGR_TEXT, ENC_RC_BUF_AGGR_LONGTEXT, true )
  147.     add_float( ENC_CFG_PREFIX "i-quant-factor", 0, NULL,
  148.                ENC_IQUANT_FACTOR_TEXT, ENC_IQUANT_FACTOR_LONGTEXT, true )
  149.     add_integer( ENC_CFG_PREFIX "noise-reduction", 0, NULL,
  150.                  ENC_NOISE_RED_TEXT, ENC_NOISE_RED_LONGTEXT, true )
  151.     add_bool( ENC_CFG_PREFIX "mpeg4-matrix", 0, NULL,
  152.               ENC_MPEG4_MATRIX_TEXT, ENC_MPEG4_MATRIX_LONGTEXT, true )
  153.     add_integer( ENC_CFG_PREFIX "qmin", 0, NULL,
  154.                  ENC_QMIN_TEXT, ENC_QMIN_LONGTEXT, true )
  155.     add_integer( ENC_CFG_PREFIX "qmax", 0, NULL,
  156.                  ENC_QMAX_TEXT, ENC_QMAX_LONGTEXT, true )
  157.     add_bool( ENC_CFG_PREFIX "trellis", 0, NULL,
  158.               ENC_TRELLIS_TEXT, ENC_TRELLIS_LONGTEXT, true )
  159.     add_float( ENC_CFG_PREFIX "qscale", 0, NULL,
  160.                ENC_QSCALE_TEXT, ENC_QSCALE_LONGTEXT, true )
  161.     add_integer( ENC_CFG_PREFIX "strict", 0, NULL,
  162.                  ENC_STRICT_TEXT, ENC_STRICT_LONGTEXT, true )
  163.     add_float( ENC_CFG_PREFIX "lumi-masking", 0.0, NULL,
  164.                ENC_LUMI_MASKING_TEXT, ENC_LUMI_MASKING_LONGTEXT, true )
  165.     add_float( ENC_CFG_PREFIX "dark-masking", 0.0, NULL,
  166.                ENC_DARK_MASKING_TEXT, ENC_DARK_MASKING_LONGTEXT, true )
  167.     add_float( ENC_CFG_PREFIX "p-masking", 0.0, NULL,
  168.                ENC_P_MASKING_TEXT, ENC_P_MASKING_LONGTEXT, true )
  169.     add_float( ENC_CFG_PREFIX "border-masking", 0.0, NULL,
  170.                ENC_BORDER_MASKING_TEXT, ENC_BORDER_MASKING_LONGTEXT, true )
  171.     add_integer( ENC_CFG_PREFIX "luma-elim-threshold", 0, NULL,
  172.                  ENC_LUMA_ELIM_TEXT, ENC_LUMA_ELIM_LONGTEXT, true )
  173.     add_integer( ENC_CFG_PREFIX "chroma-elim-threshold", 0, NULL,
  174.                  ENC_CHROMA_ELIM_TEXT, ENC_CHROMA_ELIM_LONGTEXT, true )
  175. #if LIBAVCODEC_VERSION_INT >= ((51<<16)+(40<<8)+4)
  176.     /* Audio AAC encoder profile */
  177.     add_string( ENC_CFG_PREFIX "aac-profile", "low", NULL,
  178.                 ENC_PROFILE_TEXT, ENC_PROFILE_LONGTEXT, true )
  179. #endif
  180. #endif /* ENABLE_SOUT */
  181.     /* video filter submodule */
  182.     add_submodule ()
  183.     set_capability( "video filter2", 0 )
  184.     set_callbacks( OpenDeinterlace, CloseDeinterlace )
  185.     set_description( N_("FFmpeg deinterlace video filter") )
  186.     add_shortcut( "ffmpeg-deinterlace" )
  187. vlc_module_end ()
  188. /*****************************************************************************
  189.  * OpenDecoder: probe the decoder and return score
  190.  *****************************************************************************/
  191. static int OpenDecoder( vlc_object_t *p_this )
  192. {
  193.     decoder_t *p_dec = (decoder_t*) p_this;
  194.     int i_cat, i_codec_id, i_result;
  195.     const char *psz_namecodec;
  196.     AVCodecContext *p_context = NULL;
  197.     AVCodec        *p_codec = NULL;
  198.     /* *** determine codec type *** */
  199.     if( !GetFfmpegCodec( p_dec->fmt_in.i_codec, &i_cat, &i_codec_id,
  200.                              &psz_namecodec ) )
  201.     {
  202.         return VLC_EGENERIC;
  203.     }
  204.     /* Initialization must be done before avcodec_find_decoder() */
  205.     InitLibavcodec(p_this);
  206.     /* *** ask ffmpeg for a decoder *** */
  207.     p_codec = avcodec_find_decoder( i_codec_id );
  208.     if( !p_codec )
  209.     {
  210.         msg_Dbg( p_dec, "codec not found (%s)", psz_namecodec );
  211.         return VLC_EGENERIC;
  212.     }
  213.     /* *** get a p_context *** */
  214.     p_context = avcodec_alloc_context();
  215.     if( !p_context )
  216.         return VLC_ENOMEM;
  217.     p_context->debug = config_GetInt( p_dec, "ffmpeg-debug" );
  218.     p_context->opaque = (void *)p_this;
  219.     /* Set CPU capabilities */
  220.     unsigned i_cpu = vlc_CPU();
  221.     p_context->dsp_mask = 0;
  222.     if( !(i_cpu & CPU_CAPABILITY_MMX) )
  223.     {
  224.         p_context->dsp_mask |= FF_MM_MMX;
  225.     }
  226.     if( !(i_cpu & CPU_CAPABILITY_MMXEXT) )
  227.     {
  228.         p_context->dsp_mask |= FF_MM_MMXEXT;
  229.     }
  230.     if( !(i_cpu & CPU_CAPABILITY_3DNOW) )
  231.     {
  232.         p_context->dsp_mask |= FF_MM_3DNOW;
  233.     }
  234.     if( !(i_cpu & CPU_CAPABILITY_SSE) )
  235.     {
  236.         p_context->dsp_mask |= FF_MM_SSE;
  237.     }
  238.     if( !(i_cpu & CPU_CAPABILITY_SSE2) )
  239.     {
  240.         p_context->dsp_mask |= FF_MM_SSE2;
  241.     }
  242.     p_dec->b_need_packetized = true;
  243.     switch( i_cat )
  244.     {
  245.     case VIDEO_ES:
  246.         p_dec->pf_decode_video = DecodeVideo;
  247.         i_result =  InitVideoDec ( p_dec, p_context, p_codec,
  248.                                        i_codec_id, psz_namecodec );
  249.         break;
  250.     case AUDIO_ES:
  251.         p_dec->pf_decode_audio = DecodeAudio;
  252.         i_result =  InitAudioDec ( p_dec, p_context, p_codec,
  253.                                        i_codec_id, psz_namecodec );
  254.         break;
  255.     default:
  256.         i_result = VLC_EGENERIC;
  257.     }
  258.     if( i_result == VLC_SUCCESS ) p_dec->p_sys->i_cat = i_cat;
  259.     return i_result;
  260. }
  261. /*****************************************************************************
  262.  * CloseDecoder: decoder destruction
  263.  *****************************************************************************/
  264. static void CloseDecoder( vlc_object_t *p_this )
  265. {
  266.     decoder_t *p_dec = (decoder_t *)p_this;
  267.     decoder_sys_t *p_sys = p_dec->p_sys;
  268.     switch( p_sys->i_cat )
  269.     {
  270.     case AUDIO_ES:
  271.          EndAudioDec ( p_dec );
  272.         break;
  273.     case VIDEO_ES:
  274.          EndVideoDec ( p_dec );
  275.         break;
  276.     }
  277.     if( p_sys->p_context )
  278.     {
  279.         free( p_sys->p_context->extradata );
  280.         p_sys->p_context->extradata = NULL;
  281.         if( !p_sys->b_delayed_open )
  282.         {
  283.             vlc_avcodec_lock();
  284.             avcodec_close( p_sys->p_context );
  285.             vlc_avcodec_unlock();
  286.         }
  287.         msg_Dbg( p_dec, "ffmpeg codec (%s) stopped", p_sys->psz_namecodec );
  288.         av_free( p_sys->p_context );
  289.     }
  290.     free( p_sys );
  291. }
  292. void InitLibavcodec( vlc_object_t *p_object )
  293. {
  294.     static bool b_ffmpeginit = false;
  295.     vlc_avcodec_lock();
  296.     /* *** init ffmpeg library (libavcodec) *** */
  297.     if( !b_ffmpeginit )
  298.     {
  299.         avcodec_init();
  300.         avcodec_register_all();
  301.         av_log_set_callback( LibavutilCallback );
  302.         b_ffmpeginit = true;
  303.         msg_Dbg( p_object, "libavcodec initialized (interface 0x%x)",
  304.                  LIBAVCODEC_VERSION_INT );
  305.     }
  306.     else
  307.     {
  308.         msg_Dbg( p_object, "libavcodec already initialized" );
  309.     }
  310.     vlc_avcodec_unlock();
  311. }