Re: [FFmpeg-devel] [PATCH 1/2] avformat: add avformat_query_seekable

2025-04-13 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Gyan > Doshi > Sent: Montag, 14. April 2025 06:24 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/2] avformat: add > avformat_query_seekable > > > > On 2025-

Re: [FFmpeg-devel] [PATCH 1/2] avformat: add avformat_query_seekable

2025-04-13 Thread Gyan Doshi
On 2025-04-13 09:39 pm, softworkz . wrote: -Original Message- From: ffmpeg-devel On Behalf Of Gyan Doshi Sent: Sonntag, 13. April 2025 13:16 To:ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 1/2] avformat: add avformat_query_seekable Utility function to report seekability

Re: [FFmpeg-devel] [PATCH 1/2] avformat: add avformat_query_seekable

2025-04-13 Thread Gyan Doshi
On 2025-04-13 10:12 pm, Zhao Zhili wrote: On Apr 13, 2025, at 19:15, Gyan Doshi wrote: Utility function to report seekability features for a given input. Useful for ffprobe and to extend seek possibilities in fftools. --- doc/APIchanges | 3 +++ libavformat/avformat.h | 22

Re: [FFmpeg-devel] [PATCH 1/2] avformat: add avformat_query_seekable

2025-04-13 Thread Zhao Zhili
> On Apr 13, 2025, at 19:15, Gyan Doshi wrote: > > Utility function to report seekability features for a given input. > > Useful for ffprobe and to extend seek possibilities in fftools. > --- > doc/APIchanges | 3 +++ > libavformat/avformat.h | 22 ++ > libavformat/seek.

Re: [FFmpeg-devel] [PATCH 1/2] avformat: add avformat_query_seekable

2025-04-13 Thread softworkz .
> -Original Message- > From: ffmpeg-devel On Behalf Of Gyan > Doshi > Sent: Sonntag, 13. April 2025 13:16 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 1/2] avformat: add > avformat_query_seekable > > Utility function to report seekability

[FFmpeg-devel] [PATCH 1/2] avformat: add avformat_query_seekable

2025-04-13 Thread Gyan Doshi
Utility function to report seekability features for a given input. Useful for ffprobe and to extend seek possibilities in fftools. --- doc/APIchanges | 3 +++ libavformat/avformat.h | 22 ++ libavformat/seek.c | 53 ++ libavform