X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=doc%2Fwriting_filters.txt;h=5cd4ecd6a4b01b1fced38d8c24e5eb8c0087b4f0;hb=55b56a8d6a061db7dff730341f062086f65d4bd4;hp=66ebb532433d824ec3f8caaf8105e1477206600c;hpb=d1c8b9660848589ce4f1ac6e8ab337d9de495fbc;p=ffmpeg diff --git a/doc/writing_filters.txt b/doc/writing_filters.txt index 66ebb532433..5cd4ecd6a4b 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 ==================