Skip to content
This repository was archived by the owner on Jun 21, 2021. It is now read-only.

Commit f3ee85e

Browse files
committed
10l: off-by-one in SHORT_DELAY_BAND[].
1 parent 004799f commit f3ee85e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libavcodec/ps.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ static const int DECAY_CUTOFF[] = { 10, 32 };
539539
/// Number of all-pass filer bands
540540
static const int NR_ALLPASS_BANDS[] = { 30, 50 };
541541
/// First stereo band using the short one sample delay
542-
static const int SHORT_DELAY_BAND[] = { 42, 63 };
542+
static const int SHORT_DELAY_BAND[] = { 42, 62 };
543543

544544
/** Table 8.46 */
545545
static void map_idx_10_to_20(int8_t *par_mapped, const int8_t *par, int full)

0 commit comments

Comments
 (0)