diff options
author | Michael Niedermayer | 2013-05-08 23:43:19 +0200 |
---|---|---|
committer | Michael Niedermayer | 2013-05-08 23:55:06 +0200 |
commit | 33ff943f70f04035942a68c725f6cf3426df0677 (patch) | |
tree | e71c90d85ca1e32335ed01345d8c4e03854c5ca2 /ffmpeg.h | |
parent | 410905f7fd0d7f3274f3260aa508dc50e174105b (diff) |
ffmpeg: add -apad option which injects a apad filter only in the presence of video streams
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r-- | ffmpeg.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -178,6 +178,8 @@ typedef struct OptionsContext { int nb_passlogfiles; SpecifierOpt *guess_layout_max; int nb_guess_layout_max; + SpecifierOpt *apad; + int nb_apad; } OptionsContext; typedef struct InputFilter { @@ -356,6 +358,7 @@ typedef struct OutputStream { AVDictionary *opts; AVDictionary *swr_opts; AVDictionary *resample_opts; + char *apad; int finished; /* no more packets should be written for this stream */ int unavailable; /* true if the steram is unavailable (possibly temporarily) */ int stream_copy; |