Browse Source

ffmpeg_opt: fix pointer types

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
a46c565796
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ffmpeg_opt.c

+ 2
- 2
ffmpeg_opt.c View File

@@ -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;



Loading…
Cancel
Save