aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhao Zhili <zhilizhao@tencent.com>2025-07-18 19:32:42 +0800
committerNiklas Haas <git@haasn.dev>2025-07-18 13:44:51 +0200
commita218cafe4d3be005ab0c61130f90db4d21afb5db (patch)
tree35e30071b7af8135363eb618872ab2d349bc6f32
parentbfab0262980550097ea6672a91834c576a8320c0 (diff)
downloadffmpeg-a218cafe4d3be005ab0c61130f90db4d21afb5db.tar.gz
avfilter/vf_blackdetect: Fix header guard
Fix fate-source failure.
-rw-r--r--libavfilter/vf_blackdetect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/vf_blackdetect.h b/libavfilter/vf_blackdetect.h
index 361da2c5bc..838a0355df 100644
--- a/libavfilter/vf_blackdetect.h
+++ b/libavfilter/vf_blackdetect.h
@@ -16,8 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef AVFILTER_VF_BLACKDETECT_H
-#define AVFILTER_VF_BLACKDETECT_H
+#ifndef AVFILTER_BLACKDETECT_H
+#define AVFILTER_BLACKDETECT_H
#include <stddef.h>
#include <stdint.h>
@@ -68,4 +68,4 @@ static inline ff_blackdetect_fn ff_blackdetect_get_fn(int depth)
return fn;
}
-#endif /* AVFILTER_VF_BLACKDETECT_H */
+#endif /* AVFILTER_BLACKDETECT_H */