Re: [FFmpeg-devel] [PATCH] lavf/formats: more logical testing of inputs and outputs.

2020-09-08 Thread Nicolas George
Andreas Rheinhardt (12020-08-23): > IIRC lavf = libavformat, lavfi = libavfilter. But I might be wrong. Fixed and pushed. > The change itself is ok; I wondered whether I should send a patch for > this, but I dislike patches designed to make an analyzer happy. But > given that it is possible for c

Re: [FFmpeg-devel] [PATCH] lavf/formats: more logical testing of inputs and outputs.

2020-08-23 Thread Andreas Rheinhardt
Nicolas George: > ff_set_common_formats() is currently only called after > graph_check_validity(), guaranteeing that inputs and outputs > are connected. > If we want to support configuring partially-connected graphs, > we will have a lot of redesign to do anyway. > > Fix CID 1466262 / 1466263. >

[FFmpeg-devel] [PATCH] lavf/formats: more logical testing of inputs and outputs.

2020-08-23 Thread Nicolas George
ff_set_common_formats() is currently only called after graph_check_validity(), guaranteeing that inputs and outputs are connected. If we want to support configuring partially-connected graphs, we will have a lot of redesign to do anyway. Fix CID 1466262 / 1466263. Signed-off-by: Nicolas George -