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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * decoder.c: stats decoder plugin for vlc.
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2008 the VideoLAN team
  5.  *
  6.  * Authors: Samuel Hocevar <sam@zoy.org>
  7.  *          Pierre d'Herbemont <pdherbemont@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_codec.h>
  31. #include <vlc_vout.h>
  32. #include "stats.h"
  33. /*****************************************************************************
  34.  * Local prototypes
  35.  *****************************************************************************/
  36. static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block );
  37. /*****************************************************************************
  38.  * OpenDecoder: Open the decoder
  39.  *****************************************************************************/
  40. int OpenDecoder ( vlc_object_t *p_this )
  41. {
  42.     decoder_t *p_dec = (decoder_t*)p_this;
  43.     msg_Dbg( p_this, "opening stats decoder" );
  44.     /* Set callbacks */
  45.     p_dec->pf_decode_video = DecodeBlock;
  46.     p_dec->pf_decode_audio = NULL;
  47.     p_dec->pf_decode_sub = NULL;
  48.     /* */
  49.     es_format_Init( &p_dec->fmt_out, VIDEO_ES, VLC_FOURCC('I','4','2','0') );
  50.     p_dec->fmt_out.video.i_width = 100;
  51.     p_dec->fmt_out.video.i_height = 100;
  52.     p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR;
  53.     return VLC_SUCCESS;
  54. }
  55. /****************************************************************************
  56.  * RunDecoder: the whole thing
  57.  ****************************************************************************/
  58. static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  59. {
  60.     block_t *p_block;
  61.     picture_t * p_pic = NULL;
  62.     if( !pp_block || !*pp_block ) return NULL;
  63.     p_block = *pp_block;
  64.     p_pic = decoder_NewPicture( p_dec );
  65.     if( p_block->i_buffer == kBufferSize )
  66.     {
  67.         msg_Dbg( p_dec, "got %"PRIu64" ms",
  68.                  *(mtime_t *)p_block->p_buffer  / 1000 );
  69.         msg_Dbg( p_dec, "got %"PRIu64" ms offset",
  70.                  (mdate() - *(mtime_t *)p_block->p_buffer) / 1000 );
  71.         *(mtime_t *)(p_pic->p->p_pixels) = *(mtime_t *)p_block->p_buffer;
  72.     }
  73.     else
  74.     {
  75.         msg_Dbg( p_dec, "got a packet not from stats demuxer" );
  76.         *(mtime_t *)(p_pic->p->p_pixels) = mdate();
  77.     }
  78.     p_pic->date = p_block->i_pts ? p_block->i_pts : p_block->i_dts;
  79.     p_pic->b_force = true;
  80.     block_Release( p_block );
  81.     *pp_block = NULL;
  82.     return p_pic;
  83. }
  84. /*****************************************************************************
  85.  * CloseDecoder: decoder destruction
  86.  *****************************************************************************/
  87. void CloseDecoder ( vlc_object_t *p_this )
  88. {
  89.     msg_Dbg( p_this, "closing stats decoder" );
  90. }