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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_codec.h: codec related structures
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2003 VideoLAN
  5.  * $Id: vlc_codec.h 8531 2004-08-26 21:27:06Z gbazin $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _VLC_CODEC_H
  24. #define _VLC_CODEC_H 1
  25. /**
  26.  * file
  27.  * This file defines the structure and types used by decoders and encoders
  28.  */
  29. typedef struct decoder_owner_sys_t decoder_owner_sys_t;
  30. /**
  31.  * defgroup decoder Decoder
  32.  *
  33.  * The structure describing a decoder
  34.  *
  35.  * @{
  36.  */
  37. struct decoder_t
  38. {
  39.     VLC_COMMON_MEMBERS
  40.     /* Module properties */
  41.     module_t *          p_module;
  42.     decoder_sys_t *     p_sys;
  43.     /* Input format ie from demuxer (XXX: a lot of field could be invalid) */
  44.     es_format_t         fmt_in;
  45.     /* Output format of decoder/packetizer */
  46.     es_format_t         fmt_out;
  47.     /* Some decoders only accept packetized data (ie. not truncated) */
  48.     vlc_bool_t          b_need_packetized;
  49.     /* Tell the decoder if it is allowed to drop frames */
  50.     vlc_bool_t          b_pace_control;
  51.     picture_t *         ( * pf_decode_video )( decoder_t *, block_t ** );
  52.     aout_buffer_t *     ( * pf_decode_audio )( decoder_t *, block_t ** );
  53.     subpicture_t *      ( * pf_decode_sub)   ( decoder_t *, block_t ** );
  54.     block_t *           ( * pf_packetize )   ( decoder_t *, block_t ** );
  55.     /*
  56.      * Buffers allocation
  57.      */
  58.     /* Audio output callbacks */
  59.     aout_buffer_t * ( * pf_aout_buffer_new) ( decoder_t *, int );
  60.     void            ( * pf_aout_buffer_del) ( decoder_t *, aout_buffer_t * );
  61.     /* Video output callbacks */
  62.     picture_t     * ( * pf_vout_buffer_new) ( decoder_t * );
  63.     void            ( * pf_vout_buffer_del) ( decoder_t *, picture_t * );
  64.     void            ( * pf_picture_link)    ( decoder_t *, picture_t * );
  65.     void            ( * pf_picture_unlink)  ( decoder_t *, picture_t * );
  66.     /* SPU output callbacks */
  67.     subpicture_t *  ( * pf_spu_buffer_new) ( decoder_t * );
  68.     void            ( * pf_spu_buffer_del) ( decoder_t *, subpicture_t * );
  69.     /* Private structure for the owner of the decoder */
  70.     decoder_owner_sys_t *p_owner;
  71. };
  72. /**
  73.  * @}
  74.  */
  75. /**
  76.  * defgroup decoder Encoder
  77.  *
  78.  * The structure describing a Encoder
  79.  *
  80.  * @{
  81.  */
  82. struct encoder_t
  83. {
  84.     VLC_COMMON_MEMBERS
  85.     /* Module properties */
  86.     module_t *          p_module;
  87.     encoder_sys_t *     p_sys;
  88.     /* Properties of the input data fed to the encoder */
  89.     es_format_t         fmt_in;
  90.     /* Properties of the output of the encoder */
  91.     es_format_t         fmt_out;
  92.     block_t *           ( * pf_encode_video )( encoder_t *, picture_t * );
  93.     block_t *           ( * pf_encode_audio )( encoder_t *, aout_buffer_t * );
  94.     block_t *           ( * pf_encode_sub )( encoder_t *, subpicture_t * );
  95.     /* Common encoder options */
  96.     int i_threads;               /* Number of threads to use during encoding */
  97.     int i_iframes;               /* One I frame per i_iframes */
  98.     int i_bframes;               /* One B frame per i_bframes */
  99.     int i_tolerance;             /* Bitrate tolerance */
  100.     /* Encoder config */
  101.     sout_cfg_t *p_cfg;
  102. };
  103. /**
  104.  * @}
  105.  */
  106. #endif /* _VLC_CODEC_H */