c/c++ NV12转I420P
NV12及I420格式不再赘述,下面代码只适用width与stride相等的情况。如果stride与width不相等的时候,需要按照步长计算。思路1:重新new一块I420buff,把nv12中UV分量分别复制到I420对应的位置中#include <cstdint>void Nv12toI420(uint8_t nv12[], int width, int height, uint8_t** i420Frame){ int yByteSize = width * h