Re: [FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-13 Thread Anton Khirnov
Quoting Gyan Doshi (2023-07-13 21:20:32) > > > On 2023-07-12 07:14 pm, Anton Khirnov wrote: > > Quoting Gyan Doshi (2023-07-12 15:31:57) > >> > >> On 2023-07-12 06:51 pm, James Almer wrote: > >>> On 7/12/2023 10:14 AM, Gyan Doshi wrote: > > On 2023-07-12 06:12 pm, James Almer wrote: >

Re: [FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-13 Thread Gyan Doshi
On 2023-07-12 07:14 pm, Anton Khirnov wrote: Quoting Gyan Doshi (2023-07-12 15:31:57) On 2023-07-12 06:51 pm, James Almer wrote: On 7/12/2023 10:14 AM, Gyan Doshi wrote: On 2023-07-12 06:12 pm, James Almer wrote: On 7/9/2023 9:57 AM, Anton Khirnov wrote: This decoding flag makes

Re: [FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-13 Thread Anton Khirnov
If nobody has further comments, I intend to push the patch tomorrow. -- Anton Khirnov ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email

Re: [FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-12 Thread Anton Khirnov
Quoting Gyan Doshi (2023-07-12 15:31:57) > > > On 2023-07-12 06:51 pm, James Almer wrote: > > On 7/12/2023 10:14 AM, Gyan Doshi wrote: > >> > >> > >> On 2023-07-12 06:12 pm, James Almer wrote: > >>> On 7/9/2023 9:57 AM, Anton Khirnov wrote: > This decoding flag makes decoders drop all

Re: [FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-12 Thread Gyan Doshi
On 2023-07-12 06:51 pm, James Almer wrote: On 7/12/2023 10:14 AM, Gyan Doshi wrote: On 2023-07-12 06:12 pm, James Almer wrote: On 7/9/2023 9:57 AM, Anton Khirnov wrote: This decoding flag makes decoders drop all frames after a parameter change, but what exactly constitutes a parameter

Re: [FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-12 Thread Gyan Doshi
On 2023-07-12 06:12 pm, James Almer wrote: On 7/9/2023 9:57 AM, Anton Khirnov wrote: This decoding flag makes decoders drop all frames after a parameter change, but what exactly constitutes a parameter change is not well defined and will typically depend on the exact use case. This

Re: [FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-12 Thread James Almer
On 7/9/2023 9:57 AM, Anton Khirnov wrote: This decoding flag makes decoders drop all frames after a parameter change, but what exactly constitutes a parameter change is not well defined and will typically depend on the exact use case. This functionality then does not belong in libavcodec, but

[FFmpeg-devel] [PATCH] lavc: deprecate AV_CODEC_FLAG_DROPCHANGED

2023-07-09 Thread Anton Khirnov
This decoding flag makes decoders drop all frames after a parameter change, but what exactly constitutes a parameter change is not well defined and will typically depend on the exact use case. This functionality then does not belong in libavcodec, but rather in user code --- doc/APIchanges