Implement in AVFilterGraph the scale_sws_opts field, and pass its

value in the args for the auto-inserted scale filters.

Originally committed as revision 17547 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini
2009-02-23 23:45:21 +00:00
parent cacb82134e
commit 39c07b8e44
3 changed files with 7 additions and 2 deletions

View File

@ -27,6 +27,8 @@
typedef struct AVFilterGraph {
unsigned filter_count;
AVFilterContext **filters;
char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
} AVFilterGraph;
/**