| 25 | #include "avfilter.h" |
| 26 | |
| 27 | typedef struct AVFilterGraph { |
| 28 | unsigned filter_count; |
| 29 | AVFilterContext **filters; |
| 30 | |
| 31 | char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters |
| 32 | } AVFilterGraph; |
| 33 | |
| 34 | /** |
| 35 | * Gets a filter instance with name name from graph. |
nothing calls this directly
no outgoing calls
no test coverage detected