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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * encoder.c: video and audio encoder using the ffmpeg library
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 VideoLAN
  5.  * $Id: encoder.c 9156 2004-11-05 14:57:53Z gbazin $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *          Christophe Massiot <massiot@via.ecp.fr>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <vlc/vlc.h>
  29. #include <vlc/vout.h>
  30. #include <vlc/aout.h>
  31. #include <vlc/sout.h>
  32. #include <vlc/decoder.h>
  33. /* ffmpeg header */
  34. #define HAVE_MMX
  35. #ifdef HAVE_FFMPEG_AVCODEC_H
  36. #   include <ffmpeg/avcodec.h>
  37. #else
  38. #   include <avcodec.h>
  39. #endif
  40. #if LIBAVCODEC_BUILD < 4704
  41. #   define AV_NOPTS_VALUE 0
  42. #endif
  43. #if LIBAVCODEC_BUILD < 4684
  44. #    define FF_QP2LAMBDA 118
  45. #endif
  46. #include "ffmpeg.h"
  47. #define AVCODEC_MAX_VIDEO_FRAME_SIZE (3*1024*1024)
  48. #define HURRY_UP_GUARD1 (450000)
  49. #define HURRY_UP_GUARD2 (300000)
  50. #define HURRY_UP_GUARD3 (100000)
  51. #define MAX_FRAME_DELAY (FF_MAX_B_FRAMES + 2)
  52. /*****************************************************************************
  53.  * Local prototypes
  54.  *****************************************************************************/
  55. int  E_(OpenEncoder) ( vlc_object_t * );
  56. void E_(CloseEncoder)( vlc_object_t * );
  57. static block_t *EncodeVideo( encoder_t *, picture_t * );
  58. static block_t *EncodeAudio( encoder_t *, aout_buffer_t * );
  59. struct thread_context_t;
  60. static int FfmpegThread( struct thread_context_t *p_context );
  61. static int FfmpegExecute( AVCodecContext *s,
  62.                           int (*pf_func)(AVCodecContext *c2, void *arg2),
  63.                           void **arg, int *ret, int count );
  64. /*****************************************************************************
  65.  * thread_context_t : for multithreaded encoding
  66.  *****************************************************************************/
  67. #if LIBAVCODEC_BUILD >= 4702
  68. struct thread_context_t
  69. {
  70.     VLC_COMMON_MEMBERS
  71.     AVCodecContext  *p_context;
  72.     int             (* pf_func)(AVCodecContext *c, void *arg);
  73.     void            *arg;
  74.     int             i_ret;
  75.     vlc_mutex_t     lock;
  76.     vlc_cond_t      cond;
  77.     vlc_bool_t      b_work, b_done;
  78. };
  79. #endif
  80. /*****************************************************************************
  81.  * encoder_sys_t : ffmpeg encoder descriptor
  82.  *****************************************************************************/
  83. struct encoder_sys_t
  84. {
  85.     /*
  86.      * Ffmpeg properties
  87.      */
  88.     AVCodec         *p_codec;
  89.     AVCodecContext  *p_context;
  90.     /*
  91.      * Common properties
  92.      */
  93.     char *p_buffer;
  94.     char *p_buffer_out;
  95.     /*
  96.      * Video properties
  97.      */
  98.     mtime_t i_last_ref_pts;
  99.     mtime_t i_buggy_pts_detect;
  100.     mtime_t i_last_pts;
  101.     vlc_bool_t b_inited;
  102.     /*
  103.      * Audio properties
  104.      */
  105.     int i_frame_size;
  106.     int i_samples_delay;
  107.     mtime_t i_pts;
  108.     /* Encoding settings */
  109.     int        i_key_int;
  110.     int        i_b_frames;
  111.     int        i_vtolerance;
  112.     int        i_qmin;
  113.     int        i_qmax;
  114.     int        i_hq;
  115.     vlc_bool_t b_strict_rc;
  116.     int        i_rc_buffer_size;
  117.     float      f_rc_buffer_aggressivity;
  118.     vlc_bool_t b_pre_me;
  119.     vlc_bool_t b_hurry_up;
  120.     vlc_bool_t b_interlace;
  121.     float      f_i_quant_factor;
  122.     int        i_noise_reduction;
  123.     vlc_bool_t b_mpeg4_matrix;
  124.     vlc_bool_t b_trellis;
  125.     int        i_quality; /* for VBR */
  126.     /* Used to work around stupid timestamping behaviour in libavcodec */
  127.     uint64_t i_framenum;
  128.     mtime_t  pi_delay_pts[MAX_FRAME_DELAY];
  129. };
  130. static const char *ppsz_enc_options[] = {
  131.     "keyint", "bframes", "vt", "qmin", "qmax", "hq", "strict_rc",
  132.     "rc-buffer-size", "rc-buffer-aggressivity", "pre-me", "hurry-up",
  133.     "interlace", "i-quant-factor", "noise-reduction", "mpeg4-matrix",
  134.     "trellis", "qscale", "strict", NULL
  135. };
  136. /*****************************************************************************
  137.  * OpenEncoder: probe the encoder
  138.  *****************************************************************************/
  139. extern int16_t ff_mpeg4_default_intra_matrix[];
  140. extern int16_t ff_mpeg4_default_non_intra_matrix[];
  141. int E_(OpenEncoder)( vlc_object_t *p_this )
  142. {
  143.     encoder_t *p_enc = (encoder_t *)p_this;
  144.     encoder_sys_t *p_sys = p_enc->p_sys;
  145.     AVCodecContext *p_context;
  146.     AVCodec *p_codec;
  147.     int i_codec_id, i_cat;
  148.     char *psz_namecodec;
  149.     vlc_value_t val;
  150.     if( !E_(GetFfmpegCodec)( p_enc->fmt_out.i_codec, &i_cat, &i_codec_id,
  151.                              &psz_namecodec ) )
  152.     {
  153.         if( E_(GetFfmpegChroma)( p_enc->fmt_out.i_codec ) < 0 )
  154.         {
  155.             /* handed chroma output */
  156.             return VLC_EGENERIC;
  157.         }
  158.         i_cat      = VIDEO_ES;
  159.         i_codec_id = CODEC_ID_RAWVIDEO;
  160.         psz_namecodec = "Raw video";
  161.     }
  162.     if( p_enc->fmt_out.i_cat == VIDEO_ES && i_cat != VIDEO_ES )
  163.     {
  164.         msg_Err( p_enc, ""%s" is not a video encoder", psz_namecodec );
  165.         return VLC_EGENERIC;
  166.     }
  167.     if( p_enc->fmt_out.i_cat == AUDIO_ES && i_cat != AUDIO_ES )
  168.     {
  169.         msg_Err( p_enc, ""%s" is not an audio encoder", psz_namecodec );
  170.         return VLC_EGENERIC;
  171.     }
  172.     /* Initialization must be done before avcodec_find_decoder() */
  173.     E_(InitLibavcodec)(p_this);
  174.     p_codec = avcodec_find_encoder( i_codec_id );
  175.     if( !p_codec )
  176.     {
  177.         msg_Err( p_enc, "cannot find encoder %s", psz_namecodec );
  178.         return VLC_EGENERIC;
  179.     }
  180.     /* Allocate the memory needed to store the decoder's structure */
  181.     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
  182.     {
  183.         msg_Err( p_enc, "out of memory" );
  184.         return VLC_EGENERIC;
  185.     }
  186.     memset( p_sys, 0, sizeof(encoder_sys_t) );
  187.     p_enc->p_sys = p_sys;
  188.     p_sys->p_codec = p_codec;
  189.     p_enc->pf_encode_video = EncodeVideo;
  190.     p_enc->pf_encode_audio = EncodeAudio;
  191.     p_sys->p_buffer_out = NULL;
  192.     p_sys->p_buffer = NULL;
  193.     p_sys->p_context = p_context = avcodec_alloc_context();
  194.     /* Set CPU capabilities */
  195.     p_context->dsp_mask = 0;
  196.     if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_MMX) )
  197.     {
  198.         p_context->dsp_mask |= FF_MM_MMX;
  199.     }
  200.     if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_MMXEXT) )
  201.     {
  202.         p_context->dsp_mask |= FF_MM_MMXEXT;
  203.     }
  204.     if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_3DNOW) )
  205.     {
  206.         p_context->dsp_mask |= FF_MM_3DNOW;
  207.     }
  208.     if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_SSE) )
  209.     {
  210.         p_context->dsp_mask |= FF_MM_SSE;
  211.         p_context->dsp_mask |= FF_MM_SSE2;
  212.     }
  213.     sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
  214.     var_Get( p_enc, ENC_CFG_PREFIX "keyint", &val );
  215.     p_sys->i_key_int = val.i_int;
  216.     var_Get( p_enc, ENC_CFG_PREFIX "bframes", &val );
  217.     p_sys->i_b_frames = val.i_int;
  218.     var_Get( p_enc, ENC_CFG_PREFIX "vt", &val );
  219.     p_sys->i_vtolerance = val.i_int;
  220.     var_Get( p_enc, ENC_CFG_PREFIX "interlace", &val );
  221.     p_sys->b_interlace = val.b_bool;
  222.     var_Get( p_enc, ENC_CFG_PREFIX "pre-me", &val );
  223.     p_sys->b_pre_me = val.b_bool;
  224.     var_Get( p_enc, ENC_CFG_PREFIX "hurry-up", &val );
  225.     p_sys->b_hurry_up = val.b_bool;
  226.     if( p_sys->b_hurry_up )
  227.     {
  228.         /* hurry up mode needs noise reduction, even small */
  229.         p_sys->i_noise_reduction = 1;
  230.     }
  231.     var_Get( p_enc, ENC_CFG_PREFIX "strict-rc", &val );
  232.     p_sys->b_strict_rc = val.b_bool;
  233.     var_Get( p_enc, ENC_CFG_PREFIX "rc-buffer-size", &val );
  234.     p_sys->i_rc_buffer_size = val.i_int;
  235.     var_Get( p_enc, ENC_CFG_PREFIX "rc-buffer-aggressivity", &val );
  236.     p_sys->f_rc_buffer_aggressivity = val.f_float;
  237.     var_Get( p_enc, ENC_CFG_PREFIX "i-quant-factor", &val );
  238.     p_sys->f_i_quant_factor = val.f_float;
  239.     var_Get( p_enc, ENC_CFG_PREFIX "noise-reduction", &val );
  240.     p_sys->i_noise_reduction = val.i_int;
  241.     var_Get( p_enc, ENC_CFG_PREFIX "mpeg4-matrix", &val );
  242.     p_sys->b_mpeg4_matrix = val.b_bool;
  243.     var_Get( p_enc, ENC_CFG_PREFIX "qscale", &val );
  244.     if( val.f_float < 0.01 || val.f_float > 255.0 ) val.f_float = 0;
  245.     p_sys->i_quality = (int)(FF_QP2LAMBDA * val.f_float + 0.5);
  246.     var_Get( p_enc, ENC_CFG_PREFIX "hq", &val );
  247.     if( val.psz_string && *val.psz_string )
  248.     {
  249.         if( !strcmp( val.psz_string, "rd" ) )
  250.             p_sys->i_hq = FF_MB_DECISION_RD;
  251.         else if( !strcmp( val.psz_string, "bits" ) )
  252.             p_sys->i_hq = FF_MB_DECISION_BITS;
  253.         else if( !strcmp( val.psz_string, "simple" ) )
  254.             p_sys->i_hq = FF_MB_DECISION_SIMPLE;
  255.         else
  256.             p_sys->i_hq = FF_MB_DECISION_RD;
  257.     }
  258.     if( val.psz_string ) free( val.psz_string );
  259.     var_Get( p_enc, ENC_CFG_PREFIX "qmin", &val );
  260.     p_sys->i_qmin = val.i_int;
  261.     var_Get( p_enc, ENC_CFG_PREFIX "qmax", &val );
  262.     p_sys->i_qmax = val.i_int;
  263.     var_Get( p_enc, ENC_CFG_PREFIX "trellis", &val );
  264.     p_sys->b_trellis = val.b_bool;
  265.     var_Get( p_enc, ENC_CFG_PREFIX "strict", &val );
  266.     if( val.i_int < - 1 || val.i_int > 1 ) val.i_int = 0;
  267.     p_context->strict_std_compliance = val.i_int;
  268.     if( p_enc->fmt_in.i_cat == VIDEO_ES )
  269.     {
  270.         int i_aspect_num, i_aspect_den;
  271.         if( !p_enc->fmt_in.video.i_width || !p_enc->fmt_in.video.i_height )
  272.         {
  273.             msg_Warn( p_enc, "invalid size %ix%i", p_enc->fmt_in.video.i_width,
  274.                       p_enc->fmt_in.video.i_height );
  275.             free( p_sys );
  276.             return VLC_EGENERIC;
  277.         }
  278.         p_context->width = p_enc->fmt_in.video.i_width;
  279.         p_context->height = p_enc->fmt_in.video.i_height;
  280.         p_context->frame_rate = p_enc->fmt_in.video.i_frame_rate;
  281.         p_context->frame_rate_base= p_enc->fmt_in.video.i_frame_rate_base;
  282.         /* Defaults from ffmpeg.c */
  283.         p_context->qblur = 0.5;
  284.         p_context->qcompress = 0.5;
  285.         p_context->b_quant_offset = 1.25;
  286.         p_context->b_quant_factor = 1.25;
  287.         p_context->i_quant_offset = 0.0;
  288.         p_context->i_quant_factor = -0.8;
  289.         if( p_sys->i_key_int > 0 )
  290.             p_context->gop_size = p_sys->i_key_int;
  291.         p_context->max_b_frames =
  292.             __MAX( __MIN( p_sys->i_b_frames, FF_MAX_B_FRAMES ), 0 );
  293.         p_context->b_frame_strategy = 0;
  294. #if LIBAVCODEC_BUILD >= 4687
  295.         av_reduce( &i_aspect_num, &i_aspect_den,
  296.                    p_enc->fmt_in.video.i_aspect,
  297.                    VOUT_ASPECT_FACTOR, 1 << 30 /* something big */ );
  298.         av_reduce( &p_context->sample_aspect_ratio.num,
  299.                    &p_context->sample_aspect_ratio.den,
  300.                    i_aspect_num * (int64_t)p_context->height,
  301.                    i_aspect_den * (int64_t)p_context->width, 1 << 30 );
  302. #else
  303.         p_context->aspect_ratio = ((float)p_enc->fmt_in.video.i_aspect) /
  304.             VOUT_ASPECT_FACTOR;
  305. #endif
  306.         p_sys->p_buffer_out = malloc( AVCODEC_MAX_VIDEO_FRAME_SIZE );
  307.         p_enc->fmt_in.i_codec = VLC_FOURCC('I','4','2','0');
  308.         if ( p_sys->b_strict_rc )
  309.         {
  310.             p_context->rc_max_rate = p_enc->fmt_out.i_bitrate;
  311.             p_context->rc_buffer_size = p_sys->i_rc_buffer_size;
  312.             p_context->rc_buffer_aggressivity = p_sys->f_rc_buffer_aggressivity;
  313.         }
  314.         if ( p_sys->f_i_quant_factor != 0.0 )
  315.             p_context->i_quant_factor = p_sys->f_i_quant_factor;
  316. #if LIBAVCODEC_BUILD >= 4690
  317.         p_context->noise_reduction = p_sys->i_noise_reduction;
  318. #endif
  319.         if ( p_sys->b_mpeg4_matrix )
  320.         {
  321.             p_context->intra_matrix = ff_mpeg4_default_intra_matrix;
  322.             p_context->inter_matrix = ff_mpeg4_default_non_intra_matrix;
  323.         }
  324.         if ( p_sys->b_pre_me )
  325.         {
  326.             p_context->pre_me = 1;
  327.             p_context->me_pre_cmp = FF_CMP_CHROMA;
  328.         }
  329.         if ( p_sys->b_interlace )
  330.         {
  331.             p_context->flags |= CODEC_FLAG_INTERLACED_DCT;
  332. #if LIBAVCODEC_BUILD >= 4698
  333.             p_context->flags |= CODEC_FLAG_INTERLACED_ME;
  334. #endif
  335.         }
  336.         if ( p_sys->b_trellis )
  337.             p_context->flags |= CODEC_FLAG_TRELLIS_QUANT;
  338. #if LIBAVCODEC_BUILD >= 4702
  339.         if ( p_enc->i_threads >= 1 )
  340.             p_context->thread_count = p_enc->i_threads;
  341. #endif
  342.         if( p_sys->i_vtolerance > 0 )
  343.             p_context->bit_rate_tolerance = p_sys->i_vtolerance;
  344.         if( p_sys->i_qmin > 0 )
  345.             p_context->mb_qmin = p_context->qmin = p_sys->i_qmin;
  346.         if( p_sys->i_qmax > 0 )
  347.             p_context->mb_qmax = p_context->qmax = p_sys->i_qmax;
  348.         p_context->max_qdiff = 3;
  349.         p_context->mb_decision = p_sys->i_hq;
  350.         if( p_sys->i_quality )
  351.         {
  352.             p_context->flags |= CODEC_FLAG_QSCALE;
  353. #if LIBAVCODEC_BUILD >= 4668
  354.             p_context->global_quality = p_sys->i_quality;
  355. #endif
  356.         }
  357.     }
  358.     else if( p_enc->fmt_in.i_cat == AUDIO_ES )
  359.     {
  360.         p_enc->fmt_in.i_codec  = AOUT_FMT_S16_NE;
  361.         p_context->sample_rate = p_enc->fmt_in.audio.i_rate;
  362.         p_context->channels    = p_enc->fmt_in.audio.i_channels;
  363.     }
  364.     /* Misc parameters */
  365.     p_context->bit_rate = p_enc->fmt_out.i_bitrate;
  366.     if( i_codec_id == CODEC_ID_RAWVIDEO )
  367.     {
  368.         /* XXX: hack: Force same codec (will be handled by transcode) */
  369.         p_enc->fmt_in.i_codec = p_enc->fmt_out.i_codec;
  370.         p_context->pix_fmt = E_(GetFfmpegChroma)( p_enc->fmt_in.i_codec );
  371.     }
  372.     /* Make sure we get extradata filled by the encoder */
  373.     p_context->extradata_size = 0;
  374.     p_context->extradata = NULL;
  375.     p_context->flags |= CODEC_FLAG_GLOBAL_HEADER;
  376.     if( avcodec_open( p_context, p_codec ) )
  377.     {
  378.         if( p_enc->fmt_in.i_cat == AUDIO_ES && p_context->channels > 2 )
  379.         {
  380.             p_context->channels = 2;
  381.             p_enc->fmt_in.audio.i_channels = 2; // FIXME
  382.             if( avcodec_open( p_context, p_codec ) )
  383.             {
  384.                 msg_Err( p_enc, "cannot open encoder" );
  385.                 free( p_sys );
  386.                 return VLC_EGENERIC;
  387.             }
  388.             msg_Warn( p_enc, "stereo mode selected (codec limitation)" );
  389.         }
  390.         else
  391.         {
  392.             msg_Err( p_enc, "cannot open encoder" );
  393.             free( p_sys );
  394.             return VLC_EGENERIC;
  395.         }
  396.     }
  397.     p_enc->fmt_out.i_extra = p_context->extradata_size;
  398.     p_enc->fmt_out.p_extra = p_context->extradata;
  399.     p_context->flags &= ~CODEC_FLAG_GLOBAL_HEADER;
  400.     if( p_enc->fmt_in.i_cat == AUDIO_ES )
  401.     {
  402.         p_sys->p_buffer_out = malloc( 2 * AVCODEC_MAX_AUDIO_FRAME_SIZE );
  403.         p_sys->i_frame_size = p_context->frame_size * 2 * p_context->channels;
  404.         p_sys->p_buffer = malloc( p_sys->i_frame_size );
  405.     }
  406.     msg_Dbg( p_enc, "found encoder %s", psz_namecodec );
  407.     return VLC_SUCCESS;
  408. }
  409. /****************************************************************************
  410.  * Ffmpeg threading system
  411.  ****************************************************************************/
  412. #if LIBAVCODEC_BUILD >= 4702
  413. static int FfmpegThread( struct thread_context_t *p_context )
  414. {
  415.     while ( !p_context->b_die && !p_context->b_error )
  416.     {
  417.         vlc_mutex_lock( &p_context->lock );
  418.         while ( !p_context->b_work && !p_context->b_die && !p_context->b_error )
  419.         {
  420.             vlc_cond_wait( &p_context->cond, &p_context->lock );
  421.         }
  422.         p_context->b_work = 0;
  423.         vlc_mutex_unlock( &p_context->lock );
  424.         if ( p_context->b_die || p_context->b_error )
  425.             break;
  426.         if ( p_context->pf_func )
  427.         {
  428.             p_context->i_ret = p_context->pf_func( p_context->p_context,
  429.                                                    p_context->arg );
  430.         }
  431.         vlc_mutex_lock( &p_context->lock );
  432.         p_context->b_done = 1;
  433.         vlc_cond_signal( &p_context->cond );
  434.         vlc_mutex_unlock( &p_context->lock );
  435.     }
  436.     return 0;
  437. }
  438. static int FfmpegExecute( AVCodecContext *s,
  439.                           int (*pf_func)(AVCodecContext *c2, void *arg2),
  440.                           void **arg, int *ret, int count )
  441. {
  442.     struct thread_context_t ** pp_contexts =
  443.                          (struct thread_context_t **)s->thread_opaque;
  444.     int i;
  445.     /* Note, we can be certain that this is not called with the same
  446.      * AVCodecContext by different threads at the same time */
  447.     for ( i = 0; i < count; i++ )
  448.     {
  449.         vlc_mutex_lock( &pp_contexts[i]->lock );
  450.         pp_contexts[i]->arg = arg[i];
  451.         pp_contexts[i]->pf_func = pf_func;
  452.         pp_contexts[i]->i_ret = 12345;
  453.         pp_contexts[i]->b_work = 1;
  454.         vlc_cond_signal( &pp_contexts[i]->cond );
  455.         vlc_mutex_unlock( &pp_contexts[i]->lock );
  456.     }
  457.     for ( i = 0; i < count; i++ )
  458.     {
  459.         vlc_mutex_lock( &pp_contexts[i]->lock );
  460.         while ( !pp_contexts[i]->b_done )
  461.         {
  462.             vlc_cond_wait( &pp_contexts[i]->cond, &pp_contexts[i]->lock );
  463.         }
  464.         pp_contexts[i]->b_done = 0;
  465.         pp_contexts[i]->pf_func = NULL;
  466.         vlc_mutex_unlock( &pp_contexts[i]->lock );
  467.         if ( ret )
  468.         {
  469.             ret[i] = pp_contexts[i]->i_ret;
  470.         }
  471.     }
  472.     return 0;
  473. }
  474. #endif
  475. /****************************************************************************
  476.  * EncodeVideo: the whole thing
  477.  ****************************************************************************/
  478. static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
  479. {
  480.     encoder_sys_t *p_sys = p_enc->p_sys;
  481.     AVFrame frame;
  482.     int i_out, i_plane;
  483. #if LIBAVCODEC_BUILD >= 4702
  484.     if ( !p_sys->b_inited && p_enc->i_threads >= 1 )
  485.     {
  486.         struct thread_context_t ** pp_contexts;
  487.         int i;
  488.         p_sys->b_inited = 1;
  489.         pp_contexts = malloc( sizeof(struct thread_context_t *)
  490.                                  * p_enc->i_threads );
  491.         p_sys->p_context->thread_opaque = (void *)pp_contexts;
  492.         for ( i = 0; i < p_enc->i_threads; i++ )
  493.         {
  494.             pp_contexts[i] = vlc_object_create( p_enc,
  495.                                      sizeof(struct thread_context_t) );
  496.             pp_contexts[i]->p_context = p_sys->p_context;
  497.             vlc_mutex_init( p_enc, &pp_contexts[i]->lock );
  498.             vlc_cond_init( p_enc, &pp_contexts[i]->cond );
  499.             pp_contexts[i]->b_work = 0;
  500.             pp_contexts[i]->b_done = 0;
  501.             if ( vlc_thread_create( pp_contexts[i], "encoder", FfmpegThread,
  502.                                     VLC_THREAD_PRIORITY_VIDEO, VLC_FALSE ) )
  503.             {
  504.                 msg_Err( p_enc, "cannot spawn encoder thread, expect to die soon" );
  505.                 return NULL;
  506.             }
  507.         }
  508.         p_sys->p_context->execute = FfmpegExecute;
  509.     }
  510. #endif
  511.     memset( &frame, 0, sizeof( AVFrame ) );
  512.     for( i_plane = 0; i_plane < p_pict->i_planes; i_plane++ )
  513.     {
  514.         frame.data[i_plane] = p_pict->p[i_plane].p_pixels;
  515.         frame.linesize[i_plane] = p_pict->p[i_plane].i_pitch;
  516.     }
  517.     /* Let ffmpeg select the frame type */
  518.     frame.pict_type = 0;
  519.     frame.repeat_pict = 2 - p_pict->i_nb_fields;
  520. #if LIBAVCODEC_BUILD >= 4685
  521.     frame.interlaced_frame = !p_pict->b_progressive;
  522.     frame.top_field_first = !!p_pict->b_top_field_first;
  523. #endif
  524. #if LIBAVCODEC_BUILD < 4702
  525.     /* Set the pts of the frame being encoded (segfaults with mpeg4!)*/
  526.     if( p_enc->fmt_out.i_codec == VLC_FOURCC( 'm', 'p', 'g', 'v' ) ||
  527.         p_enc->fmt_out.i_codec == VLC_FOURCC( 'm', 'p', '1', 'v' ) ||
  528.         p_enc->fmt_out.i_codec == VLC_FOURCC( 'm', 'p', '2', 'v' ) )
  529. #else
  530.     if( 1 )
  531. #endif
  532.     {
  533.         frame.pts = p_pict->date ? p_pict->date : AV_NOPTS_VALUE;
  534.         if ( p_sys->b_hurry_up && frame.pts != AV_NOPTS_VALUE )
  535.         {
  536.             mtime_t current_date = mdate();
  537.             if ( current_date + HURRY_UP_GUARD3 > frame.pts )
  538.             {
  539.                 p_sys->p_context->mb_decision = FF_MB_DECISION_SIMPLE;
  540.                 p_sys->p_context->flags &= ~CODEC_FLAG_TRELLIS_QUANT;
  541.                 msg_Dbg( p_enc, "hurry up mode 3" );
  542.             }
  543.             else
  544.             {
  545.                 p_sys->p_context->mb_decision = p_sys->i_hq;
  546.                 if ( current_date + HURRY_UP_GUARD2 > frame.pts )
  547.                 {
  548.                     p_sys->p_context->flags &= ~CODEC_FLAG_TRELLIS_QUANT;
  549. #if LIBAVCODEC_BUILD >= 4690
  550.                     p_sys->p_context->noise_reduction = p_sys->i_noise_reduction
  551.                          + (HURRY_UP_GUARD2 + current_date - frame.pts) / 500;
  552. #endif
  553.                     msg_Dbg( p_enc, "hurry up mode 2" );
  554.                 }
  555.                 else
  556.                 {
  557.                     if ( p_sys->b_trellis )
  558.                         p_sys->p_context->flags |= CODEC_FLAG_TRELLIS_QUANT;
  559. #if LIBAVCODEC_BUILD >= 4690
  560.                     p_sys->p_context->noise_reduction =
  561.                         p_sys->i_noise_reduction;
  562. #endif
  563.                 }
  564.             }
  565.             if ( current_date + HURRY_UP_GUARD1 > frame.pts )
  566.             {
  567.                 frame.pict_type = FF_P_TYPE;
  568.                 /* msg_Dbg( p_enc, "hurry up mode 1 %lld", current_date + HURRY_UP_GUARD1 - frame.pts ); */
  569.             }
  570.         }
  571.     }
  572.     else
  573.     {
  574.         frame.pts = AV_NOPTS_VALUE;
  575.     }
  576.     if ( frame.pts != AV_NOPTS_VALUE && frame.pts != 0 )
  577.     {
  578.         if ( p_sys->i_last_pts == frame.pts )
  579.         {
  580.             msg_Warn( p_enc, "almost fed libavcodec with two frames with the "
  581.                       "same PTS (" I64Fd ")", frame.pts );
  582.             return NULL;
  583.         }
  584.         else if ( p_sys->i_last_pts > frame.pts )
  585.         {
  586.             msg_Warn( p_enc, "almost fed libavcodec with a frame in the "
  587.                       "past (current: " I64Fd ", last: "I64Fd")",
  588.                       frame.pts, p_sys->i_last_pts );
  589.             return NULL;
  590.         }
  591.         else
  592.         {
  593.             p_sys->i_last_pts = frame.pts;
  594.         }
  595.     }
  596.     frame.quality = p_sys->i_quality;
  597.     /* Ugly work-around for stupid libavcodec behaviour */
  598. #if LIBAVCODEC_BUILD >= 4722
  599.     p_sys->i_framenum++;
  600.     p_sys->pi_delay_pts[p_sys->i_framenum % MAX_FRAME_DELAY] = frame.pts;
  601.     frame.pts = p_sys->i_framenum * AV_TIME_BASE *
  602.         p_enc->fmt_in.video.i_frame_rate_base;
  603.     frame.pts += p_enc->fmt_in.video.i_frame_rate - 1;
  604.     frame.pts /= p_enc->fmt_in.video.i_frame_rate;
  605. #endif
  606.     /* End work-around */
  607.     i_out = avcodec_encode_video( p_sys->p_context, p_sys->p_buffer_out,
  608.                                   AVCODEC_MAX_VIDEO_FRAME_SIZE, &frame );
  609.     if( i_out > 0 )
  610.     {
  611.         block_t *p_block = block_New( p_enc, i_out );
  612.         memcpy( p_block->p_buffer, p_sys->p_buffer_out, i_out );
  613.         /* FIXME, 3-2 pulldown is not handled correctly */
  614.         p_block->i_length = I64C(1000000) *
  615.             p_enc->fmt_in.video.i_frame_rate_base /
  616.                 p_enc->fmt_in.video.i_frame_rate;
  617.         if( !p_sys->p_context->max_b_frames || !p_sys->p_context->delay )
  618.         {
  619.             /* No delay -> output pts == input pts */
  620.             p_block->i_pts = p_block->i_dts = p_pict->date;
  621.         }
  622.         else if( p_sys->p_context->coded_frame->pts != AV_NOPTS_VALUE &&
  623.             p_sys->p_context->coded_frame->pts != 0 &&
  624.             p_sys->i_buggy_pts_detect != p_sys->p_context->coded_frame->pts )
  625.         {
  626.             p_sys->i_buggy_pts_detect = p_sys->p_context->coded_frame->pts;
  627.             p_block->i_pts = p_sys->p_context->coded_frame->pts;
  628.             /* Ugly work-around for stupid libavcodec behaviour */
  629. #if LIBAVCODEC_BUILD >= 4722
  630.             {
  631.             int64_t i_framenum = p_block->i_pts *
  632.                 p_enc->fmt_in.video.i_frame_rate /
  633.                 p_enc->fmt_in.video.i_frame_rate_base / AV_TIME_BASE;
  634.             p_block->i_pts = p_sys->pi_delay_pts[i_framenum % MAX_FRAME_DELAY];
  635.             }
  636. #endif
  637.             /* End work-around */
  638.             if( p_sys->p_context->coded_frame->pict_type != FF_I_TYPE &&
  639.                 p_sys->p_context->coded_frame->pict_type != FF_P_TYPE )
  640.             {
  641.                 p_block->i_dts = p_block->i_pts;
  642.             }
  643.             else
  644.             {
  645.                 if( p_sys->i_last_ref_pts )
  646.                 {
  647.                     p_block->i_dts = p_sys->i_last_ref_pts;
  648.                 }
  649.                 else
  650.                 {
  651.                     /* Let's put something sensible */
  652.                     p_block->i_dts = p_block->i_pts;
  653.                 }
  654.                 p_sys->i_last_ref_pts = p_block->i_pts;
  655.             }
  656.         }
  657.         else
  658.         {
  659.             /* Buggy libavcodec which doesn't update coded_frame->pts
  660.              * correctly */
  661.             p_block->i_dts = p_block->i_pts = p_pict->date;
  662.         }
  663.         switch ( p_sys->p_context->coded_frame->pict_type )
  664.         {
  665.         case FF_I_TYPE:
  666.             p_block->i_flags |= BLOCK_FLAG_TYPE_I;
  667.             break;
  668.         case FF_P_TYPE:
  669.             p_block->i_flags |= BLOCK_FLAG_TYPE_P;
  670.             break;
  671.         case FF_B_TYPE:
  672.             p_block->i_flags |= BLOCK_FLAG_TYPE_B;
  673.             break;
  674.         }
  675.         return p_block;
  676.     }
  677.     return NULL;
  678. }
  679. /****************************************************************************
  680.  * EncodeAudio: the whole thing
  681.  ****************************************************************************/
  682. static block_t *EncodeAudio( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
  683. {
  684.     encoder_sys_t *p_sys = p_enc->p_sys;
  685.     block_t *p_block, *p_chain = NULL;
  686.     char *p_buffer = p_aout_buf->p_buffer;
  687.     int i_samples = p_aout_buf->i_nb_samples;
  688.     int i_samples_delay = p_sys->i_samples_delay;
  689.     p_sys->i_pts = p_aout_buf->start_date -
  690.                 (mtime_t)1000000 * (mtime_t)p_sys->i_samples_delay /
  691.                 (mtime_t)p_enc->fmt_in.audio.i_rate;
  692.     p_sys->i_samples_delay += i_samples;
  693.     while( p_sys->i_samples_delay >= p_sys->p_context->frame_size )
  694.     {
  695.         int16_t *p_samples;
  696.         int i_out;
  697.         if( i_samples_delay )
  698.         {
  699.             /* Take care of the left-over from last time */
  700.             int i_delay_size = i_samples_delay * 2 *
  701.                                  p_sys->p_context->channels;
  702.             int i_size = p_sys->i_frame_size - i_delay_size;
  703.             p_samples = (int16_t *)p_sys->p_buffer;
  704.             memcpy( p_sys->p_buffer + i_delay_size, p_buffer, i_size );
  705.             p_buffer -= i_delay_size;
  706.             i_samples += i_samples_delay;
  707.             i_samples_delay = 0;
  708.         }
  709.         else
  710.         {
  711.             p_samples = (int16_t *)p_buffer;
  712.         }
  713.         i_out = avcodec_encode_audio( p_sys->p_context, p_sys->p_buffer_out,
  714.                                       2 * AVCODEC_MAX_AUDIO_FRAME_SIZE,
  715.                                       p_samples );
  716. #if 0
  717.         msg_Warn( p_enc, "avcodec_encode_audio: %d", i_out );
  718. #endif
  719.         if( i_out < 0 ) break;
  720.         p_buffer += p_sys->i_frame_size;
  721.         p_sys->i_samples_delay -= p_sys->p_context->frame_size;
  722.         i_samples -= p_sys->p_context->frame_size;
  723.         if( i_out == 0 ) continue;
  724.         p_block = block_New( p_enc, i_out );
  725.         memcpy( p_block->p_buffer, p_sys->p_buffer_out, i_out );
  726.         p_block->i_length = (mtime_t)1000000 *
  727.             (mtime_t)p_sys->p_context->frame_size /
  728.             (mtime_t)p_sys->p_context->sample_rate;
  729.         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
  730.         /* Update pts */
  731.         p_sys->i_pts += p_block->i_length;
  732.         block_ChainAppend( &p_chain, p_block );
  733.     }
  734.     /* Backup the remaining raw samples */
  735.     if( i_samples )
  736.     {
  737.         memcpy( p_sys->p_buffer + i_samples_delay * 2 *
  738.                 p_sys->p_context->channels, p_buffer,
  739.                 i_samples * 2 * p_sys->p_context->channels );
  740.     }
  741.     return p_chain;
  742. }
  743. /*****************************************************************************
  744.  * CloseEncoder: ffmpeg encoder destruction
  745.  *****************************************************************************/
  746. void E_(CloseEncoder)( vlc_object_t *p_this )
  747. {
  748.     encoder_t *p_enc = (encoder_t *)p_this;
  749.     encoder_sys_t *p_sys = p_enc->p_sys;
  750. #if LIBAVCODEC_BUILD >= 4702
  751.     if ( p_sys->b_inited && p_enc->i_threads >= 1 )
  752.     {
  753.         int i;
  754.         struct thread_context_t ** pp_contexts =
  755.                 (struct thread_context_t **)p_sys->p_context->thread_opaque;
  756.         for ( i = 0; i < p_enc->i_threads; i++ )
  757.         {
  758.             pp_contexts[i]->b_die = 1;
  759.             vlc_cond_signal( &pp_contexts[i]->cond );
  760.             vlc_thread_join( pp_contexts[i] );
  761.             vlc_mutex_destroy( &pp_contexts[i]->lock );
  762.             vlc_cond_destroy( &pp_contexts[i]->cond );
  763.             vlc_object_destroy( pp_contexts[i] );
  764.         }
  765.         free( pp_contexts );
  766.     }
  767. #endif
  768.     avcodec_close( p_sys->p_context );
  769.     av_free( p_sys->p_context );
  770.     if( p_sys->p_buffer ) free( p_sys->p_buffer );
  771.     if( p_sys->p_buffer_out ) free( p_sys->p_buffer_out );
  772.     free( p_sys );
  773. }