summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-01-10 01:02:52 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-01-10 01:02:52 +0000
commit2208741afe5ba926c9c87b726fe4a7419f88fbd1 (patch)
tree172466e508463e26a6b61b3cbfb320c0b79a2268 /cmdutils.c
parenta20db8a35cf2050b3d646abdcd06ff21c8f53ee7 (diff)
Print libavdevice version.
Originally committed as revision 11484 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/cmdutils.c b/cmdutils.c
index 46322e939d..86efa79ef4 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -24,6 +24,7 @@
#include <errno.h>
#include "avformat.h"
+#include "avdevice.h"
#include "cmdutils.h"
#include "avstring.h"
#include "version.h"
@@ -162,6 +163,7 @@ void show_banner(const char *program_name, int program_birth_year)
fprintf(stderr, " libavutil version: " AV_STRINGIFY(LIBAVUTIL_VERSION) "\n");
fprintf(stderr, " libavcodec version: " AV_STRINGIFY(LIBAVCODEC_VERSION) "\n");
fprintf(stderr, " libavformat version: " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\n");
+ fprintf(stderr, " libavdevice version: " AV_STRINGIFY(LIBAVDEVICE_VERSION) "\n");
fprintf(stderr, " built on " __DATE__ " " __TIME__);
#ifdef __GNUC__
fprintf(stderr, ", gcc: " __VERSION__ "\n");
@@ -171,12 +173,13 @@ void show_banner(const char *program_name, int program_birth_year)
}
void show_version(const char *program_name) {
- /* TODO: add function interface to avutil and avformat */
+ /* TODO: add function interface to avutil and avformat avdevice*/
printf("%s " FFMPEG_VERSION "\n", program_name);
printf("libavutil %d\n"
"libavcodec %d\n"
- "libavformat %d\n",
- LIBAVUTIL_BUILD, avcodec_build(), LIBAVFORMAT_BUILD);
+ "libavformat %d\n"
+ "libavdevice %d\n",
+ LIBAVUTIL_BUILD, avcodec_build(), LIBAVFORMAT_BUILD, LIBAVDEVICE_BUILD);
}
void show_license(void)