最大支持的图像大小,sws_getContext 源码中:

 00839     if(srcW > VOFW || dstW > VOFW) {
00840         av_log(NULL, AV_LOG_ERROR, "swScaler: Compile-time maximum width is "AV_STRINGIFY(VOFW)" change VOF/VOFW and recompile\n");
00841         return NULL;
00842     }


#define VOFW   2048

http://ffmpeg.org/doxygen/0.6/libswscale_2utils_8c-source.html#l00782

 

相关文章:

  • 2022-12-23
  • 2021-07-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-17
猜你喜欢
  • 2022-12-23
  • 2021-07-09
  • 2021-10-25
  • 2022-12-23
  • 2021-07-27
  • 2022-12-23
  • 2021-06-06
相关资源
相似解决方案