Commit 2ad5d5a8 authored by Mike Melanson's avatar Mike Melanson

off-by-1 error in the never-before-tested embedded string code

Originally committed as revision 2649 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c0baa56a
......@@ -579,7 +579,7 @@ static void svq1_parse_string (GetBitContext *bitbuf, uint8_t *out) {
seed = string_table[out[0]];
for (i=1; i < out[0]; i++) {
for (i=1; i <= out[0]; i++) {
out[i] = get_bits (bitbuf, 8) ^ seed;
seed = string_table[out[i] ^ seed];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment