diff options
author | Max Poliakovski <maximumspatium@googlemail.com> | 2015-06-06 23:28:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-08 04:26:04 +0200 |
commit | d765e07322a139a6c3c28d9c4c36f820db78986f (patch) | |
tree | ae23075907c4364cb756be7fe9b676e6af1b4590 /libavcodec/atrac3plus.c | |
parent | ac2dad9690ad2de60f9c0ccb63c5258f14e32777 (diff) | |
download | ffmpeg-d765e07322a139a6c3c28d9c4c36f820db78986f.tar.gz |
atrac3plus: add support for GHA phase inversion.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/atrac3plus.c')
-rw-r--r-- | libavcodec/atrac3plus.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/atrac3plus.c b/libavcodec/atrac3plus.c index f998a7f9ee..3d75749c0b 100644 --- a/libavcodec/atrac3plus.c +++ b/libavcodec/atrac3plus.c @@ -1724,11 +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); - if (get_subband_flags(gb, ctx->waves_info->phase_shift, - ctx->waves_info->num_tone_bands)) { - avpriv_report_missing_feature(avctx, "GHA Phase shifting"); - return AVERROR_PATCHWELCOME; - } + get_subband_flags(gb, ctx->waves_info->phase_shift, ctx->waves_info->num_tone_bands); } ctx->waves_info->tones_index = 0; |