summaryrefslogtreecommitdiff
path: root/ffmpeg.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-16 23:50:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-17 00:06:12 +0200
commit3e0b29ccd075039d4494cafd4738bdf8322068b0 (patch)
tree41467c62f30ce98d816a2a2a1a7a8b3142891e11 /ffmpeg.h
parenta07e9d72a1d97dc6a4d57e1f7b708e54e7db83f5 (diff)
ffmpeg: Make video filter graph reinit user selectable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r--ffmpeg.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ffmpeg.h b/ffmpeg.h
index e1b223fc02..292670a59f 100644
--- a/ffmpeg.h
+++ b/ffmpeg.h
@@ -161,6 +161,8 @@ typedef struct OptionsContext {
int nb_copy_prior_start;
SpecifierOpt *filters;
int nb_filters;
+ SpecifierOpt *reinit_filters;
+ int nb_reinit_filters;
SpecifierOpt *fix_sub_duration;
int nb_fix_sub_duration;
SpecifierOpt *pass;
@@ -253,6 +255,8 @@ typedef struct InputStream {
* currently video and audio only */
InputFilter **filters;
int nb_filters;
+
+ int reinit_filters;
} InputStream;
typedef struct InputFile {