summaryrefslogtreecommitdiff
path: root/ffmpeg.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-08-08 13:33:46 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-08 14:44:15 +0200
commit6dbaeed6b7b7c858dffdf141b725506b887660e7 (patch)
tree4a1cd9d605da56b75e285258e92ae46d5994df85 /ffmpeg.h
parentd3d776ccf94c988755efb264e318e97a11fea194 (diff)
ffmpeg: switch swscale option handling to AVDictionary similar to what the other subsystems use
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r--ffmpeg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.h b/ffmpeg.h
index 03ba2d0d99..6544e6fb05 100644
--- a/ffmpeg.h
+++ b/ffmpeg.h
@@ -432,8 +432,8 @@ typedef struct OutputStream {
char *filters; ///< filtergraph associated to the -filter option
char *filters_script; ///< filtergraph script associated to the -filter_script option
- int64_t sws_flags;
AVDictionary *encoder_opts;
+ AVDictionary *sws_dict;
AVDictionary *swr_opts;
AVDictionary *resample_opts;
AVDictionary *bsf_args;