Commit df1d8412 authored by Dale Curtis's avatar Dale Curtis Committed by Luca Barbato

matroskadec: fix incorrect unsigned->signed conversion

parent 8d4dd55c
......@@ -1924,7 +1924,7 @@ static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
}
} else {
MatroskaTrackEncoding *encodings = track->encodings.elem;
int pkt_size = lace_size[n];
uint32_t pkt_size = lace_size[n];
uint8_t *pkt_data = data;
if (pkt_size > 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