diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-20 04:21:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-20 04:21:29 +0100 |
commit | a46c565796d92ef27da1eba99428c7ca41be0dd8 (patch) | |
tree | 97975d627b9f19ae110037c4c0f24a949227a27b /ffmpeg_opt.c | |
parent | 73db0bf1b06084022db5f42377b3b7960b3d3f5e (diff) | |
download | ffmpeg-a46c565796d92ef27da1eba99428c7ca41be0dd8.tar.gz |
ffmpeg_opt: fix pointer types
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg_opt.c')
-rw-r--r-- | ffmpeg_opt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index d2478701d2..c5e8e62d7c 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -1978,8 +1978,8 @@ static int opt_data_frames(void *optctx, const char *opt, const char *arg) static int opt_default_new(OptionsContext *o, const char *opt, const char *arg) { int ret; - AVCodecContext *cbak = codec_opts; - AVCodecContext *fbak = format_opts; + AVDictionary *cbak = codec_opts; + AVDictionary *fbak = format_opts; codec_opts = NULL; format_opts = NULL; |