Browse Source

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>
tags/n0.10
Reinhard Tartler 13 years ago
parent
commit
014f8d8106
4 changed files with 8 additions and 3 deletions
  1. +2
    -0
      Changelog
  2. +4
    -0
      cmdutils.c
  3. +1
    -2
      configure
  4. +1
    -1
      doc/APIchanges

+ 2
- 0
Changelog View File

@@ -5,6 +5,8 @@ releases are sorted from youngest to oldest.
version <next>:

- Automatic thread count based on detection number of (available) CPU cores
- Deprecate libpostproc. If desired, the switch --enable-postproc will
enable it but it may be removed in a later Libav release.


version 0.8_beta1:


+ 4
- 0
cmdutils.c View File

@@ -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)


+ 1
- 2
configure View File

@@ -89,7 +89,7 @@ Configuration options:
--disable-avcodec disable libavcodec build
--disable-avformat disable libavformat build
--disable-swscale disable libswscale build
--disable-postproc disable libpostproc build
--enable-postproc enable libpostproc build (deprecated) [no]
--disable-avfilter disable video filter support [no]
--disable-pthreads disable pthreads [auto]
--disable-w32threads disable Win32 threads [auto]
@@ -1680,7 +1680,6 @@ enable avdevice
enable avfilter
enable avformat
enable avutil
enable postproc
enable swscale

enable asm


+ 1
- 1
doc/APIchanges View File

@@ -6,7 +6,7 @@ libavcodec: 2011-04-18
libavdevice: 2011-04-18
libavfilter: 2011-04-18
libavformat: 2011-04-18
libpostproc: 2011-04-18
libpostproc: 2011-04-18 (deprecated, to be removed later)
libswscale: 2011-06-20
libavutil: 2011-04-18



Loading…
Cancel
Save