diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-23 23:45:21 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-23 23:45:21 +0000 |
commit | 39c07b8e44e2c93fb6b1fc5d8f5d696a64e47eee (patch) | |
tree | 22bd6a097e12c78cba94da698407305fa8ae5a58 /libavfilter/avfiltergraph.h | |
parent | cacb82134e486284438ff23395faa746f461e657 (diff) | |
download | ffmpeg-39c07b8e44e2c93fb6b1fc5d8f5d696a64e47eee.tar.gz |
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
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r-- | libavfilter/avfiltergraph.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index 716d9199f1..88820ac7f4 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -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; /** |