From: Steven Liu <lingjiujianke@gmail.com>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Cc: Wang Yaqiang <wangyaqiang03@kuaishou.com>
Subject: Re: [FFmpeg-devel] [PATCH] avformat/movenc: fixed fmp4 packets containing incorrect flags after transcoding
Date: Mon, 24 Apr 2023 09:47:12 +0800
Message-ID: <CADxeRwmvf8EDpyt+Zi4=cLb=VWiaaHi46WWp6=znPGamsvWWOA@mail.gmail.com> (raw)
In-Reply-To: <CADxeRwkT0ZEhW-Lm-Bs=Wsgb8rO3AhaTDKsoURRHfqxSRCi2HA@mail.gmail.com>
Steven Liu <lingjiujianke@gmail.com> 于2023年4月23日周日 09:54写道:
>
> <1035567130@qq.com> 于2023年4月10日周一 20:43写道:
> >
> > From: Wang Yaqiang <wangyaqiang03@kuaishou.com>
> >
> > When write multi-trun box, the MOV_TRUN_FIRST_SAMPLE_FLAGS flag
> > need judge by first param, not 0.
> > If the original video contains consecutive I frames,
> > this will cause the packets of fmp4 have error sample_flags ,
> > and then incorrect keyframes were generated,
> > and then error packet will be seeked.
> >
> > Signed-off-by: Wang Yaqiang <wangyaqiang03@kuaishou.com>
> > ---
> > libavformat/movenc.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/libavformat/movenc.c b/libavformat/movenc.c
> > index c370922c7d..946e79c5ac 100644
> > --- a/libavformat/movenc.c
> > +++ b/libavformat/movenc.c
> > @@ -4858,8 +4858,8 @@ static int mov_write_trun_tag(AVIOContext *pb, MOVMuxContext *mov,
> > if (i > first && get_sample_flags(track, &track->cluster[i]) != track->default_sample_flags)
> > flags |= MOV_TRUN_SAMPLE_FLAGS;
> > }
> > - if (!(flags & MOV_TRUN_SAMPLE_FLAGS) && track->entry > 0 &&
> > - get_sample_flags(track, &track->cluster[0]) != track->default_sample_flags)
> > + if (!(flags & MOV_TRUN_SAMPLE_FLAGS) && track->entry > first &&
> > + get_sample_flags(track, &track->cluster[first]) != track->default_sample_flags)
> > flags |= MOV_TRUN_FIRST_SAMPLE_FLAGS;
> > if (track->flags & MOV_TRACK_CTTS)
> > flags |= MOV_TRUN_SAMPLE_CTS;
> > --
> > 2.39.2
> >
> > _______________________________________________
> > ffmpeg-devel mailing list
> > ffmpeg-devel@ffmpeg.org
> > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> >
> > To unsubscribe, visit link above, or email
> > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
>
>
> Test ok here.
Applied.
Thanks
Steven
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
prev parent reply other threads:[~2023-04-24 1:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-10 12:43 1035567130
2023-04-23 1:54 ` Steven Liu
2023-04-24 1:47 ` Steven Liu [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CADxeRwmvf8EDpyt+Zi4=cLb=VWiaaHi46WWp6=znPGamsvWWOA@mail.gmail.com' \
--to=lingjiujianke@gmail.com \
--cc=ffmpeg-devel@ffmpeg.org \
--cc=wangyaqiang03@kuaishou.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git