Commit a46c5657 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg_opt: fix pointer types

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 73db0bf1
...@@ -1978,8 +1978,8 @@ static int opt_data_frames(void *optctx, const char *opt, const char *arg) ...@@ -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) static int opt_default_new(OptionsContext *o, const char *opt, const char *arg)
{ {
int ret; int ret;
AVCodecContext *cbak = codec_opts; AVDictionary *cbak = codec_opts;
AVCodecContext *fbak = format_opts; AVDictionary *fbak = format_opts;
codec_opts = NULL; codec_opts = NULL;
format_opts = NULL; format_opts = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment