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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * spudec.h : sub picture unit decoder thread interface
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000 VideoLAN
  5.  * $Id: spudec.h 8420 2004-08-13 18:58:25Z gbazin $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.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. struct decoder_sys_t
  24. {
  25.     int b_packetizer;
  26.     mtime_t i_pts;
  27.     int i_spu_size;
  28.     int i_rle_size;
  29.     int i_spu;
  30.     block_t *p_block;
  31.     /* We will never overflow more than 11 bytes if I'm right */
  32.     uint8_t buffer[65536 + 20 ];
  33. };
  34. typedef struct subpicture_data_t
  35. {
  36.     mtime_t i_pts;                                 /* presentation timestamp */
  37.     int   pi_offset[2];                              /* byte offsets to data */
  38.     void *p_data;
  39.     /* Color information */
  40.     vlc_bool_t b_palette;
  41.     uint8_t    pi_alpha[4];
  42.     uint8_t    pi_yuv[4][3];
  43.     /* Auto crop fullscreen subtitles */
  44.     vlc_bool_t b_auto_crop;
  45.     int i_y_top_offset;
  46.     int i_y_bottom_offset;
  47. } subpicture_data_t;
  48. /*****************************************************************************
  49.  * Amount of bytes we GetChunk() in one go
  50.  *****************************************************************************/
  51. #define SPU_CHUNK_SIZE              0x200
  52. /*****************************************************************************
  53.  * SPU commands
  54.  *****************************************************************************/
  55. #define SPU_CMD_FORCE_DISPLAY       0x00
  56. #define SPU_CMD_START_DISPLAY       0x01
  57. #define SPU_CMD_STOP_DISPLAY        0x02
  58. #define SPU_CMD_SET_PALETTE         0x03
  59. #define SPU_CMD_SET_ALPHACHANNEL    0x04
  60. #define SPU_CMD_SET_COORDINATES     0x05
  61. #define SPU_CMD_SET_OFFSETS         0x06
  62. #define SPU_CMD_END                 0xff
  63. /*****************************************************************************
  64.  * Prototypes
  65.  *****************************************************************************/
  66. subpicture_t * E_(ParsePacket)( decoder_t * );