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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_codec.h: codec related structures
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2003 VideoLAN
  5.  * $Id: vlc_filter.h 9200 2004-11-06 16:51:26Z gbazin $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _VLC_FILTER_H
  24. #define _VLC_FILTER_H 1
  25. /**
  26.  * file
  27.  * This file defines the structure and types used by video and audio filters
  28.  */
  29. typedef struct filter_owner_sys_t filter_owner_sys_t;
  30. /**
  31.  * defgroup filter Filter
  32.  *
  33.  * The structure describing a filter
  34.  *
  35.  * @{
  36.  */
  37. struct filter_t
  38. {
  39.     VLC_COMMON_MEMBERS
  40.     /* Module properties */
  41.     module_t *          p_module;
  42.     filter_sys_t *      p_sys;
  43.     /* Input format */
  44.     es_format_t         fmt_in;
  45.     /* Output format of filter */
  46.     es_format_t         fmt_out;
  47.     picture_t *         ( * pf_video_filter ) ( filter_t *, picture_t * );
  48.     block_t *           ( * pf_audio_filter ) ( filter_t *, block_t * );
  49.     void                ( * pf_video_blend )  ( filter_t *, picture_t *,
  50.                                                 picture_t *, picture_t *,
  51.                                                 int, int, int );
  52.     subpicture_t *      ( *pf_sub_filter ) ( filter_t *, mtime_t );
  53.     subpicture_t *      ( *pf_render_string ) ( filter_t *, block_t * );
  54.     /*
  55.      * Buffers allocation
  56.      */
  57.     /* Audio output callbacks */
  58.     block_t *       ( * pf_audio_buffer_new) ( filter_t *, int );
  59.     /* Video output callbacks */
  60.     picture_t     * ( * pf_vout_buffer_new) ( filter_t * );
  61.     void            ( * pf_vout_buffer_del) ( filter_t *, picture_t * );
  62.     void            ( * pf_picture_link)    ( filter_t *, picture_t * );
  63.     void            ( * pf_picture_unlink)  ( filter_t *, picture_t * );
  64.     /* SPU output callbacks */
  65.     subpicture_t *  ( * pf_sub_buffer_new) ( filter_t * );
  66.     void            ( * pf_sub_buffer_del) ( filter_t *, subpicture_t * );
  67.     /* Private structure for the owner of the decoder */
  68.     filter_owner_sys_t *p_owner;
  69. };
  70. /**
  71.  * @}
  72.  */
  73. #endif /* _VLC_FILTER_H */