[FFmpeg-devel] [PATCH V1 1/3] lavf/mpegtsenc: fix logic check error

mypopy at gmail.com mypopy at gmail.com
Mon Nov 4 03:53:51 EET 2019


On Mon, Nov 4, 2019 at 3:24 AM Andriy Gelman <andriy.gelman at gmail.com>
wrote:

> On Sun, 16. Jun 01:13, Jun Zhao wrote:
> > From: Jun Zhao <barryjzhao at tencent.com>
> >
> > fix the logic check error
> >
> > Signed-off-by: Jun Zhao <barryjzhao at 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
>
> Will mention the ticket if apply, Thx


More information about the ffmpeg-devel mailing list