diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-02-24 18:51:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-24 20:31:56 +0100 |
commit | c4c702b6d3b42b5ae25d96982f283b4028a83574 (patch) | |
tree | 521b377eb41906d31b48d9aef0d08fa6cbd7c74e | |
parent | 2abbe6d07a34ac49f7a3280293e30f65f183b3f1 (diff) | |
download | ffmpeg-c4c702b6d3b42b5ae25d96982f283b4028a83574.tar.gz |
avfilter/avfiltergraph.h: Move public field out of the private fields
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/avfiltergraph.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index 3644aa2023..3965412803 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -31,7 +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 char *aresample_swr_opts; ///< swr options to use for the auto-inserted aresample filters, Access ONLY through AVOptions /** @@ -45,7 +45,6 @@ typedef struct AVFilterGraph { int sink_links_count; unsigned disable_auto_convert; - char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters } AVFilterGraph; /** |