Commit 6df20d0d authored by Michael Niedermayer's avatar Michael Niedermayer

asfdec: remove "ignoring invalid packet_obj_size" code

The code is no longer needed
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 465aa53f
......@@ -1167,13 +1167,6 @@ static int asf_parse_packet(AVFormatContext *s, AVIOContext *pb, AVPacket *pkt)
}
asf->packet_multi_size -= asf_st->packet_obj_size;
}
if (asf_st->frag_offset + asf->packet_frag_size <= asf_st->pkt.size &&
asf_st->frag_offset + asf->packet_frag_size > asf_st->packet_obj_size) {
av_log(s, AV_LOG_INFO, "ignoring invalid packet_obj_size (%d %d %d %d)\n",
asf_st->frag_offset, asf->packet_frag_size,
asf_st->packet_obj_size, asf_st->pkt.size);
asf_st->packet_obj_size = asf_st->pkt.size;
}
if (asf_st->pkt.size != asf_st->packet_obj_size ||
// FIXME is this condition sufficient?
......
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