// mFrameCounter is the free running counter, incremented on every
// successful queueBuffer call and buffer allocation.
uint64_t mFrameCounter;
mFrameCounter
在每次 BufferQueueProducer::queueBuffer() 调用成功时递增,可以理解为生产者生产的 buffer 帧数。mFrameCounter
递增之后会设置给 BufferSlot 的 mFrameNumber
。