summaryrefslogtreecommitdiff
path: root/doc/writing_filters.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/writing_filters.txt')
-rw-r--r--doc/writing_filters.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/writing_filters.txt b/doc/writing_filters.txt
index 66ebb53243..5cd4ecd6a4 100644
--- a/doc/writing_filters.txt
+++ b/doc/writing_filters.txt
@@ -38,14 +38,14 @@ the build system and the C:
--- after running configure ---
- $ grep FOOBAR config.mak
+ $ grep FOOBAR ffbuild/config.mak
CONFIG_FOOBAR_FILTER=yes
$ grep FOOBAR config.h
#define CONFIG_FOOBAR_FILTER 1
-CONFIG_FOOBAR_FILTER=yes from the config.mak is later used to enable the filter in
-libavfilter/Makefile and CONFIG_FOOBAR_FILTER=1 from the config.h will be used
-for registering the filter in libavfilter/allfilters.c.
+CONFIG_FOOBAR_FILTER=yes from the ffbuild/config.mak is later used to enable
+the filter in libavfilter/Makefile and CONFIG_FOOBAR_FILTER=1 from the config.h
+will be used for registering the filter in libavfilter/allfilters.c.
Filter code layout
==================