summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-02-23 23:45:21 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-02-23 23:45:21 +0000
commit39c07b8e44e2c93fb6b1fc5d8f5d696a64e47eee (patch)
tree22bd6a097e12c78cba94da698407305fa8ae5a58 /libavfilter/avfiltergraph.h
parentcacb82134e486284438ff23395faa746f461e657 (diff)
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.h2
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;
/**