diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-11-04 10:02:27 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-11-09 19:05:34 +0100 |
commit | 0f8bdfe3e807276d2a6f1799a7cc111cf78434bd (patch) | |
tree | e68bb715a962a7043d444ff1bea0c819bdeb2bc3 /ffmpeg.h | |
parent | ef8f293472851e77800bc6bd8004d7b27ec4a2bf (diff) | |
download | ffmpeg-0f8bdfe3e807276d2a6f1799a7cc111cf78434bd.tar.gz |
ffmpeg: store value of -filter and -filter_script per-stream option in OutputStream struct
Avoid the need for multiple potentially inconsistent access operations,
slightly factorize code.
Diffstat (limited to 'ffmpeg.h')
-rw-r--r-- | ffmpeg.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -357,6 +357,8 @@ typedef struct OutputStream { OutputFilter *filter; char *avfilter; + char *filters; ///< filtergraph associated to the -filter option + char *filters_script; ///< filtergraph script associated to the -filter_script option int64_t sws_flags; AVDictionary *opts; |