summaryrefslogtreecommitdiff
path: root/libavcodec/atrac3plus.c
diff options
context:
space:
mode:
authorMax Poliakovski <maximumspatium@googlemail.com>2015-06-07 12:52:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-06-08 11:45:22 +0200
commit4b343f7c359bf402017e0bf56e48654c139e88cd (patch)
tree6fcc07d49aaad56c539c896c033c28e693cf4f06 /libavcodec/atrac3plus.c
parentd765e07322a139a6c3c28d9c4c36f820db78986f (diff)
atrac3plus: give the phase_shift flag a better name.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/atrac3plus.c')
-rw-r--r--libavcodec/atrac3plus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac3plus.c b/libavcodec/atrac3plus.c
index 3d75749c0b..b16a13971d 100644
--- a/libavcodec/atrac3plus.c
+++ b/libavcodec/atrac3plus.c
@@ -1724,7 +1724,7 @@ static int decode_tones_info(GetBitContext *gb, Atrac3pChanUnitCtx *ctx,
if (num_channels == 2) {
get_subband_flags(gb, ctx->waves_info->tone_sharing, ctx->waves_info->num_tone_bands);
get_subband_flags(gb, ctx->waves_info->tone_master, ctx->waves_info->num_tone_bands);
- get_subband_flags(gb, ctx->waves_info->phase_shift, ctx->waves_info->num_tone_bands);
+ get_subband_flags(gb, ctx->waves_info->invert_phase, ctx->waves_info->num_tone_bands);
}
ctx->waves_info->tones_index = 0;