diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-09-29 23:06:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-09-29 23:06:51 +0000 |
commit | 0093ebc20aeee6d184aff047d30d93b63186330b (patch) | |
tree | 5d667339d53be58fe22d7c718369673dbeb50794 /ffprobe.c | |
parent | f34fcdc8b67fb477563a8fc4284434b707de3d3b (diff) | |
download | ffmpeg-0093ebc20aeee6d184aff047d30d93b63186330b.tar.gz |
User application side of Codec specific parameters.
Originally committed as revision 25266 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -269,7 +269,7 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename) AVFormatContext *fmt_ctx; fmt_ctx = avformat_alloc_context(); - set_context_opts(fmt_ctx, avformat_opts, AV_OPT_FLAG_DECODING_PARAM); + set_context_opts(fmt_ctx, avformat_opts, AV_OPT_FLAG_DECODING_PARAM, NULL); if ((err = av_open_input_file(&fmt_ctx, filename, iformat, 0, NULL)) < 0) { print_error(filename, err); |