mirror of https://git.ffmpeg.org/ffmpeg.git
lavf/mpegtsenc: Accept 0x000001 as startcode for hevc.
Fixes ticket #4194.
This commit is contained in:
parent
4d74c8d550
commit
d0c895d3c5
|
@ -1219,7 +1219,7 @@ int ff_check_h264_startcode(AVFormatContext *s, const AVStream *st, const AVPack
|
|||
|
||||
static int check_hevc_startcode(AVFormatContext *s, const AVStream *st, const AVPacket *pkt)
|
||||
{
|
||||
if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) {
|
||||
if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001 && AV_RB24(pkt->data) != 0x000001) {
|
||||
if (!st->nb_frames) {
|
||||
av_log(s, AV_LOG_ERROR, "HEVC bitstream malformed, no startcode found\n");
|
||||
return AVERROR_PATCHWELCOME;
|
||||
|
|
Loading…
Reference in New Issue