a). 自己写一个XXX.c文件,比如vf_transform.c,放在libavfilter目录下。代码可以参考其他filter;

b) 在libavfilter/allfilters.c添加一行: extern AVFilter ff_vf_transform;
c) 修改libavfilter/Makefile,添加一行:
OBJS-$(CONFIG_TRANSFORM_FILTER) += vf_transform.o
e) 修改config.mk 添加一行:CONFIG_TRANSFORM_FILTER=yes

相关文章:

  • 2021-07-10
  • 2021-07-20
  • 2022-02-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-04-27
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
相关资源
相似解决方案