Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-01 15:47:53 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-01 15:48:55 +0400
commit46f4b468e2102467aadf5b91e44b8a0607202ee2 (patch)
tree44d63ca9623dcdb86b76baa49534978c4fc4c7c8 /cmdutils.c
parente20f2dc048fd1fccda7ab56fbadd53054439f452 (diff)
parentcb6f8245aed2c26fe95c30cd68c45983277a945a (diff)
Merge commit 'cb6f8245aed2c26fe95c30cd68c45983277a945a'
* commit 'cb6f8245aed2c26fe95c30cd68c45983277a945a': cmdutils: Allow calling filter_codec_opts without a set encoder pnm: Use av_pix_fmt_desc_get instead of accessing the array directly Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmdutils.c b/cmdutils.c
index 36a80c6740..c6fde336bd 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -1749,10 +1749,8 @@ AVDictionary *filter_codec_opts(AVDictionary *opts, enum AVCodecID codec_id,
if (!codec)
codec = s->oformat ? avcodec_find_encoder(codec_id)
: avcodec_find_decoder(codec_id);
- if (!codec)
- return NULL;
- switch (codec->type) {
+ switch (st->codec->codec_type) {
case AVMEDIA_TYPE_VIDEO:
prefix = 'v';
flags |= AV_OPT_FLAG_VIDEO_PARAM;