mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-25 14:09:14 +00:00
No longer build libpostproc by default
update documentation to inform developers that it may be removed in a later release. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
This commit is contained in:
parent
68e252f548
commit
014f8d8106
4 changed files with 8 additions and 3 deletions
|
@ -33,7 +33,9 @@
|
|||
#include "libavfilter/avfilter.h"
|
||||
#include "libavdevice/avdevice.h"
|
||||
#include "libswscale/swscale.h"
|
||||
#if CONFIG_POSTPROC
|
||||
#include "libpostproc/postprocess.h"
|
||||
#endif
|
||||
#include "libavutil/avstring.h"
|
||||
#include "libavutil/mathematics.h"
|
||||
#include "libavutil/parseutils.h"
|
||||
|
@ -496,7 +498,9 @@ static void print_all_libs_info(int flags, int level)
|
|||
PRINT_LIB_INFO(avdevice, AVDEVICE, flags, level);
|
||||
PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
|
||||
PRINT_LIB_INFO(swscale, SWSCALE, flags, level);
|
||||
#if CONFIG_POSTPROC
|
||||
PRINT_LIB_INFO(postproc, POSTPROC, flags, level);
|
||||
#endif
|
||||
}
|
||||
|
||||
void show_banner(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue