OSDN Git Service

avfilter/avfiltergraph.h: Move public field out of the private fields
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 24 Feb 2013 17:51:23 +0000 (18:51 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 24 Feb 2013 19:31:56 +0000 (20:31 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/avfiltergraph.h

index 3644aa2..3965412 100644 (file)
@@ -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;
 
 /**