Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| ... | ... |
@@ -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 |
|