Skip to content
Snippets Groups Projects
Commit fbec157e authored by Mark Thompson's avatar Mark Thompson Committed by Michael Niedermayer
Browse files

lavc/hevc: Allow arbitrary garbage in bytestream as long as at least one NAL unit is found.

parent c411e90b
No related branches found
No related tags found
No related merge requests found
......@@ -232,8 +232,14 @@ int ff_hevc_split_packet(HEVCContext *s, HEVCPacket *pkt, const uint8_t *buf, in
++buf;
--length;
if (length < 4) {
av_log(avctx, AV_LOG_ERROR, "No start code is found.\n");
return AVERROR_INVALIDDATA;
if (pkt->nb_nals > 0) {
// No more start codes: we discarded some irrelevant
// bytes at the end of the packet.
return 0;
} else {
av_log(avctx, AV_LOG_ERROR, "No start code is found.\n");
return AVERROR_INVALIDDATA;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment