diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-17 23:51:22 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-17 23:51:22 +0100 |
commit | f6492476a63938cc66c51bf61c88407b7749f780 (patch) | |
tree | f514af38d30684bdf22e55980ea6068094b0bc4d | |
parent | 545e8879021a7026789158055d3b28133eafa91e (diff) | |
download | ffmpeg-f6492476a63938cc66c51bf61c88407b7749f780.tar.gz |
Fix ffmpeg -codecs output.
-rw-r--r-- | cmdutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c index 056849dd87..218c9f0b3a 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -804,7 +804,7 @@ int opt_codecs(const char *opt, const char *arg) if (p2 && strcmp(p->name, p2->name) == 0) { if (p->decode) decode = 1; - if (p->encode) + if (p->encode || p->encode2) encode = 1; cap |= p->capabilities; } |