diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-08 18:50:38 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-08 18:50:38 +0000 |
commit | 4a24ab64b16b273f6d24e7fbd84603a77fb30074 (patch) | |
tree | b70f81f2393530522b49c507221f4cc1f580abca | |
parent | 6bd859d67ea940dce5e675b86635f2d3739299c1 (diff) | |
download | ffmpeg-4a24ab64b16b273f6d24e7fbd84603a77fb30074.tar.gz |
Rename pp variable to postproc for consistency.
Originally committed as revision 12376 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 8 | ||||
-rwxr-xr-x | configure | 10 |
2 files changed, 9 insertions, 9 deletions
@@ -86,7 +86,7 @@ lib: $(MAKE) -C libavcodec all $(MAKE) -C libavformat all $(MAKE) -C libavdevice all - $(MAKE-$(CONFIG_PP)) -C libpostproc all + $(MAKE-$(CONFIG_POSTPROC)) -C libpostproc all $(MAKE-$(CONFIG_SWSCALER)) -C libswscale all $(MAKE-$(CONFIG_AVFILTER)) -C libavfilter all @@ -172,7 +172,7 @@ install-libs: $(MAKE) -C libavcodec install-libs $(MAKE) -C libavformat install-libs $(MAKE) -C libavdevice install-libs - $(MAKE-$(CONFIG_PP)) -C libpostproc install-libs + $(MAKE-$(CONFIG_POSTPROC)) -C libpostproc install-libs $(MAKE-$(CONFIG_SWSCALER)) -C libswscale install-libs $(MAKE-$(CONFIG_AVFILTER)) -C libavfilter install-libs @@ -181,7 +181,7 @@ install-headers: $(MAKE) -C libavcodec install-headers $(MAKE) -C libavformat install-headers $(MAKE) -C libavdevice install-headers - $(MAKE-$(CONFIG_PP)) -C libpostproc install-headers + $(MAKE-$(CONFIG_POSTPROC)) -C libpostproc install-headers $(MAKE) -C libswscale install-headers $(MAKE-$(CONFIG_AVFILTER)) -C libavfilter install-headers @@ -221,7 +221,7 @@ depend dep: .depend .vhookdep $(MAKE) -C libavcodec depend $(MAKE) -C libavformat depend $(MAKE) -C libavdevice depend - $(MAKE-$(CONFIG_PP)) -C libpostproc depend + $(MAKE-$(CONFIG_POSTPROC)) -C libpostproc depend $(MAKE-$(CONFIG_SWSCALER)) -C libswscale depend $(MAKE-$(CONFIG_AVFILTER)) -C libavfilter depend @@ -70,7 +70,7 @@ show_help(){ echo " and ffmpeg will be under GPL [default=no]" echo " --enable-nonfree allow use of nonfree code, the resulting libav*" echo " and ffmpeg will be unredistributable [default=no]" - echo " --enable-pp enable GPLed postprocessing support [default=no]" + echo " --enable-postproc enable GPLed postprocessing support [default=no]" echo " --enable-swscaler software scaler support [default=no]" echo " --enable-avfilter video filter support (replaces vhook) [default=no]" echo " --enable-avfilter-lavf video filters dependant on avformat [default=no]" @@ -658,8 +658,8 @@ CONFIG_LIST=" mpegaudio_hp network nonfree + postproc powerpc_perf - pp small swscaler vhook @@ -1347,7 +1347,7 @@ if ! enabled gpl; then shift enabled_any $@ && die "$name is under GPL and --enable-gpl is not specified." } - die_gpl_disabled "The Postprocessing code" pp + die_gpl_disabled "The Postprocessing code" postproc die_gpl_disabled "liba52" liba52 die_gpl_disabled "libx264" libx264 die_gpl_disabled "libxvidcore" libxvid @@ -1893,7 +1893,7 @@ echo "strip symbols ${dostrip-no}" echo "optimizations ${optimizations-no}" echo "static ${static-no}" echo "shared ${shared-no}" -echo "postprocessing support ${pp-no}" +echo "postprocessing support ${postproc-no}" echo "software scaler enabled ${swscaler-no}" echo "new filter support ${avfilter-no}" echo "filters using lavformat ${avfilter_lavf-no}" @@ -2175,7 +2175,7 @@ pkgconfig_generate_uninstalled libavformat "FFmpeg container format library" "$L pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "-lavdevice $extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION" pkgconfig_generate_uninstalled libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION" -if enabled pp; then +if enabled postproc; then pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION" -lpostproc "" pkgconfig_generate_uninstalled libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION" fi |