diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-08 23:18:18 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-08 23:18:18 +0000 |
commit | d226c75084fa31dc12cbef7657ecbd6f7133d172 (patch) | |
tree | 95cd866709e1b62884124ed21a547a9551fd0521 | |
parent | 1f51da1b4afe0476cee8f5e608000661716d67b6 (diff) | |
download | ffmpeg-d226c75084fa31dc12cbef7657ecbd6f7133d172.tar.gz |
rename HAVE_VHOOK/BUILD_VHOOK to CONFIG_VHOOK
Originally committed as revision 6949 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | libavformat/framehook.c | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -45,7 +45,7 @@ else DEP_LIBS=libavcodec/$(LIBPREF)avcodec$(LIBSUF) libavformat/$(LIBPREF)avformat$(LIBSUF) endif -ifeq ($(BUILD_VHOOK),yes) +ifeq ($(CONFIG_VHOOK),yes) VHOOK=videohook INSTALLVHOOK=install-vhook endif @@ -205,7 +205,7 @@ endif ifeq ($(CONFIG_SWSCALER),yes) $(MAKE) -C libswscale depend endif -ifeq ($(BUILD_VHOOK),yes) +ifeq ($(CONFIG_VHOOK),yes) $(MAKE) -C vhook depend endif @@ -1835,8 +1835,8 @@ if test "$have_lrintf" = "yes" ; then echo "#define HAVE_LRINTF 1" >> $TMPH fi if test "$vhook" = "yes" ; then - echo "BUILD_VHOOK=yes" >> config.mak - echo "#define HAVE_VHOOK 1" >> $TMPH + echo "CONFIG_VHOOK=yes" >> config.mak + echo "#define CONFIG_VHOOK 1" >> $TMPH fi sws_version=`grep '#define LIBSWSCALE_VERSION ' "$source_path/libswscale/swscale.h" | sed 's/[^0-9\.]//g'` diff --git a/libavformat/framehook.c b/libavformat/framehook.c index e6624e80f8..c85296160b 100644 --- a/libavformat/framehook.c +++ b/libavformat/framehook.c @@ -41,7 +41,7 @@ static FrameHookEntry *first_hook; /* Returns 0 on OK */ int frame_hook_add(int argc, char *argv[]) { -#ifdef HAVE_VHOOK +#ifdef CONFIG_VHOOK void *loaded; FrameHookEntry *fhe, **fhep; |