Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Poliakovski <maximumspatium@googlemail.com>2015-06-07 00:28:47 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-06-08 05:26:04 +0300
commitd765e07322a139a6c3c28d9c4c36f820db78986f (patch)
treeae23075907c4364cb756be7fe9b676e6af1b4590 /libavcodec/atrac3plus.c
parentac2dad9690ad2de60f9c0ccb63c5258f14e32777 (diff)
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.c6
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;