| 29 | * A linked-list of the inputs/outputs of the filter chain. |
| 30 | */ |
| 31 | typedef struct AVFilterInOut { |
| 32 | char *name; |
| 33 | AVFilterContext *filter; |
| 34 | int pad_idx; |
| 35 | |
| 36 | struct AVFilterInOut *next; |
| 37 | } AVFilterInOut; |
| 38 | |
| 39 | /** |
| 40 | * Adds a graph described by a string to a graph. |
nothing calls this directly
no outgoing calls
no test coverage detected