diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2011-05-18 23:23:22 -0600 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-06-29 14:28:53 -0700 |
commit | d3a6c2ab7e76f12f56932a087266b082dc1dc39b (patch) | |
tree | ed2a8354c89847e7e2a78b6e5da7956ecf2f1586 /libavcodec/psymodel.h | |
parent | 01344fe409da286cd377f9af610eb4c4888687ec (diff) | |
download | ffmpeg-d3a6c2ab7e76f12f56932a087266b082dc1dc39b.tar.gz |
psymodel: Remove the single channel analysis function
Diffstat (limited to 'libavcodec/psymodel.h')
-rw-r--r-- | libavcodec/psymodel.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/libavcodec/psymodel.h b/libavcodec/psymodel.h index 241f8ecdb3..3e866e40cc 100644 --- a/libavcodec/psymodel.h +++ b/libavcodec/psymodel.h @@ -112,16 +112,6 @@ typedef struct FFPsyModel { FFPsyWindowInfo (*window)(FFPsyContext *ctx, const int16_t *audio, const int16_t *la, int channel, int prev_type); /** - * Perform psychoacoustic analysis and set band info (threshold, energy) for a single channel. - * - * @param ctx model context - * @param channel audio channel number - * @param coeffs pointer to the transformed coefficients - * @param wi window information - */ - 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. * * @param ctx model context @@ -129,7 +119,7 @@ typedef struct FFPsyModel { * @param coeffs array of pointers to the transformed coefficients * @param wi window information for the channels in the group */ - void (*analyze_group)(FFPsyContext *ctx, int channel, const float **coeffs, const FFPsyWindowInfo *wi); + void (*analyze)(FFPsyContext *ctx, int channel, const float **coeffs, const FFPsyWindowInfo *wi); void (*end) (FFPsyContext *apc); } FFPsyModel; |