Re: [FFmpeg-devel] [PATCH] avformat: add AVFormatContext.first_pts_wallclock

2022-06-18 Thread Anton Khirnov
Quoting Gyan Doshi (2022-06-18 06:01:21) > > > On 2022-06-16 02:39 pm, Gyan Doshi wrote: > > Stores wallclock time for the first packet received with a pts. > > Comments? This looks very ad-hoc and IMO does not belong in the library unless you have a very strong reason. -- Anton Khirnov _

Re: [FFmpeg-devel] [PATCH] avformat: add AVFormatContext.first_pts_wallclock

2022-06-18 Thread zhilizhao(赵志立)
> On Jun 18, 2022, at 12:01 PM, Gyan Doshi wrote: > > > On 2022-06-16 02:39 pm, Gyan Doshi wrote: >> Stores wallclock time for the first packet received with a pts. > > Comments? >> diff --git a/libavformat/avformat.h b/libavformat/avformat.h >> index f12fa7d904..56f9656a68 100644 >> --- a/l

Re: [FFmpeg-devel] [PATCH] avformat: add AVFormatContext.first_pts_wallclock

2022-06-17 Thread Gyan Doshi
On 2022-06-18 10:30 am, Andreas Rheinhardt wrote: Gyan Doshi: On 2022-06-16 02:39 pm, Gyan Doshi wrote: Stores wallclock time for the first packet received with a pts. Comments? ---   doc/APIchanges |  3 +++   libavformat/avformat.h | 10 ++   libavformat/demux.c    |  3

Re: [FFmpeg-devel] [PATCH] avformat: add AVFormatContext.first_pts_wallclock

2022-06-17 Thread Andreas Rheinhardt
Gyan Doshi: > > > On 2022-06-16 02:39 pm, Gyan Doshi wrote: >> Stores wallclock time for the first packet received with a pts. > > Comments? >> --- >>   doc/APIchanges |  3 +++ >>   libavformat/avformat.h | 10 ++ >>   libavformat/demux.c    |  3 +++ >>   libavformat/options.c  | 

Re: [FFmpeg-devel] [PATCH] avformat: add AVFormatContext.first_pts_wallclock

2022-06-17 Thread Gyan Doshi
On 2022-06-16 02:39 pm, Gyan Doshi wrote: Stores wallclock time for the first packet received with a pts. Comments? --- doc/APIchanges | 3 +++ libavformat/avformat.h | 10 ++ libavformat/demux.c| 3 +++ libavformat/options.c | 1 + libavformat/version.h | 2

[FFmpeg-devel] [PATCH] avformat: add AVFormatContext.first_pts_wallclock

2022-06-16 Thread Gyan Doshi
Stores wallclock time for the first packet received with a pts. --- doc/APIchanges | 3 +++ libavformat/avformat.h | 10 ++ libavformat/demux.c| 3 +++ libavformat/options.c | 1 + libavformat/version.h | 2 +- 5 files changed, 18 insertions(+), 1 deletion(-) diff --git