Commit 0cf7d849 authored by Kostya Shishkov's avatar Kostya Shishkov

tscc2: fix typo in array index

parent b9d3c378
...@@ -298,8 +298,8 @@ static int tscc2_decode_frame(AVCodecContext *avctx, void *data, ...@@ -298,8 +298,8 @@ static int tscc2_decode_frame(AVCodecContext *avctx, void *data,
if (!size) { if (!size) {
int skip_row = 1, j, off = i * c->mb_width; int skip_row = 1, j, off = i * c->mb_width;
for (j = 0; j < c->mb_width; j++) { for (j = 0; j < c->mb_width; j++) {
if (c->slice_quants[off + i] == 1 || if (c->slice_quants[off + j] == 1 ||
c->slice_quants[off + i] == 2) { c->slice_quants[off + j] == 2) {
skip_row = 0; skip_row = 0;
break; break;
} }
......
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