22 #ifndef AVCODEC_PSYMODEL_H
23 #define AVCODEC_PSYMODEL_H
28 #define PSY_MAX_BANDS 128
30 #define PSY_MAX_CHANS 20
35 #define AAC_CUTOFF_FROM_BITRATE(bit_rate,channels,sample_rate) (bit_rate ? FFMIN3(FFMIN3( \
36 FFMAX(bit_rate/channels/5, bit_rate/channels*15/32 - 5500), \
37 3000 + bit_rate/channels/4, \
38 12000 + bit_rate/channels/16), \
40 sample_rate / 2): (sample_rate / 2))
41 #define AAC_CUTOFF(s) ( \
42 (s->flags & AV_CODEC_FLAG_QSCALE) \
43 ? s->sample_rate / 2 \
44 : AAC_CUTOFF_FROM_BITRATE(s->bit_rate, s->channels, s->sample_rate) \
158 const uint8_t **bands,
const int *num_bands,
159 int num_groups,
const uint8_t *group_map);
#define PSY_MAX_BANDS
maximum possible number of bands
int num_groups
number of channel groups
int grouping[8]
window grouping (for e.g. AAC)
uint8_t ** bands
scalefactor band sizes for possible frame sizes
FFPsyChannelGroup * group
channel group information
FFPsyBand psy_bands[PSY_MAX_BANDS]
channel bands information
psychoacoustic information for an arbitrary group of channels
int alloc
number of bits allocated by the psy, or -1 if no allocation was done
int * num_bands
number of scalefactor bands for possible frame sizes
int * window_sizes
sequence of window sizes inside one frame (for eg. WMA)
struct FFPsyPreprocessContext * ff_psy_preprocess_init(AVCodecContext *avctx)
psychoacoustic model audio preprocessing initialization
int size
size of the bitresevoir in bits
context used by psychoacoustic model
single band psychoacoustic information
single channel psychoacoustic information
FFPsyChannel * ch[PSY_MAX_CHANS]
pointers to the individual channels in the group
int num_windows
number of windows in a frame
codec-specific psychoacoustic model implementation
void(* analyze)(FFPsyContext *ctx, int channel, const float **coeffs, const FFPsyWindowInfo *wi)
Perform psychoacoustic analysis and set band info (threshold, energy) for a group of channels...
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
uint8_t num_ch
number of channels in this group
void ff_psy_preprocess_end(struct FFPsyPreprocessContext *ctx)
Cleanup audio preprocessing module.
float entropy
total PE for this channel
Libavcodec external API header.
FFPsyWindowInfo(* window)(FFPsyContext *ctx, const float *audio, const float *la, int channel, int prev_type)
Suggest window sequence for channel.
main external API structure.
void * model_priv_data
psychoacoustic model implementation private data
int bits
number of bits used in the bitresevoir
void(* end)(FFPsyContext *apc)
#define PSY_MAX_CHANS
maximum number of channels
FFPsyChannelGroup * ff_psy_find_group(FFPsyContext *ctx, int channel)
Determine what group a channel belongs to.
int window_shape
window shape (sine/KBD/whatever)
int cutoff
lowpass frequency cutoff for analysis
const struct FFPsyModel * model
encoder-specific model functions
void ff_psy_end(FFPsyContext *ctx)
Cleanup model context at the end.
struct FFPsyContext::@104 bitres
uint8_t coupling[PSY_MAX_BANDS]
allow coupling for this band in the group
windowing related information
channel
Use these values when setting the channel map with ebur128_set_channel().
int num_lens
number of scalefactor band sets
static const int16_t coeffs[]
FFPsyChannel * ch
single channel information
int(* init)(FFPsyContext *apc)
AVCodecContext * avctx
encoder context
void ff_psy_preprocess(struct FFPsyPreprocessContext *ctx, float **audio, int channels)
Preprocess several channel in audio frame in order to compress it better.
int window_type[3]
window type (short/long/transitional, etc.) - current, previous and next
float clipping[8]
maximum absolute normalized intensity in the given window for clip avoidance
int ff_psy_init(FFPsyContext *ctx, AVCodecContext *avctx, int num_lens, const uint8_t **bands, const int *num_bands, int num_groups, const uint8_t *group_map)
Initialize psychoacoustic model.