summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-12-12 11:52:27 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-12-12 11:52:27 +0000
commit8540e8c3eca73b18b7b5bc7f0b937007b0f81ddd (patch)
tree5b26fa19548f912159e3324ff375ebbeae5746ff /ffmpeg.c
parente11910120ab0b7519dc8f2a5ee160e69016874c6 (diff)
Show which bitstreamfilters were compiled in, similar to the protocols etc
enumerations. Originally committed as revision 11203 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 0f02c79ca1..c656663b5f 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3322,6 +3322,7 @@ static void opt_show_formats(void)
AVOutputFormat *ofmt;
URLProtocol *up;
AVCodec *p, *p2;
+ AVBitStreamFilter *bsf;
const char *last_name;
printf("File formats:\n");
@@ -3417,6 +3418,11 @@ static void opt_show_formats(void)
}
printf("\n");
+ printf("Bitstream filters:\n");
+ for(bsf = first_bitstream_filter; bsf != NULL; bsf = bsf->next)
+ printf(" %s", bsf->name);
+ printf("\n");
+
printf("Supported file protocols:\n");
for(up = first_protocol; up != NULL; up = up->next)
printf(" %s:", up->name);