/* * YuvDisplayer.h * * Created on: 2016年12月21日 * Author: xzl */ #ifndef YUVDISPLAYER_H_ #define YUVDISPLAYER_H_ #include #include "Util/onceToken.h" #ifdef __cplusplus extern "C" { #endif #include #include #ifdef __cplusplus } #endif namespace ZL { namespace Screen { class YuvDisplayer { public: YuvDisplayer(){ static onceToken token([]() { if(SDL_Init(SDL_INIT_EVERYTHING) == -1) { throw std::runtime_error("初始化SDL失败"); } }, []() { SDL_Quit(); }); } virtual ~YuvDisplayer(){ if(m_pOverlay){ SDL_FreeYUVOverlay(m_pOverlay); } } bool displayYUV(AVFrame *pFrame){ if (!m_pScreen) { /* Set up the screen */ m_pScreen = SDL_SetVideoMode(1366, 768, 16, SDL_SWSURFACE); } if (!m_pOverlay && m_pScreen) { /* Create a YUV overlay */ m_pOverlay = SDL_CreateYUVOverlay(pFrame->width, pFrame->height, SDL_YV12_OVERLAY, m_pScreen); /* Set the window caption */ SDL_WM_SetCaption("YUV Window", NULL); } if (m_pOverlay) { /* Apply the image to the screen */ m_pOverlay->pixels[0] = pFrame->data[0]; m_pOverlay->pixels[2] = pFrame->data[1]; m_pOverlay->pixels[1] = pFrame->data[2]; m_pOverlay->pitches[0] = pFrame->linesize[0]; m_pOverlay->pitches[2] = pFrame->linesize[1]; m_pOverlay->pitches[1] = pFrame->linesize[2]; /* Update the screen */ SDL_Rect rect = { 0 ,0 ,1366,768}; SDL_LockYUVOverlay(m_pOverlay); SDL_DisplayYUVOverlay(m_pOverlay, &rect); SDL_UnlockYUVOverlay(m_pOverlay); return true; } return false; } private: SDL_Surface* m_pScreen = nullptr; SDL_Overlay* m_pOverlay = nullptr; }; } /* namespace Screen */ } /* namespace ZL */ #endif /* YUVDISPLAYER_H_ */