Browse Source

vp3: Remove internal debug statement

Originally committed as revision 22892 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
David Conrad 15 years ago
parent
commit
d7097c2d88
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/vp3.c

+ 1
- 2
libavcodec/vp3.c View File

@@ -1287,8 +1287,7 @@ static inline int vp3_dequant(Vp3DecodeContext *s, Vp3Fragment *frag,
block[perm[i]] = (token >> 2) * dequantizer[perm[i]];
s->dct_tokens[plane][i++]++;
break;
default:
av_log(s->avctx, AV_LOG_ERROR, "internal: invalid token type\n");
default: // shouldn't happen
return i;
}
} while (i < 64);


Loading…
Cancel
Save