diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-08-22 06:47:14 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-08-22 06:47:14 +0100 |
commit | 2c94e45fadf455a4f2af801a498793f7cbb5b339 (patch) | |
tree | 597d0f444ee384b802df0f07e35d610b1e146e1e /libavcodec/aacenc_is.h | |
parent | e8279880dcf7bed02cc1630f1e1582837f7e5eea (diff) | |
download | ffmpeg-2c94e45fadf455a4f2af801a498793f7cbb5b339.tar.gz |
aacenc_is: rename struct to follow guidelines
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/aacenc_is.h')
-rw-r--r-- | libavcodec/aacenc_is.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/aacenc_is.h b/libavcodec/aacenc_is.h index 07e1a9d246..f4ca8e25e2 100644 --- a/libavcodec/aacenc_is.h +++ b/libavcodec/aacenc_is.h @@ -31,7 +31,7 @@ /** Frequency in Hz for lower limit of intensity stereo **/ #define INT_STEREO_LOW_LIMIT 6100 -struct ff_aac_is_error { +struct AACISError { int pass; /* 1 if dist2 <= dist1 */ int phase; /* -1 or +1 */ float error; /* fabs(dist1 - dist2) */ @@ -39,9 +39,9 @@ struct ff_aac_is_error { float dist2; /* From IS'd coeffs */ }; -struct ff_aac_is_error ff_aac_is_encoding_err(AACEncContext *s, ChannelElement *cpe, - int start, int w, int g, float ener0, - float ener1, float ener01, int phase); +struct AACISError ff_aac_is_encoding_err(AACEncContext *s, ChannelElement *cpe, + int start, int w, int g, float ener0, + float ener1, float ener01, int phase); void ff_aac_search_for_is(AACEncContext *s, AVCodecContext *avctx, ChannelElement *cpe); #endif /* AVCODEC_AACENC_IS_H */ |