sws_getContext() // 像素格式转换的上下文。会创建新的空间 struct SwsContext *sws_getCachedContext(); // 函数名补全。会根据传入的上下文到缓冲里面去找。 参数说明: 第一参数可以传NULL,默认会开辟一块新的空间。 srcW,srcH, srcFormat, 原始数据的宽高和原始像素格式(YUV420), dstW,dstH,dstFormat;...