/***************************************************************************** * spudec.h : sub picture unit decoder thread interface ***************************************************************************** * Copyright (C) 1999, 2000, 2006 VLC authors and VideoLAN * $Id$ * * Authors: Sam Hocevar * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /* #define DEBUG_SPUDEC 1 */ struct decoder_sys_t { bool b_packetizer; bool b_disabletrans; vlc_tick_t i_pts; unsigned int i_spu_size; unsigned int i_rle_size; unsigned int i_spu; block_t *p_block; /* We will never overflow */ uint8_t buffer[65536]; }; /***************************************************************************** * Amount of bytes we GetChunk() in one go *****************************************************************************/ #define SPU_CHUNK_SIZE 0x200 /***************************************************************************** * SPU commands *****************************************************************************/ #define SPU_CMD_FORCE_DISPLAY 0x00 #define SPU_CMD_START_DISPLAY 0x01 #define SPU_CMD_STOP_DISPLAY 0x02 #define SPU_CMD_SET_PALETTE 0x03 #define SPU_CMD_SET_ALPHACHANNEL 0x04 #define SPU_CMD_SET_COORDINATES 0x05 #define SPU_CMD_SET_OFFSETS 0x06 #define SPU_CMD_SET_COLCON 0x07 #define SPU_CMD_END 0xff /***************************************************************************** * Prototypes *****************************************************************************/ void ParsePacket( decoder_t *, int(*pf_queue)(decoder_t *, subpicture_t *) );