Feature: remove module of postproc

pull/221/head
xufuji456 3 years ago
parent 831497bcda
commit 35415d6982
  1. 4
      app/src/main/cpp/ffmpeg/cmdutils.c
  2. 4
      app/src/main/cpp/ffmpeg/ffprobe.c

@ -35,7 +35,7 @@
#include "libavfilter/avfilter.h" #include "libavfilter/avfilter.h"
#include "libswscale/swscale.h" #include "libswscale/swscale.h"
#include "libswresample/swresample.h" #include "libswresample/swresample.h"
#include "libpostproc/postprocess.h" //#include "libpostproc/postprocess.h"
#include "libavutil/attributes.h" #include "libavutil/attributes.h"
#include "libavutil/avassert.h" #include "libavutil/avassert.h"
#include "libavutil/avstring.h" #include "libavutil/avstring.h"
@ -1130,7 +1130,7 @@ static void print_all_libs_info(int flags, int level)
PRINT_LIB_INFO(avfilter, AVFILTER, flags, level); PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
PRINT_LIB_INFO(swscale, SWSCALE, flags, level); PRINT_LIB_INFO(swscale, SWSCALE, flags, level);
PRINT_LIB_INFO(swresample, SWRESAMPLE, flags, level); PRINT_LIB_INFO(swresample, SWRESAMPLE, flags, level);
PRINT_LIB_INFO(postproc, POSTPROC, flags, level); // PRINT_LIB_INFO(postproc, POSTPROC, flags, level);
} }
static void print_program_info(int flags, int level) static void print_program_info(int flags, int level)

@ -48,7 +48,7 @@
#include "libavutil/timestamp.h" #include "libavutil/timestamp.h"
#include "libswscale/swscale.h" #include "libswscale/swscale.h"
#include "libswresample/swresample.h" #include "libswresample/swresample.h"
#include "libpostproc/postprocess.h" //#include "libpostproc/postprocess.h"
#include "cmdutils.h" #include "cmdutils.h"
#include "libavutil/thread.h" #include "libavutil/thread.h"
@ -3169,7 +3169,7 @@ static void ffprobe_show_library_versions(WriterContext *w)
SHOW_LIB_VERSION(avfilter, AVFILTER); SHOW_LIB_VERSION(avfilter, AVFILTER);
SHOW_LIB_VERSION(swscale, SWSCALE); SHOW_LIB_VERSION(swscale, SWSCALE);
SHOW_LIB_VERSION(swresample, SWRESAMPLE); SHOW_LIB_VERSION(swresample, SWRESAMPLE);
SHOW_LIB_VERSION(postproc, POSTPROC); // SHOW_LIB_VERSION(postproc, POSTPROC);
writer_print_section_footer(w); writer_print_section_footer(w);
} }

Loading…
Cancel
Save