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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * video.c: video decoder using the ffmpeg library
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2001 the VideoLAN team
  5.  * $Id: b606cffb6e7487484308c827a5e5b888e621eedc $
  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_codec.h>
  32. #include <vlc_vout.h>
  33. #include <vlc_codecs.h>                               /* BITMAPINFOHEADER */
  34. #include <vlc_avcodec.h>
  35. /* ffmpeg header */
  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. #include "avcodec.h"
  44. /*****************************************************************************
  45.  * decoder_sys_t : decoder descriptor
  46.  *****************************************************************************/
  47. struct decoder_sys_t
  48. {
  49.     FFMPEG_COMMON_MEMBERS
  50.     /* Video decoder specific part */
  51.     mtime_t input_pts;
  52.     mtime_t input_dts;
  53.     mtime_t i_pts;
  54.     AVFrame          *p_ff_pic;
  55.     /* for frame skipping algo */
  56.     bool b_hurry_up;
  57.     enum AVDiscard i_skip_frame;
  58.     enum AVDiscard i_skip_idct;
  59.     /* how many decoded frames are late */
  60.     int     i_late_frames;
  61.     mtime_t i_late_frames_start;
  62.     /* for direct rendering */
  63.     bool b_direct_rendering;
  64.     bool b_has_b_frames;
  65.     /* Hack to force display of still pictures */
  66.     bool b_first_frame;
  67.     int i_buffer_orig, i_buffer;
  68.     char *p_buffer_orig, *p_buffer;
  69.     /* */
  70.     AVPaletteControl palette;
  71.     /* */
  72.     bool b_flush;
  73. };
  74. /* FIXME (dummy palette for now) */
  75. static const AVPaletteControl palette_control;
  76. /*****************************************************************************
  77.  * Local prototypes
  78.  *****************************************************************************/
  79. static void ffmpeg_InitCodec      ( decoder_t * );
  80. static int  ffmpeg_OpenCodec      ( decoder_t * );
  81. static void ffmpeg_CopyPicture    ( decoder_t *, picture_t *, AVFrame * );
  82. static int  ffmpeg_GetFrameBuf    ( struct AVCodecContext *, AVFrame * );
  83. static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *, AVFrame * );
  84. static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *, AVFrame * );
  85. static void ffmpeg_NextPts( decoder_t * );
  86. static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
  87. {
  88.     uint8_t *p = (uint8_t*)&fcc;
  89.     return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
  90. }
  91. /*****************************************************************************
  92.  * Local Functions
  93.  *****************************************************************************/
  94. /* Returns a new picture buffer */
  95. static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
  96.                                             AVCodecContext *p_context )
  97. {
  98.     picture_t *p_pic;
  99.     p_dec->fmt_out.video.i_width = p_context->width;
  100.     p_dec->fmt_out.video.i_height = p_context->height;
  101.     if( !p_context->width || !p_context->height )
  102.     {
  103.         return NULL; /* invalid display size */
  104.     }
  105.     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
  106.     {
  107.         /* we are doomed, but not really, because most codecs set their pix_fmt much later */
  108.         p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
  109.     }
  110.     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
  111.     /* If an aspect-ratio was specified in the input format then force it */
  112.     if( p_dec->fmt_in.video.i_aspect )
  113.     {
  114.         p_dec->fmt_out.video.i_aspect = p_dec->fmt_in.video.i_aspect;
  115.     }
  116.     else
  117.     {
  118.         p_dec->fmt_out.video.i_aspect =
  119.             VOUT_ASPECT_FACTOR * ( av_q2d(p_context->sample_aspect_ratio) *
  120.                 p_context->width / p_context->height );
  121.         p_dec->fmt_out.video.i_sar_num = p_context->sample_aspect_ratio.num;
  122.         p_dec->fmt_out.video.i_sar_den = p_context->sample_aspect_ratio.den;
  123.         if( p_dec->fmt_out.video.i_aspect == 0 )
  124.         {
  125.             p_dec->fmt_out.video.i_aspect =
  126.                 VOUT_ASPECT_FACTOR * p_context->width / p_context->height;
  127.         }
  128.     }
  129.     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
  130.         p_dec->fmt_in.video.i_frame_rate_base > 0 )
  131.     {
  132.         p_dec->fmt_out.video.i_frame_rate =
  133.             p_dec->fmt_in.video.i_frame_rate;
  134.         p_dec->fmt_out.video.i_frame_rate_base =
  135.             p_dec->fmt_in.video.i_frame_rate_base;
  136.     }
  137.     else if( p_context->time_base.num > 0 && p_context->time_base.den > 0 )
  138.     {
  139.         p_dec->fmt_out.video.i_frame_rate = p_context->time_base.den;
  140.         p_dec->fmt_out.video.i_frame_rate_base = p_context->time_base.num;
  141.     }
  142.     p_pic = decoder_NewPicture( p_dec );
  143.     return p_pic;
  144. }
  145. /*****************************************************************************
  146.  * InitVideo: initialize the video decoder
  147.  *****************************************************************************
  148.  * the ffmpeg codec will be opened, some memory allocated. The vout is not yet
  149.  * opened (done after the first decoded frame).
  150.  *****************************************************************************/
  151. int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
  152.                       AVCodec *p_codec, int i_codec_id, const char *psz_namecodec )
  153. {
  154.     decoder_sys_t *p_sys;
  155.     vlc_value_t val;
  156.     /* Allocate the memory needed to store the decoder's structure */
  157.     if( ( p_dec->p_sys = p_sys = calloc( 1, sizeof(decoder_sys_t) ) ) == NULL )
  158.         return VLC_ENOMEM;
  159.     p_sys->p_context = p_context;
  160.     p_sys->p_codec = p_codec;
  161.     p_sys->i_codec_id = i_codec_id;
  162.     p_sys->psz_namecodec = psz_namecodec;
  163.     p_sys->p_ff_pic = avcodec_alloc_frame();
  164.     p_sys->b_delayed_open = true;
  165.     /* ***** Fill p_context with init values ***** */
  166.     p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_codec );
  167.     /*  ***** Get configuration of ffmpeg plugin ***** */
  168.     p_sys->p_context->workaround_bugs =
  169.         config_GetInt( p_dec, "ffmpeg-workaround-bugs" );
  170. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  171.     p_sys->p_context->error_resilience =
  172.         config_GetInt( p_dec, "ffmpeg-error-resilience" );
  173. #else
  174.     p_sys->p_context->error_recognition =
  175.         config_GetInt( p_dec, "ffmpeg-error-resilience" );
  176. #endif
  177.     var_Create( p_dec, "grayscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  178.     var_Get( p_dec, "grayscale", &val );
  179.     if( val.b_bool ) p_sys->p_context->flags |= CODEC_FLAG_GRAY;
  180.     var_Create( p_dec, "ffmpeg-vismv", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  181.     var_Get( p_dec, "ffmpeg-vismv", &val );
  182.     if( val.i_int ) p_sys->p_context->debug_mv = val.i_int;
  183.     var_Create( p_dec, "ffmpeg-lowres", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  184.     var_Get( p_dec, "ffmpeg-lowres", &val );
  185.     if( val.i_int > 0 && val.i_int <= 2 ) p_sys->p_context->lowres = val.i_int;
  186.     var_Create( p_dec, "ffmpeg-skiploopfilter",
  187.                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  188.     var_Get( p_dec, "ffmpeg-skiploopfilter", &val );
  189.     if( val.i_int > 0 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONREF;
  190.     if( val.i_int > 1 ) p_sys->p_context->skip_loop_filter = AVDISCARD_BIDIR;
  191.     if( val.i_int > 2 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONKEY;
  192.     if( val.i_int > 3 ) p_sys->p_context->skip_loop_filter = AVDISCARD_ALL;
  193.     bool b_fast = var_CreateGetBool( p_dec, "ffmpeg-fast" );
  194.     if( b_fast ) p_sys->p_context->flags2 |= CODEC_FLAG2_FAST;
  195.     /* ***** ffmpeg frame skipping ***** */
  196.     var_Create( p_dec, "ffmpeg-hurry-up", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  197.     var_Get( p_dec, "ffmpeg-hurry-up", &val );
  198.     p_sys->b_hurry_up = val.b_bool;
  199.     var_Create( p_dec, "ffmpeg-skip-frame", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  200.     var_Get( p_dec, "ffmpeg-skip-frame", &val );
  201.     switch( val.i_int )
  202.     {
  203.         case -1:
  204.             p_sys->p_context->skip_frame = AVDISCARD_NONE;
  205.             break;
  206.         case 0:
  207.             p_sys->p_context->skip_frame = AVDISCARD_DEFAULT;
  208.             break;
  209.         case 1:
  210.             p_sys->p_context->skip_frame = AVDISCARD_BIDIR;
  211.             break;
  212.         case 2:
  213.             p_sys->p_context->skip_frame = AVDISCARD_NONKEY;
  214.             break;
  215.         case 3:
  216.             p_sys->p_context->skip_frame = AVDISCARD_ALL;
  217.             break;
  218.         default:
  219.             p_sys->p_context->skip_frame = AVDISCARD_NONE;
  220.             break;
  221.     }
  222.     p_sys->i_skip_frame = p_sys->p_context->skip_frame;
  223.     var_Create( p_dec, "ffmpeg-skip-idct",  VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  224.     var_Get( p_dec, "ffmpeg-skip-idct", &val );
  225.     switch( val.i_int )
  226.     {
  227.         case -1:
  228.             p_sys->p_context->skip_idct = AVDISCARD_NONE;
  229.             break;
  230.         case 0:
  231.             p_sys->p_context->skip_idct = AVDISCARD_DEFAULT;
  232.             break;
  233.         case 1:
  234.             p_sys->p_context->skip_idct = AVDISCARD_BIDIR;
  235.             break;
  236.         case 2:
  237.             p_sys->p_context->skip_idct = AVDISCARD_NONKEY;
  238.             break;
  239.         case 3:
  240.             p_sys->p_context->skip_idct = AVDISCARD_ALL;
  241.             break;
  242.         default:
  243.             p_sys->p_context->skip_idct = AVDISCARD_NONE;
  244.             break;
  245.     }
  246.     p_sys->i_skip_idct = p_sys->p_context->skip_idct;
  247.     /* ***** ffmpeg direct rendering ***** */
  248.     p_sys->b_direct_rendering = false;
  249.     var_Create( p_dec, "ffmpeg-dr", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  250.     var_Get( p_dec, "ffmpeg-dr", &val );
  251.     if( val.b_bool && (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
  252.         /* Apparently direct rendering doesn't work with YUV422P */
  253.         p_sys->p_context->pix_fmt != PIX_FMT_YUV422P &&
  254.         /* H264 uses too many reference frames */
  255.         p_sys->i_codec_id != CODEC_ID_H264 &&
  256.         /* No idea why ... but this fixes flickering on some TSCC streams */
  257.         p_sys->i_codec_id != CODEC_ID_TSCC &&
  258.         !p_sys->p_context->debug_mv )
  259.     {
  260.         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
  261.          * so we need to do another check in ffmpeg_GetFrameBuf() */
  262.         p_sys->b_direct_rendering = true;
  263.     }
  264.     /* ffmpeg doesn't properly release old pictures when frames are skipped */
  265.     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = false;
  266.     if( p_sys->b_direct_rendering )
  267.     {
  268.         msg_Dbg( p_dec, "using direct rendering" );
  269.         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
  270.     }
  271.     /* Always use our get_buffer wrapper so we can calculate the
  272.      * PTS correctly */
  273.     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
  274.     p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf;
  275.     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
  276.     p_sys->p_context->opaque = p_dec;
  277.     /* ***** misc init ***** */
  278.     p_sys->input_pts = p_sys->input_dts = 0;
  279.     p_sys->i_pts = 0;
  280.     p_sys->b_has_b_frames = false;
  281.     p_sys->b_first_frame = true;
  282.     p_sys->b_flush = false;
  283.     p_sys->i_late_frames = 0;
  284.     p_sys->i_buffer = 0;
  285.     p_sys->i_buffer_orig = 1;
  286.     p_sys->p_buffer_orig = p_sys->p_buffer = malloc( p_sys->i_buffer_orig );
  287.     if( !p_sys->p_buffer_orig )
  288.     {
  289.         av_free( p_sys->p_ff_pic );
  290.         free( p_sys );
  291.         return VLC_ENOMEM;
  292.     }
  293.     /* Set output properties */
  294.     p_dec->fmt_out.i_cat = VIDEO_ES;
  295.     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
  296.     {
  297.         /* we are doomed. but not really, because most codecs set their pix_fmt later on */
  298.         p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
  299.     }
  300.     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
  301.     /* Setup palette */
  302.     memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
  303.     if( p_dec->fmt_in.video.p_palette )
  304.     {
  305.         p_sys->palette.palette_changed = 1;
  306.         for( int i = 0; i < __MIN( AVPALETTE_COUNT, p_dec->fmt_in.video.p_palette->i_entries ); i++ )
  307.         {
  308.             union {
  309.                 uint32_t u;
  310.                 uint8_t a[4];
  311.             } c;
  312.             c.a[0] = p_dec->fmt_in.video.p_palette->palette[i][0];
  313.             c.a[1] = p_dec->fmt_in.video.p_palette->palette[i][1];
  314.             c.a[2] = p_dec->fmt_in.video.p_palette->palette[i][2];
  315.             c.a[3] = p_dec->fmt_in.video.p_palette->palette[i][3];
  316.             p_sys->palette.palette[i] = c.u;
  317.         }
  318.         p_sys->p_context->palctrl = &p_sys->palette;
  319.         p_dec->fmt_out.video.p_palette = malloc( sizeof(video_palette_t) );
  320.         if( p_dec->fmt_out.video.p_palette )
  321.             *p_dec->fmt_out.video.p_palette = *p_dec->fmt_in.video.p_palette;
  322.     }
  323.     else if( p_sys->i_codec_id != CODEC_ID_MSVIDEO1 && p_sys->i_codec_id != CODEC_ID_CINEPAK )
  324.     {
  325.         p_sys->p_context->palctrl = &p_sys->palette;
  326.     }
  327.     /* ***** init this codec with special data ***** */
  328.     ffmpeg_InitCodec( p_dec );
  329.     /* ***** Open the codec ***** */
  330.     if( ffmpeg_OpenCodec( p_dec ) < 0 )
  331.     {
  332.         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
  333.         av_free( p_sys->p_ff_pic );
  334.         free( p_sys->p_buffer_orig );
  335.         free( p_sys );
  336.         return VLC_EGENERIC;
  337.     }
  338.     return VLC_SUCCESS;
  339. }
  340. /*****************************************************************************
  341.  * DecodeVideo: Called to decode one or more frames
  342.  *****************************************************************************/
  343. picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
  344. {
  345.     decoder_sys_t *p_sys = p_dec->p_sys;
  346.     int b_drawpicture;
  347.     int b_null_size = false;
  348.     block_t *p_block;
  349.     if( !pp_block || !*pp_block )
  350.         return NULL;
  351.     if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra )
  352.     {
  353.         ffmpeg_InitCodec( p_dec );
  354.         if( p_sys->b_delayed_open )
  355.         {
  356.             if( ffmpeg_OpenCodec( p_dec ) )
  357.                 msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
  358.         }
  359.     }
  360.     p_block = *pp_block;
  361.     if( p_sys->b_delayed_open )
  362.     {
  363.         block_Release( p_block );
  364.         return NULL;
  365.     }
  366.     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
  367.     {
  368.         p_sys->i_buffer = 0;
  369.         p_sys->i_pts = 0; /* To make sure we recover properly */
  370.         p_sys->input_pts = p_sys->input_dts = 0;
  371.         p_sys->i_late_frames = 0;
  372.         block_Release( p_block );
  373.         //if( p_block->i_flags & BLOCK_FLAG_CORRUPTED )
  374.             //avcodec_flush_buffers( p_sys->p_context );
  375.         return NULL;
  376.     }
  377.     if( p_block->i_flags & BLOCK_FLAG_PREROLL )
  378.     {
  379.         /* Do not care about late frames when prerolling
  380.          * TODO avoid decoding of non reference frame
  381.          * (ie all B except for H264 where it depends only on nal_ref_idc) */
  382.         p_sys->i_late_frames = 0;
  383.     }
  384.     if( !p_dec->b_pace_control && (p_sys->i_late_frames > 0) &&
  385.         (mdate() - p_sys->i_late_frames_start > INT64_C(5000000)) )
  386.     {
  387.         if( p_sys->i_pts )
  388.         {
  389.             msg_Err( p_dec, "more than 5 seconds of late video -> "
  390.                      "dropping frame (computer too slow ?)" );
  391.             p_sys->i_pts = 0; /* To make sure we recover properly */
  392.         }
  393.         block_Release( p_block );
  394.         p_sys->i_late_frames--;
  395.         return NULL;
  396.     }
  397.     if( p_block->i_pts > 0 || p_block->i_dts > 0 )
  398.     {
  399.         p_sys->input_pts = p_block->i_pts;
  400.         p_sys->input_dts = p_block->i_dts;
  401.         /* Make sure we don't reuse the same timestamps twice */
  402.         p_block->i_pts = p_block->i_dts = 0;
  403.     }
  404.     /* A good idea could be to decode all I pictures and see for the other */
  405.     if( !p_dec->b_pace_control &&
  406.         p_sys->b_hurry_up &&
  407.         (p_sys->i_late_frames > 4) )
  408.     {
  409.         b_drawpicture = 0;
  410.         if( p_sys->i_late_frames < 12 )
  411.         {
  412.             p_sys->p_context->skip_frame =
  413.                     (p_sys->i_skip_frame <= AVDISCARD_BIDIR) ?
  414.                     AVDISCARD_BIDIR : p_sys->i_skip_frame;
  415.         }
  416.         else
  417.         {
  418.             /* picture too late, won't decode
  419.              * but break picture until a new I, and for mpeg4 ...*/
  420.             p_sys->i_late_frames--; /* needed else it will never be decrease */
  421.             block_Release( p_block );
  422.             p_sys->i_buffer = 0;
  423.             return NULL;
  424.         }
  425.     }
  426.     else
  427.     {
  428.         if( p_sys->b_hurry_up )
  429.             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
  430.         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
  431.             b_drawpicture = 1;
  432.         else
  433.             b_drawpicture = 0;
  434.     }
  435.     if( p_sys->p_context->width <= 0 || p_sys->p_context->height <= 0 )
  436.     {
  437.         if( p_sys->b_hurry_up )
  438.             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
  439.         b_null_size = true;
  440.     }
  441.     else if( !b_drawpicture )
  442.     {
  443.         /* It creates broken picture
  444.          * FIXME either our parser or ffmpeg is broken */
  445. #if 0
  446.         if( p_sys->b_hurry_up )
  447.             p_sys->p_context->skip_frame = __MAX( p_sys->p_context->skip_frame,
  448.                                                   AVDISCARD_NONREF );
  449. #endif
  450.     }
  451.     /*
  452.      * Do the actual decoding now
  453.      */
  454.     /* Don't forget that ffmpeg requires a little more bytes
  455.      * that the real frame size */
  456.     if( p_block->i_buffer > 0 )
  457.     {
  458.         p_sys->b_flush = ( p_block->i_flags & BLOCK_FLAG_END_OF_SEQUENCE ) != 0;
  459.         p_sys->i_buffer = p_block->i_buffer;
  460.         if( p_sys->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE >
  461.             p_sys->i_buffer_orig )
  462.         {
  463.             free( p_sys->p_buffer_orig );
  464.             p_sys->i_buffer_orig =
  465.                 p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE;
  466.             p_sys->p_buffer_orig = malloc( p_sys->i_buffer_orig );
  467.         }
  468.         p_sys->p_buffer = p_sys->p_buffer_orig;
  469.         p_sys->i_buffer = p_block->i_buffer;
  470.         if( !p_sys->p_buffer )
  471.         {
  472.             block_Release( p_block );
  473.             return NULL;
  474.         }
  475.         vlc_memcpy( p_sys->p_buffer, p_block->p_buffer, p_block->i_buffer );
  476.         memset( p_sys->p_buffer + p_block->i_buffer, 0,
  477.                 FF_INPUT_BUFFER_PADDING_SIZE );
  478.         p_block->i_buffer = 0;
  479.     }
  480.     while( p_sys->i_buffer > 0 || p_sys->b_flush )
  481.     {
  482.         int i_used, b_gotpicture;
  483.         picture_t *p_pic;
  484.         i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
  485.                                        &b_gotpicture,
  486.                                        p_sys->i_buffer <= 0 && p_sys->b_flush ? NULL : (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
  487.         if( b_null_size && p_sys->p_context->width > 0 &&
  488.             p_sys->p_context->height > 0 &&
  489.             !p_sys->b_flush )
  490.         {
  491.             /* Reparse it to not drop the I frame */
  492.             b_null_size = false;
  493.             if( p_sys->b_hurry_up )
  494.                 p_sys->p_context->skip_frame = p_sys->i_skip_frame;
  495.             i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
  496.                                            &b_gotpicture,
  497.                                            (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
  498.         }
  499.         if( p_sys->b_flush )
  500.             p_sys->b_first_frame = true;
  501.         if( p_sys->i_buffer <= 0 )
  502.             p_sys->b_flush = false;
  503.         if( i_used < 0 )
  504.         {
  505.             if( b_drawpicture )
  506.                 msg_Warn( p_dec, "cannot decode one frame (%d bytes)",
  507.                           p_sys->i_buffer );
  508.             block_Release( p_block );
  509.             return NULL;
  510.         }
  511.         else if( i_used > p_sys->i_buffer )
  512.         {
  513.             i_used = p_sys->i_buffer;
  514.         }
  515.         /* Consumed bytes */
  516.         p_sys->i_buffer -= i_used;
  517.         p_sys->p_buffer += i_used;
  518.         /* Nothing to display */
  519.         if( !b_gotpicture )
  520.         {
  521.             if( i_used == 0 ) break;
  522.             continue;
  523.         }
  524.         /* Set the PTS */
  525.         if( p_sys->p_ff_pic->pts )
  526.             p_sys->i_pts = p_sys->p_ff_pic->pts;
  527.         /* Update frame late count (except when doing preroll) */
  528.         mtime_t i_display_date = 0;
  529.         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
  530.             i_display_date = decoder_GetDisplayDate( p_dec, p_sys->i_pts );
  531.         if( i_display_date > 0 && i_display_date <= mdate() )
  532.         {
  533.             p_sys->i_late_frames++;
  534.             if( p_sys->i_late_frames == 1 )
  535.                 p_sys->i_late_frames_start = mdate();
  536.         }
  537.         else
  538.         {
  539.             p_sys->i_late_frames = 0;
  540.         }
  541.         if( !b_drawpicture || !p_sys->p_ff_pic->linesize[0] )
  542.         {
  543.             /* Do not display the picture */
  544.             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
  545.             if( !b_drawpicture && p_pic )
  546.                 decoder_DeletePicture( p_dec, p_pic );
  547.             ffmpeg_NextPts( p_dec );
  548.             continue;
  549.         }
  550.         if( !p_sys->p_ff_pic->opaque )
  551.         {
  552.             /* Get a new picture */
  553.             p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
  554.             if( !p_pic )
  555.             {
  556.                 block_Release( p_block );
  557.                 return NULL;
  558.             }
  559.             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
  560.              * if needed */
  561.             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
  562.         }
  563.         else
  564.         {
  565.             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
  566.         }
  567.         /* Sanity check (seems to be needed for some streams) */
  568.         if( p_sys->p_ff_pic->pict_type == FF_B_TYPE )
  569.         {
  570.             p_sys->b_has_b_frames = true;
  571.         }
  572.         if( !p_dec->fmt_in.video.i_aspect )
  573.         {
  574.             /* Fetch again the aspect ratio in case it changed */
  575.             p_dec->fmt_out.video.i_aspect =
  576.                 VOUT_ASPECT_FACTOR
  577.                     * ( av_q2d(p_sys->p_context->sample_aspect_ratio)
  578.                     * p_sys->p_context->width / p_sys->p_context->height );
  579.             p_dec->fmt_out.video.i_sar_num
  580.                 = p_sys->p_context->sample_aspect_ratio.num;
  581.             p_dec->fmt_out.video.i_sar_den
  582.                 = p_sys->p_context->sample_aspect_ratio.den;
  583.             if( p_dec->fmt_out.video.i_aspect == 0 )
  584.             {
  585.                 p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR
  586.                     * p_sys->p_context->width / p_sys->p_context->height;
  587.             }
  588.         }
  589.         /* Send decoded frame to vout */
  590.         if( p_sys->i_pts )
  591.         {
  592.             p_pic->date = p_sys->i_pts;
  593.             ffmpeg_NextPts( p_dec );
  594.             if( p_sys->b_first_frame )
  595.             {
  596.                 /* Hack to force display of still pictures */
  597.                 p_sys->b_first_frame = false;
  598.                 p_pic->b_force = true;
  599.             }
  600.             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
  601.             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
  602.             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
  603.             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
  604.             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
  605.             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
  606.             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
  607.                     p_pic->i_qstride * i_mb_h );
  608.             switch( p_sys->p_ff_pic->qscale_type )
  609.             {
  610.                 case FF_QSCALE_TYPE_MPEG1:
  611.                     p_pic->i_qtype = QTYPE_MPEG1;
  612.                     break;
  613.                 case FF_QSCALE_TYPE_MPEG2:
  614.                     p_pic->i_qtype = QTYPE_MPEG2;
  615.                     break;
  616.                 case FF_QSCALE_TYPE_H264:
  617.                     p_pic->i_qtype = QTYPE_H264;
  618.                     break;
  619.             }
  620.             return p_pic;
  621.         }
  622.         else
  623.         {
  624.             decoder_DeletePicture( p_dec, p_pic );
  625.         }
  626.     }
  627.     block_Release( p_block );
  628.     return NULL;
  629. }
  630. /*****************************************************************************
  631.  * EndVideo: decoder destruction
  632.  *****************************************************************************
  633.  * This function is called when the thread ends after a successful
  634.  * initialization.
  635.  *****************************************************************************/
  636. void EndVideoDec( decoder_t *p_dec )
  637. {
  638.     decoder_sys_t *p_sys = p_dec->p_sys;
  639.     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
  640.     free( p_sys->p_buffer_orig );
  641. }
  642. /*****************************************************************************
  643.  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
  644.  *****************************************************************************/
  645. static void ffmpeg_InitCodec( decoder_t *p_dec )
  646. {
  647.     decoder_sys_t *p_sys = p_dec->p_sys;
  648.     int i_size = p_dec->fmt_in.i_extra;
  649.     if( !i_size ) return;
  650.     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
  651.     {
  652.         uint8_t *p;
  653.         p_sys->p_context->extradata_size = i_size + 12;
  654.         p = p_sys->p_context->extradata  =
  655.             malloc( p_sys->p_context->extradata_size );
  656.         if( !p )
  657.             return;
  658.         memcpy( &p[0],  "SVQ3", 4 );
  659.         memset( &p[4], 0, 8 );
  660.         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
  661.         /* Now remove all atoms before the SMI one */
  662.         if( p_sys->p_context->extradata_size > 0x5a &&
  663.             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
  664.         {
  665.             uint8_t *psz = &p[0x52];
  666.             while( psz < &p[p_sys->p_context->extradata_size - 8] )
  667.             {
  668.                 int i_size = GetDWBE( psz );
  669.                 if( i_size <= 1 )
  670.                 {
  671.                     /* FIXME handle 1 as long size */
  672.                     break;
  673.                 }
  674.                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
  675.                 {
  676.                     memmove( &p[0x52], psz,
  677.                              &p[p_sys->p_context->extradata_size] - psz );
  678.                     break;
  679.                 }
  680.                 psz += i_size;
  681.             }
  682.         }
  683.     }
  684.     else
  685.     {
  686.         p_sys->p_context->extradata_size = i_size;
  687.         p_sys->p_context->extradata =
  688.             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
  689.         if( p_sys->p_context->extradata )
  690.         {
  691.             memcpy( p_sys->p_context->extradata,
  692.                     p_dec->fmt_in.p_extra, i_size );
  693.             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
  694.                     0, FF_INPUT_BUFFER_PADDING_SIZE );
  695.         }
  696.     }
  697. }
  698. /*****************************************************************************
  699.  * ffmpeg_OpenCodec:
  700.  *****************************************************************************/
  701. static int ffmpeg_OpenCodec( decoder_t *p_dec )
  702. {
  703.     decoder_sys_t *p_sys = p_dec->p_sys;
  704.     if( p_sys->p_context->extradata_size <= 0 )
  705.     {
  706.         if( p_sys->i_codec_id == CODEC_ID_VC1 ||
  707.             p_sys->i_codec_id == CODEC_ID_VORBIS ||
  708.             p_sys->i_codec_id == CODEC_ID_THEORA )
  709.         {
  710.             msg_Warn( p_dec, "waiting for extra data for codec %s",
  711.                       p_sys->psz_namecodec );
  712.             return 1;
  713.         }
  714.     }
  715.     p_sys->p_context->width  = p_dec->fmt_in.video.i_width;
  716.     p_sys->p_context->height = p_dec->fmt_in.video.i_height;
  717. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  718.     p_sys->p_context->bits_per_sample = p_dec->fmt_in.video.i_bits_per_pixel;
  719. #else
  720.     p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.video.i_bits_per_pixel;
  721. #endif
  722.     int ret;
  723.     vlc_avcodec_lock();
  724.     ret = avcodec_open( p_sys->p_context, p_sys->p_codec );
  725.     vlc_avcodec_unlock();
  726.     if( ret < 0 )
  727.         return VLC_EGENERIC;
  728.     msg_Dbg( p_dec, "ffmpeg codec (%s) started", p_sys->psz_namecodec );
  729.     p_sys->b_delayed_open = false;
  730.     return VLC_SUCCESS;
  731. }
  732. /*****************************************************************************
  733.  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
  734.  *                     picture_t structure (when not in direct rendering mode).
  735.  *****************************************************************************/
  736. static void ffmpeg_CopyPicture( decoder_t *p_dec,
  737.                                 picture_t *p_pic, AVFrame *p_ff_pic )
  738. {
  739.     decoder_sys_t *p_sys = p_dec->p_sys;
  740.     if( TestFfmpegChroma( p_sys->p_context->pix_fmt, -1 ) == VLC_SUCCESS )
  741.     {
  742.         int i_plane, i_size, i_line;
  743.         uint8_t *p_dst, *p_src;
  744.         int i_src_stride, i_dst_stride;
  745.         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
  746.         {
  747.             p_src  = p_ff_pic->data[i_plane];
  748.             p_dst = p_pic->p[i_plane].p_pixels;
  749.             i_src_stride = p_ff_pic->linesize[i_plane];
  750.             i_dst_stride = p_pic->p[i_plane].i_pitch;
  751.             i_size = __MIN( i_src_stride, i_dst_stride );
  752.             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
  753.                  i_line++ )
  754.             {
  755.                 vlc_memcpy( p_dst, p_src, i_size );
  756.                 p_src += i_src_stride;
  757.                 p_dst += i_dst_stride;
  758.             }
  759.         }
  760.     }
  761.     else
  762.     {
  763.         msg_Err( p_dec, "don't know how to convert chroma %i",
  764.                  p_sys->p_context->pix_fmt );
  765.         p_dec->b_error = 1;
  766.     }
  767. }
  768. /*****************************************************************************
  769.  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
  770.  *****************************************************************************
  771.  * It is used for direct rendering as well as to get the right PTS for each
  772.  * decoded picture (even in indirect rendering mode).
  773.  *****************************************************************************/
  774. static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic );
  775. static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
  776.                                AVFrame *p_ff_pic )
  777. {
  778.     decoder_t *p_dec = (decoder_t *)p_context->opaque;
  779.     decoder_sys_t *p_sys = p_dec->p_sys;
  780.     picture_t *p_pic;
  781.     /* Set picture PTS */
  782.     ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
  783.     /* */
  784.     p_ff_pic->opaque = 0;
  785.     /* Not much to do in indirect rendering mode */
  786.     if( !p_sys->b_direct_rendering )
  787.     {
  788.         return avcodec_default_get_buffer( p_context, p_ff_pic );
  789.     }
  790.     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
  791.      * so we need to check for direct rendering again. */
  792.     int i_width = p_sys->p_context->width;
  793.     int i_height = p_sys->p_context->height;
  794.     avcodec_align_dimensions( p_sys->p_context, &i_width, &i_height );
  795.     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
  796.         p_sys->p_context->width % 16 || p_sys->p_context->height % 16 ||
  797.         /* We only pad picture up to 16 */
  798.         PAD(p_sys->p_context->width,16) < i_width || PAD(p_sys->p_context->height,16) < i_height ||
  799.         p_context->pix_fmt == PIX_FMT_PAL8 )
  800.         return avcodec_default_get_buffer( p_context, p_ff_pic );
  801.     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
  802.     /* Get a new picture */
  803.     //p_sys->p_vout->render.b_allow_modify_pics = 0;
  804.     p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
  805.     if( !p_pic )
  806.         return avcodec_default_get_buffer( p_context, p_ff_pic );
  807.     p_sys->p_context->draw_horiz_band = NULL;
  808.     p_ff_pic->opaque = (void*)p_pic;
  809.     p_ff_pic->type = FF_BUFFER_TYPE_USER;
  810.     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
  811.     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
  812.     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
  813.     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
  814.     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
  815.     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
  816.     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
  817.     p_ff_pic->linesize[3] = 0;
  818.     decoder_LinkPicture( p_dec, p_pic );
  819.     /* FIXME what is that, should give good value */
  820.     p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
  821.     return 0;
  822. }
  823. static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
  824. {
  825.     decoder_t *p_dec = (decoder_t *)p_context->opaque;
  826.     int i_ret;
  827.     /* */
  828.     p_ff_pic->pts = AV_NOPTS_VALUE;
  829.     /* We always use default reget function, it works perfectly fine */
  830.     i_ret = avcodec_default_reget_buffer( p_context, p_ff_pic );
  831.     /* Set picture PTS if avcodec_default_reget_buffer didn't set it (through a
  832.      * ffmpeg_GetFrameBuf call) */
  833.     if( !i_ret && p_ff_pic->pts == AV_NOPTS_VALUE )
  834.         ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
  835.     return i_ret;
  836. }
  837. static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic )
  838. {
  839.     decoder_sys_t *p_sys = p_dec->p_sys;
  840.     /* Set picture PTS */
  841.     if( p_sys->input_pts )
  842.     {
  843.         p_ff_pic->pts = p_sys->input_pts;
  844.     }
  845.     else if( p_sys->input_dts )
  846.     {
  847.         /* Some demuxers only set the dts so let's try to find a useful
  848.          * timestamp from this */
  849.         if( !p_sys->p_context->has_b_frames || !p_sys->b_has_b_frames ||
  850.             !p_ff_pic->reference || !p_sys->i_pts )
  851.         {
  852.             p_ff_pic->pts = p_sys->input_dts;
  853.         }
  854.         else
  855.         {
  856.             p_ff_pic->pts = 0;
  857.         }
  858.     }
  859.     else
  860.     {
  861.         p_ff_pic->pts = 0;
  862.     }
  863.     if( p_sys->i_pts ) /* make sure 1st frame has a pts > 0 */
  864.     {
  865.         p_sys->input_pts = p_sys->input_dts = 0;
  866.     }
  867. }
  868. static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
  869.                                     AVFrame *p_ff_pic )
  870. {
  871.     decoder_t *p_dec = (decoder_t *)p_context->opaque;
  872.     if( !p_ff_pic->opaque )
  873.     {
  874.         avcodec_default_release_buffer( p_context, p_ff_pic );
  875.         return;
  876.     }
  877.     picture_t *p_pic = (picture_t*)p_ff_pic->opaque;
  878.     decoder_UnlinkPicture( p_dec, p_pic );
  879.     p_ff_pic->data[0] = NULL;
  880.     p_ff_pic->data[1] = NULL;
  881.     p_ff_pic->data[2] = NULL;
  882.     p_ff_pic->data[3] = NULL;
  883. }
  884. static void ffmpeg_NextPts( decoder_t *p_dec )
  885. {
  886.     decoder_sys_t *p_sys = p_dec->p_sys;
  887.     if( p_sys->i_pts <= 0 )
  888.         return;
  889.     /* interpolate the next PTS */
  890.     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
  891.         p_dec->fmt_in.video.i_frame_rate_base > 0 )
  892.     {
  893.         p_sys->i_pts += INT64_C(1000000) *
  894.             (2 + p_sys->p_ff_pic->repeat_pict) *
  895.             p_dec->fmt_in.video.i_frame_rate_base /
  896.             (2 * p_dec->fmt_in.video.i_frame_rate);
  897.     }
  898.     else if( p_sys->p_context->time_base.den > 0 )
  899.     {
  900. #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52,20,0)
  901.         int i_tick = p_sys->p_context->ticks_per_frame;
  902.         if( i_tick <= 0 )
  903.             i_tick = 1;
  904. #else
  905.         int i_tick = 1;
  906. #endif
  907.         p_sys->i_pts += INT64_C(1000000) *
  908.             (2 + p_sys->p_ff_pic->repeat_pict) *
  909.             i_tick * p_sys->p_context->time_base.num /
  910.             (2 * p_sys->p_context->time_base.den);
  911.     }
  912. }