123456789101112131415161718192021222324252627 |
- #pragma once
-
- class VideoRenderer
- {
- public:
- VideoRenderer();
-
- void OnArgb32FrameReady(const void* data, const int stride, const int frame_width, const int frame_height);
- void StartRender(bool bStart);
- static void FrameCallback(void* user_data,void* data,const int32_t stride,const int32_t frame_width,const int32_t frame_height);
- ~VideoRenderer();
-
-
-
- private:
-
-
-
-
-
- bool start_;
-
- };
|