Re: [FFmpeg-devel] [PATCH] libavformat/concatdev.c: use the unified time base

2022-03-01 Thread Ye Chuan
at 12:49 PM To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH] libavformat/concatdev.c: use the unified time base On 2022-03-01 09:46 am, Ye Chuan wrote: > In some case, the input files have different time base > even though they share the same codec and codec parameters,

Re: [FFmpeg-devel] [PATCH] libavformat/concatdev.c: use the unified time base

2022-02-28 Thread Gyan Doshi
On 2022-03-01 09:46 am, Ye Chuan wrote: In some case, the input files have different time base even though they share the same codec and codec parameters, So when we replace the packet, we need use the unified time base instead of it of each stream own, which may lead to wrong pts/dts of the

[FFmpeg-devel] [PATCH] libavformat/concatdev.c: use the unified time base

2022-02-28 Thread Ye Chuan
In some case, the input files have different time base even though they share the same codec and codec parameters, So when we replace the packet, we need use the unified time base instead of it of each stream own, which may lead to wrong pts/dts of the output packet. Signed-off-by: Chuan Ye ---

[FFmpeg-devel] [PATCH] libavformat/concatdev.c use the unified time base

2022-02-28 Thread Ye Chuan
in some case, the input files have different time base even though they share the same codec and codec parameters, so when we replace the packet, we need use the unified time base instead of it of each stream own, which may lead to wrong pts/dts of the output packet. Signed-off-by: Chuan Ye mai