]> git.sesse.net Git - ffmpeg/blobdiff - doc/writing_filters.txt
Merge commit 'f96d07f4ec4193fb5293d7ac8f1324aac3c3ea07'
[ffmpeg] / doc / writing_filters.txt
index 66ebb532433d824ec3f8caaf8105e1477206600c..5cd4ecd6a4b01b1fced38d8c24e5eb8c0087b4f0 100644 (file)
@@ -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
 ==================