Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fix initial setting for start_pts

2020-03-05 Thread Hongcheng Zhong
- On Mar 6, 2020, at 11:08 AM, Andreas Rheinhardt andreas.rheinha...@gmail.com wrote: > Hongcheng Zhong: >> - On Mar 6, 2020, at 12:55 AM, Andreas Rheinhardt >> andreas.rheinha...@gmail.com wrote: >> >>> Hongcheng Zhong: - On Mar 5, 2020, at 11:38 PM, lq l...@chinaffmpeg.org wro

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fix initial setting for start_pts

2020-03-05 Thread Andreas Rheinhardt
Hongcheng Zhong: > - On Mar 6, 2020, at 12:55 AM, Andreas Rheinhardt > andreas.rheinha...@gmail.com wrote: > >> Hongcheng Zhong: >>> - On Mar 5, 2020, at 11:38 PM, lq l...@chinaffmpeg.org wrote: >>> > 2020年3月5日 下午9:41,Hongcheng Zhong 写道: > > This patch fixes Bug #8469 > I

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fix initial setting for start_pts

2020-03-05 Thread Hongcheng Zhong
- On Mar 6, 2020, at 12:55 AM, Andreas Rheinhardt andreas.rheinha...@gmail.com wrote: > Hongcheng Zhong: >> - On Mar 5, 2020, at 11:38 PM, lq l...@chinaffmpeg.org wrote: >> 2020年3月5日 下午9:41,Hongcheng Zhong 写道: This patch fixes Bug #8469 If x264 baseline profile is us

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fix initial setting for start_pts

2020-03-05 Thread Andreas Rheinhardt
Hongcheng Zhong: > - On Mar 5, 2020, at 11:38 PM, lq l...@chinaffmpeg.org wrote: > >>> 2020年3月5日 下午9:41,Hongcheng Zhong 写道: >>> >>> This patch fixes Bug #8469 >>> If x264 baseline profile is used with other profiles, >>> start_pts will be initialized to audio stream's first pts, >>> while the

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fix initial setting for start_pts

2020-03-05 Thread Hongcheng Zhong
- On Mar 5, 2020, at 11:38 PM, lq l...@chinaffmpeg.org wrote: >> 2020年3月5日 下午9:41,Hongcheng Zhong 写道: >> >> This patch fixes Bug #8469 >> If x264 baseline profile is used with other profiles, >> start_pts will be initialized to audio stream's first pts, >> while the duration is calculated ba

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Fix initial setting for start_pts

2020-03-05 Thread Steven Liu
> 2020年3月5日 下午9:41,Hongcheng Zhong 写道: > > This patch fixes Bug #8469 > If x264 baseline profile is used with other profiles, > start_pts will be initialized to audio stream's first pts, > while the duration is calculated based on video stream's pts. > In this patch the start_pts is initialized

[FFmpeg-devel] [PATCH] avformat/hlsenc: Fix initial setting for start_pts

2020-03-05 Thread Hongcheng Zhong
This patch fixes Bug #8469 If x264 baseline profile is used with other profiles, start_pts will be initialized to audio stream's first pts, while the duration is calculated based on video stream's pts. In this patch the start_pts is initialized with the correct stream's first pts. Signed-off-by: H