Browse code

cmdutils: print swr versions too

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2011/12/22 11:09:58
Showing 1 changed files
... ...
@@ -33,6 +33,7 @@
33 33
 #include "libavfilter/avfilter.h"
34 34
 #include "libavdevice/avdevice.h"
35 35
 #include "libswscale/swscale.h"
36
+#include "libswresample/swresample.h"
36 37
 #include "libpostproc/postprocess.h"
37 38
 #include "libavutil/avstring.h"
38 39
 #include "libavutil/mathematics.h"
... ...
@@ -579,6 +580,7 @@ static void print_all_libs_info(int flags, int level)
579 579
     PRINT_LIB_INFO(avdevice, AVDEVICE, flags, level);
580 580
     PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
581 581
     PRINT_LIB_INFO(swscale,  SWSCALE,  flags, level);
582
+    PRINT_LIB_INFO(swresample,SWRESAMPLE,  flags, level);
582 583
     PRINT_LIB_INFO(postproc, POSTPROC, flags, level);
583 584
 }
584 585