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

Commit

Permalink
10l: off-by-one in SHORT_DELAY_BAND[].
Browse files Browse the repository at this point in the history
  • Loading branch information
aconverse committed Jun 15, 2010
1 parent 004799f commit f3ee85e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/ps.c
Expand Up @@ -539,7 +539,7 @@ static const int DECAY_CUTOFF[] = { 10, 32 };
/// Number of all-pass filer bands
static const int NR_ALLPASS_BANDS[] = { 30, 50 };
/// First stereo band using the short one sample delay
static const int SHORT_DELAY_BAND[] = { 42, 63 };
static const int SHORT_DELAY_BAND[] = { 42, 62 };

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

0 comments on commit f3ee85e

Please sign in to comment.