On Sun, 16. Jun 01:13, Jun Zhao wrote: > From: Jun Zhao <barryjz...@tencent.com> > > fix the logic check error > > Signed-off-by: Jun Zhao <barryjz...@tencent.com> > --- > libavformat/mpegtsenc.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c > index fc0ea22..5d679c9 100644 > --- a/libavformat/mpegtsenc.c > +++ b/libavformat/mpegtsenc.c > @@ -1651,7 +1651,7 @@ static int mpegts_write_packet_internal(AVFormatContext > *s, AVPacket *pkt) > } while (p < buf_end && (state & 0x7e) != 2*35 && > (state & 0x7e) >= 2*32); > > - if ((state & 0x7e) < 2*16 && (state & 0x7e) >= 2*24) > + if ((state & 0x7e) < 2*16 || (state & 0x7e) >= 2*24) > extradd = 0; > if ((state & 0x7e) != 2*35) { // AUD NAL > data = av_malloc(pkt->size + 7 + extradd); > -- > 1.7.1 >
Mentioned in #6751 -- Andriy _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".