Re: [FFmpeg-devel] [PATCH 3/9] avformat/avisynth: add read_frameprops option

2022-08-30 Thread Stephen Hutchinson
On 8/30/22 7:17 PM, Andreas Rheinhardt wrote: { "avisynth_flags", "set flags related to reading frame properties from script (AviSynth+ v3.7.1 or higher)", OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 1}, 0, 1, AV_OPT_FLAG_DECODING_PARAM, "flags" }, This is wrong. It should be { "avisynth_flags", "

Re: [FFmpeg-devel] [PATCH 3/9] avformat/avisynth: add read_frameprops option

2022-08-30 Thread Andreas Rheinhardt
Stephen Hutchinson: > On 8/28/22 8:41 PM, Andreas Rheinhardt wrote: >> This will make frameprops a global on-off which overrides everything >> else even if some of the "else" stuff has been enabled explicitly. Worse >> yet, if you want to disable everything except exactly one field, you >> have to

Re: [FFmpeg-devel] [PATCH 3/9] avformat/avisynth: add read_frameprops option

2022-08-30 Thread Stephen Hutchinson
On 8/28/22 8:41 PM, Andreas Rheinhardt wrote: This will make frameprops a global on-off which overrides everything else even if some of the "else" stuff has been enabled explicitly. Worse yet, if you want to disable everything except exactly one field, you have to leave frameprops enabled and dis

Re: [FFmpeg-devel] [PATCH 3/9] avformat/avisynth: add read_frameprops option

2022-08-28 Thread Andreas Rheinhardt
Stephen Hutchinson: > Allows turning the reading of frame properties entirely on and off. > Defaults to reading frame properties. > > Signed-off-by: Stephen Hutchinson > --- > libavformat/avisynth.c | 355 + > 1 file changed, 179 insertions(+), 176 deletio

[FFmpeg-devel] [PATCH 3/9] avformat/avisynth: add read_frameprops option

2022-08-28 Thread Stephen Hutchinson
Allows turning the reading of frame properties entirely on and off. Defaults to reading frame properties. Signed-off-by: Stephen Hutchinson --- libavformat/avisynth.c | 355 + 1 file changed, 179 insertions(+), 176 deletions(-) diff --git a/libavformat/av