1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-05-04 21:08:03 +02:00
Files
FFmpeg/libavcodec/adx.h
T

82 lines
2.3 KiB
C
Raw Normal View History

2007-11-01 18:38:15 +00:00
/*
* ADX ADPCM codecs
* Copyright (c) 2001,2003 BERO
*
* This file is part of FFmpeg.
*
* FFmpeg 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.
*
* FFmpeg 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 FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file
2007-11-01 18:38:15 +00:00
* SEGA CRI adx codecs.
*
* Reference documents:
* http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html
* adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
*/
#ifndef AVCODEC_ADX_H
#define AVCODEC_ADX_H
2007-11-01 18:38:15 +00:00
#include <stdint.h>
#include "avcodec.h"
2007-11-01 18:38:15 +00:00
typedef struct {
int s1,s2;
2011-11-19 17:05:44 -05:00
} ADXChannelState;
2007-11-01 18:38:15 +00:00
typedef struct {
2011-09-06 12:17:45 -04:00
AVFrame frame;
int channels;
2011-11-19 17:05:44 -05:00
ADXChannelState prev[2];
2007-11-01 18:38:15 +00:00
int header_parsed;
2011-11-21 01:49:37 -05:00
int eof;
2011-11-20 14:21:32 -05:00
int cutoff;
int coeff[2];
2007-11-01 18:38:15 +00:00
} ADXContext;
#define COEFF_BITS 12
2011-11-20 14:21:32 -05:00
#define BLOCK_SIZE 18
#define BLOCK_SAMPLES 32
2011-11-20 14:21:32 -05:00
/**
* Calculate LPC coefficients based on cutoff frequency and sample rate.
*
* @param cutoff cutoff frequency
* @param sample_rate sample rate
* @param bits number of bits used to quantize coefficients
* @param[out] coeff 2 quantized LPC coefficients
*/
void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff);
2007-11-01 18:38:15 +00:00
/**
* Decode ADX stream header.
* Sets avctx->channels and avctx->sample_rate.
*
* @param avctx codec context
* @param buf header data
* @param bufsize data size, should be at least 24 bytes
* @param[out] header_size size of ADX header
* @param[out] coeff 2 LPC coefficients, can be NULL
* @return data offset or negative error code if header is invalid
*/
int avpriv_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
int bufsize, int *header_size, int *coeff);
2007-11-01 18:38:15 +00:00
#endif /* AVCODEC_ADX_H */