diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-16 23:50:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-17 00:06:12 +0200 |
commit | 3e0b29ccd075039d4494cafd4738bdf8322068b0 (patch) | |
tree | 41467c62f30ce98d816a2a2a1a7a8b3142891e11 /ffmpeg.h | |
parent | a07e9d72a1d97dc6a4d57e1f7b708e54e7db83f5 (diff) | |
download | ffmpeg-3e0b29ccd075039d4494cafd4738bdf8322068b0.tar.gz |
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.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 { |