2006-02-09 22:52:23 +00:00
|
|
|
/*
|
|
|
|
* Creative Voice File demuxer.
|
|
|
|
* Copyright (c) 2006 Aurelien Jacobs <aurel@gnuage.org>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-02-09 22:52:23 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-02-09 22:52:23 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-02-09 22:52:23 +00:00
|
|
|
* 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2007-07-05 10:40:25 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2006-02-09 22:52:23 +00:00
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVFORMAT_VOC_H
|
|
|
|
#define AVFORMAT_VOC_H
|
2006-02-09 22:52:23 +00:00
|
|
|
|
|
|
|
#include "avformat.h"
|
2006-11-21 13:18:21 +00:00
|
|
|
#include "riff.h" /* for CodecTag */
|
2006-02-09 22:52:23 +00:00
|
|
|
|
|
|
|
typedef struct voc_dec_context {
|
2009-11-24 07:08:17 +00:00
|
|
|
int64_t remaining_size;
|
2008-12-11 22:34:14 +00:00
|
|
|
} VocDecContext;
|
2006-02-09 22:52:23 +00:00
|
|
|
|
2006-11-21 13:08:04 +00:00
|
|
|
typedef enum voc_type {
|
|
|
|
VOC_TYPE_EOF = 0x00,
|
|
|
|
VOC_TYPE_VOICE_DATA = 0x01,
|
|
|
|
VOC_TYPE_VOICE_DATA_CONT = 0x02,
|
|
|
|
VOC_TYPE_SILENCE = 0x03,
|
|
|
|
VOC_TYPE_MARKER = 0x04,
|
|
|
|
VOC_TYPE_ASCII = 0x05,
|
|
|
|
VOC_TYPE_REPETITION_START = 0x06,
|
|
|
|
VOC_TYPE_REPETITION_END = 0x07,
|
|
|
|
VOC_TYPE_EXTENDED = 0x08,
|
|
|
|
VOC_TYPE_NEW_VOICE_DATA = 0x09,
|
2008-12-11 22:34:14 +00:00
|
|
|
} VocType;
|
2006-11-21 13:08:04 +00:00
|
|
|
|
2008-08-24 14:12:03 +00:00
|
|
|
extern const unsigned char ff_voc_magic[21];
|
|
|
|
extern const AVCodecTag ff_voc_codec_tags[];
|
2006-11-21 13:08:04 +00:00
|
|
|
|
2006-02-09 22:52:23 +00:00
|
|
|
int voc_get_packet(AVFormatContext *s, AVPacket *pkt,
|
|
|
|
AVStream *st, int max_size);
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVFORMAT_VOC_H */
|