Commit b9a77198 authored by Michael Niedermayer's avatar Michael Niedermayer

tscc: fix "assignment discards qualifiers from pointer target type" warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c5fdd069
......@@ -91,7 +91,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
return AVERROR(EINVAL);
}
c->zstream.next_in = encoded;
c->zstream.next_in = (uint8_t*)encoded;
c->zstream.avail_in = len;
c->zstream.next_out = c->decomp_buf;
c->zstream.avail_out = c->decomp_size;
......
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