FFmpeg错误a parenthesized type followed by an initializer list is a non-standard explicit type convers

FFmpeg错误

a parenthesized type followed by an initializer list is a non-standard explicit type convers
error C4576: 后跟初始值设定项列表的带圆括号类型是一个非标准的显式类型转换语法
在这里插入图片描述

查看原代码

/**
  Convenience macro, the return value should be used only directly in
  function arguments but never stand-alone.
  方便的宏,返回值只能直接在函数参数中使用,而不能单独使用
 */
#define av_ts2timestr(ts, tb) av_ts_make_time_string((char[AV_TS_MAX_STRING_SIZE]){0}, ts, tb)

解决方案

在调用该函数的文件开始加上以下代码:

char av_ts_buff[AV_TS_MAX_STRING_SIZE] = { 0 };
#define av_ts2timestr(ts, tb) av_ts_make_time_string(av_ts_buff, ts, tb)

在这里插入图片描述

参考

error C4576: 后跟初始值设定项列表的带圆括号类型是一个非标准的显式类型转换语法

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值