Re: [FFmpeg-devel] [PATCH] avfilter/avfilter: move enable_str expression parsing into avfilter_init_dict()

2021-02-07 Thread Nicolas George
Paul B Mahol (12021-02-05): > This ensures that needed arrays are always allocated and properly initialized. > > Previously if code would use only avfilter_init_dict() to set options for > filters > it would not allocate arrays for timeline processing thus it would crash if > user supplied

Re: [FFmpeg-devel] [PATCH] avfilter/avfilter: move enable_str expression parsing into avfilter_init_dict()

2021-02-05 Thread Paul B Mahol
Anybody have comments? This fixes crash. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avfilter/avfilter: move enable_str expression parsing into avfilter_init_dict()

2021-02-05 Thread Paul B Mahol
This ensures that needed arrays are always allocated and properly initialized. Previously if code would use only avfilter_init_dict() to set options for filters it would not allocate arrays for timeline processing thus it would crash if user supplied enable option for filter(s). Signed-off-by: