Go to the documentation of this file.
64 for (
int j = 0; j < 2; j++) {
67 &raw_quant_table[1], 2,
68 &raw_quant_table[0], 2, 1,
93 memset(
c->oldDSCF, 0,
sizeof(
c->oldDSCF));
97 c->bdsp.bswap_buf((uint32_t *) buf, (
const uint32_t *) avctx->
extradata, 4);
111 c->IS,
c->MSS,
c->gapless,
c->lastframelen,
c->maxbands);
112 c->frames_to_skip = 0;
152 case 3:
case 4:
case 5:
case 6:
case 7:
157 case 8:
case 9:
case 10:
case 11:
case 12:
158 case 13:
case 14:
case 15:
case 16:
case 17:
159 t = (1 << (idx - 2)) - 1;
177 int *got_frame_ptr,
AVPacket *avpkt)
179 const uint8_t *buf = avpkt->
data;
186 int off,
ret, last_frame,
skip;
187 int bits_used, bits_avail;
189 memset(
bands, 0,
sizeof(*
bands) * (
c->maxbands + 1));
191 buf_size = avpkt->
size & ~3;
197 if (buf_size != avpkt->
size) {
199 "extra bytes at the end will be skipped.\n");
215 c->bdsp.bswap_buf((uint32_t *)
c->bits, (
const uint32_t *) buf,
222 for(
i = 0;
i <=
c->maxbands;
i++){
223 for(ch = 0; ch < 2; ch++){
239 for(
i = 0;
i <=
mb;
i++)
240 for(ch = 0; ch < 2; ch++)
244 for(
i = 0;
i <=
mb;
i++){
245 for(ch = 0; ch < 2; ch++){
247 bands[
i].scf_idx[ch][2] =
c->oldDSCF[ch][
i];
249 switch(
bands[
i].scfi[ch]){
266 c->oldDSCF[ch][
i] =
bands[
i].scf_idx[ch][2];
271 memset(
c->Q, 0,
sizeof(
c->Q));
274 for(ch = 0; ch < 2; ch++)
282 bits_avail = buf_size * 8;
283 if (!last_frame && ((bits_avail < bits_used) || (bits_used + 32 <= bits_avail))) {
284 av_log(avctx,
AV_LOG_ERROR,
"Error decoding frame: used %i of %i bits\n", bits_used, bits_avail);
287 if(
c->frames_to_skip){
302 memset(
c->oldDSCF, 0,
sizeof(
c->oldDSCF));
303 c->frames_to_skip = 32;
static const uint8_t mpc7_scfi[MPC7_SCFI_SIZE *2]
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
#define AV_LOG_WARNING
Something somehow does not look correct.
static int mpc7_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
const FFCodec ff_mpc7_decoder
#define AV_CHANNEL_LAYOUT_STEREO
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
static const VLCElem * quant_vlc[MPC7_QUANT_VLC_TABLES][2]
static int get_bits_count(const GetBitContext *s)
static VLCElem hdr_vlc[1<< MPC7_HDR_BITS]
av_cold void ff_mpadsp_init(MPADSPContext *s)
This structure describes decoded (raw) audio or video data.
static av_cold int mpc7_decode_close(AVCodecContext *avctx)
int nb_channels
Number of channels in this layout.
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
static const uint8_t mpc7_hdr[MPC7_HDR_SIZE *2]
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
AVCodec p
The public AVCodec.
AVChannelLayout ch_layout
Audio channel layout.
void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, int16_t **out, int channels)
static int ff_thread_once(char *control, void(*routine)(void))
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
For static VLCs, the number of bits can often be hardcoded at each get_vlc2() callsite.
#define FF_CODEC_DECODE_CB(func)
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
static const int8_t mpc7_idx32[]
#define LOCAL_ALIGNED_16(t, v,...)
static void mpc7_decode_flush(AVCodecContext *avctx)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
static const float bands[]
#define CODEC_LONG_NAME(str)
static VLCElem dscf_vlc[1<< MPC7_DSCF_BITS]
av_cold void ff_bswapdsp_init(BswapDSPContext *c)
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
void ff_mpa_synth_init_fixed(void)
static const int8_t mpc7_idx51[]
static const uint8_t mpc7_quant_vlcs[177 *2 *2]
static unsigned int get_bits1(GetBitContext *s)
static av_cold void mpc7_init_static(void)
static av_always_inline int get_vlc2(GetBitContext *s, const VLCElem *table, int bits, int max_depth)
Parse a vlc code.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
#define MPC7_QUANT_VLC_TABLES
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
int(* init)(AVBSFContext *ctx)
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
An AVChannelLayout holds information about the channel layout of audio data.
enum AVSampleFormat sample_fmt
audio sample format
static const uint8_t mpc7_quant_vlc_sizes[MPC7_QUANT_VLC_TABLES]
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
static int get_scale_idx(GetBitContext *gb, int ref)
int nb_samples
number of audio samples (per channel) described by this frame
#define i(width, name, range_min, range_max)
static const int8_t mpc7_idx31[]
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
uint8_t ** extended_data
pointers to the data planes/channels.
AVSampleFormat
Audio sample formats.
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
static av_cold int mpc7_decode_init(AVCodecContext *avctx)
const char * name
Name of the codec implementation.
static VLCElem scfi_vlc[1<< MPC7_SCFI_BITS]
static const int8_t mpc7_idx30[]
static const uint8_t mpc7_dscf[MPC7_DSCF_SIZE *2]
main external API structure.
static const int8_t mpc7_idx50[]
Subband structure - hold all variables for each subband.
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
static int ref[MAX_W *MAX_W]
const av_cold VLCElem * ff_vlc_init_tables_from_lengths(VLCInitState *state, int nb_bits, int nb_codes, const int8_t *lens, int lens_wrap, const void *symbols, int symbols_wrap, int symbols_size, int offset, int flags)
#define avpriv_request_sample(...)
#define VLC_INIT_STATIC_TABLE_FROM_LENGTHS(vlc_table, nb_bits, nb_codes, lens, lens_wrap, syms, syms_wrap, syms_size, offset, flags)
#define VLC_INIT_STATE(_table)
This structure stores compressed data.
static const uint8_t quant_tables[]
static void idx_to_quant(MPCContext *c, GetBitContext *gb, int idx, int *dst)
Fill samples for given subband.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static void BS_FUNC() skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
static const int8_t mpc7_quant_vlc_off[MPC7_QUANT_VLC_TABLES]