Browse Source

Fix ffmpeg -codecs output.

(cherry picked from commit f6492476a6)
tags/n0.10.1
Carl Eugen Hoyos 14 years ago
parent
commit
569cb94869
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmdutils.c

+ 1
- 1
cmdutils.c View File

@@ -806,7 +806,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;
}


Loading…
Cancel
Save