]> git.sesse.net Git - ffmpeg/blob - libavcodec/aacenc.h
avcodec/vdpau_hevc: Properly signal the num_delta_pocs from the SPS RPS
[ffmpeg] / libavcodec / aacenc.h
1 /*
2  * AAC encoder
3  * Copyright (C) 2008 Konstantin Shishkov
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #ifndef AVCODEC_AACENC_H
23 #define AVCODEC_AACENC_H
24
25 #include "libavutil/float_dsp.h"
26 #include "avcodec.h"
27 #include "put_bits.h"
28
29 #include "aac.h"
30 #include "audio_frame_queue.h"
31 #include "psymodel.h"
32
33 typedef enum AACCoder {
34     AAC_CODER_FAAC = 0,
35     AAC_CODER_ANMR,
36     AAC_CODER_TWOLOOP,
37     AAC_CODER_FAST,
38
39     AAC_CODER_NB,
40 }AACCoder;
41
42 typedef struct AACEncOptions {
43     int stereo_mode;
44     int aac_coder;
45     int pns;
46     int intensity_stereo;
47 } AACEncOptions;
48
49 struct AACEncContext;
50
51 typedef struct AACCoefficientsEncoder {
52     void (*search_for_quantizers)(AVCodecContext *avctx, struct AACEncContext *s,
53                                   SingleChannelElement *sce, const float lambda);
54     void (*encode_window_bands_info)(struct AACEncContext *s, SingleChannelElement *sce,
55                                      int win, int group_len, const float lambda);
56     void (*quantize_and_encode_band)(struct AACEncContext *s, PutBitContext *pb, const float *in, int size,
57                                      int scale_idx, int cb, const float lambda, int rtz);
58     void (*set_special_band_scalefactors)(struct AACEncContext *s, SingleChannelElement *sce);
59     void (*search_for_pns)(struct AACEncContext *s, AVCodecContext *avctx, SingleChannelElement *sce);
60     void (*search_for_ms)(struct AACEncContext *s, ChannelElement *cpe);
61     void (*search_for_is)(struct AACEncContext *s, AVCodecContext *avctx, ChannelElement *cpe);
62 } AACCoefficientsEncoder;
63
64 extern AACCoefficientsEncoder ff_aac_coders[];
65
66 /**
67  * AAC encoder context
68  */
69 typedef struct AACEncContext {
70     AVClass *av_class;
71     AACEncOptions options;                       ///< encoding options
72     PutBitContext pb;
73     FFTContext mdct1024;                         ///< long (1024 samples) frame transform context
74     FFTContext mdct128;                          ///< short (128 samples) frame transform context
75     AVFloatDSPContext *fdsp;
76     float *planar_samples[6];                    ///< saved preprocessed input
77
78     int samplerate_index;                        ///< MPEG-4 samplerate index
79     int channels;                                ///< channel count
80     const uint8_t *chan_map;                     ///< channel configuration map
81
82     ChannelElement *cpe;                         ///< channel elements
83     FFPsyContext psy;
84     struct FFPsyPreprocessContext* psypp;
85     AACCoefficientsEncoder *coder;
86     int cur_channel;
87     int last_frame;
88     float lambda;
89     AudioFrameQueue afq;
90     DECLARE_ALIGNED(16, int,   qcoefs)[96];      ///< quantized coefficients
91     DECLARE_ALIGNED(32, float, scoefs)[1024];    ///< scaled coefficients
92
93     struct {
94         float *samples;
95     } buffer;
96 } AACEncContext;
97
98 void ff_aac_coder_init_mips(AACEncContext *c);
99
100 #endif /* AVCODEC_AACENC_H */