Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-12-19 06:27:35 +0400
committerJustin Ruggles <justin.ruggles@gmail.com>2013-02-24 02:07:54 +0400
commit9f1223562e134bac6345a465870b9d56ff7d60cf (patch)
tree4ef2f17b321900ee9a608831ab252c16d9f215d4 /libavfilter/avfiltergraph.h
parentd7c450436fcb9d3ecf59884a574e7684183e753d (diff)
lavfi: connect libavresample options to af_resample via AVFilterGraph
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r--libavfilter/avfiltergraph.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h
index 7c4672dbc9..62308982d0 100644
--- a/libavfilter/avfiltergraph.h
+++ b/libavfilter/avfiltergraph.h
@@ -31,6 +31,7 @@ typedef struct AVFilterGraph {
AVFilterContext **filters;
char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
+ char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters
} AVFilterGraph;
/**