Browse Source

fix handling of special case for lowest snroffset. regressions are unaffected.

Originally committed as revision 8450 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Justin Ruggles 18 years ago
parent
commit
b5a05cc295
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/ac3.c

+ 6
- 0
libavcodec/ac3.c View File

@@ -175,6 +175,12 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end,
{
int i, j, k, end1, v, address;

/* special case, if snroffset is -960, set all bap's to zero */
if(snroffset == -960) {
memset(bap, 0, 256);
return;
}

i = start;
j = masktab[start];
do {


Loading…
Cancel
Save