Skip to content

Commit

Permalink
Revert "Cineform: Windows warning fix"
Browse files Browse the repository at this point in the history
This reverts commit 45d0bfb.
  • Loading branch information
MartinPulec committed Jul 2, 2024
1 parent ab49c97 commit 2b5a23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video_compress/cineform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ static video_frame *get_copy(struct state_video_compress_cineform *s, video_fram
dst += static_cast<size_t>(dst_linesize) * frame->tiles[0].height - 1;
dst_sign = -1;
}
for (unsigned i = 0; i < frame->tiles[0].height; ++i) {
for (long int i = 0; i < frame->tiles[0].height; ++i) {
s->dec(dst + dst_sign * i * dst_linesize, (unsigned char *) frame->tiles[0].data + i * src_linesize, dst_linesize, 16, 8, 0);
}

Expand Down

0 comments on commit 2b5a23f

Please sign in to comment.