ffdshow 里 ffmpeg在VC6下编译的问题
const int64_t one= 1LL<<32;
编译时会报错
error C2065: 'L' : undeclared identifier
LL 改成 L了会不会影响结果?
不知什么改正?
Sure!
You should do:
const int64_t one= ((int64_t)1)<<32;
ffdshow 里 ffmpeg在VC6下编译的问题
const int64_t one= 1LL<<32;
编译时会报错
error C2065: 'L' : undeclared identifier
LL 改成 L了会不会影响结果?
不知什么改正?
Sure!
You should do:
const int64_t one= ((int64_t)1)<<32;