mkv: mark corrupted packets and return them

Do return error if memory allocation or I/O fails.
pull/30/merge
Luca Barbato 13 years ago
parent 721af294d9
commit 0ca4642ec5
  1. 5
      libavformat/matroskadec.c

@ -2069,6 +2069,11 @@ static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
ret = matroska_parse_cluster(matroska);
}
if (ret == AVERROR_INVALIDDATA) {
pkt->flags |= AV_PKT_FLAG_CORRUPT;
return 0;
}
return ret;
}

Loading…
Cancel
Save