aacenc.h 3.11 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * AAC encoder
 * Copyright (C) 2008 Konstantin Shishkov
 *
 * 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
 */

#ifndef AVCODEC_AACENC_H
#define AVCODEC_AACENC_H

25
#include "libavutil/float_dsp.h"
26 27 28 29 30
#include "avcodec.h"
#include "put_bits.h"
#include "dsputil.h"

#include "aac.h"
31
#include "audio_frame_queue.h"
32 33
#include "psymodel.h"

34 35
#define AAC_CODER_NB 4

36 37
typedef struct AACEncOptions {
    int stereo_mode;
38
    int aac_coder;
39 40
} AACEncOptions;

41 42
struct AACEncContext;

43
typedef struct AACCoefficientsEncoder {
44 45 46 47 48 49 50
    void (*search_for_quantizers)(AVCodecContext *avctx, struct AACEncContext *s,
                                  SingleChannelElement *sce, const float lambda);
    void (*encode_window_bands_info)(struct AACEncContext *s, SingleChannelElement *sce,
                                     int win, int group_len, const float lambda);
    void (*quantize_and_encode_band)(struct AACEncContext *s, PutBitContext *pb, const float *in, int size,
                                     int scale_idx, int cb, const float lambda);
    void (*search_for_ms)(struct AACEncContext *s, ChannelElement *cpe, const float lambda);
51
} AACCoefficientsEncoder;
52 53 54 55 56 57 58

extern AACCoefficientsEncoder ff_aac_coders[];

/**
 * AAC encoder context
 */
typedef struct AACEncContext {
59 60
    AVClass *av_class;
    AACEncOptions options;                       ///< encoding options
61
    PutBitContext pb;
62 63
    FFTContext mdct1024;                         ///< long (1024 samples) frame transform context
    FFTContext mdct128;                          ///< short (128 samples) frame transform context
64
    DSPContext  dsp;
65
    AVFloatDSPContext fdsp;
66
    float *planar_samples[6];                    ///< saved preprocessed input
67 68

    int samplerate_index;                        ///< MPEG-4 samplerate index
69
    int channels;                                ///< channel count
70
    const uint8_t *chan_map;                     ///< channel configuration map
71 72 73 74 75 76 77 78

    ChannelElement *cpe;                         ///< channel elements
    FFPsyContext psy;
    struct FFPsyPreprocessContext* psypp;
    AACCoefficientsEncoder *coder;
    int cur_channel;
    int last_frame;
    float lambda;
79
    AudioFrameQueue afq;
80
    DECLARE_ALIGNED(16, int,   qcoefs)[96];      ///< quantized coefficients
81
    DECLARE_ALIGNED(32, float, scoefs)[1024];    ///< scaled coefficients
82 83 84 85

    struct {
        float *samples;
    } buffer;
86 87
} AACEncContext;

88 89
extern float ff_aac_pow34sf_tab[428];

90
#endif /* AVCODEC_AACENC_H */