vout_manager.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vout_manager.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2009 the VideoLAN team
  5.  * $Id: e54a290225d14515553b1637bf98b1ca80893998 $
  6.  *
  7.  * Authors: Erwan Tulou < brezhoneg1 at yahoo.fr r>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef VOUTMANAGER_HPP
  24. #define VOUTMANAGER_HPP
  25. #include <vector>
  26. #include <vlc_vout.h>
  27. #include <vlc_window.h>
  28. #include "../utils/position.hpp"
  29. #include "../commands/cmd_generic.hpp"
  30. #include "../controls/ctrl_video.hpp"
  31. class VarBool;
  32. class GenericWindow;
  33. #include <stdio.h>
  34. class SavedVout
  35. {
  36. public:
  37.     SavedVout( vout_thread_t* pVout, VoutWindow* pVoutWindow = NULL,
  38.                CtrlVideo* pCtrlVideo = NULL, int height = 0, int width = 0 ) :
  39.        pVout( pVout ), pVoutWindow( pVoutWindow ), pCtrlVideo( pCtrlVideo ),
  40.        height( height ), width( width ) {}
  41.     ~SavedVout() {}
  42.     vout_thread_t* pVout;
  43.     VoutWindow *pVoutWindow;
  44.     CtrlVideo *pCtrlVideo;
  45.     int height;
  46.     int width;
  47. };
  48. class VoutMainWindow: public GenericWindow
  49. {
  50.     public:
  51.         VoutMainWindow( intf_thread_t *pIntf, int left = 0, int top = 0 ) :
  52.                 GenericWindow( pIntf, left, top, false, false, NULL )
  53.         {
  54.             resize( 10, 10 );
  55.             move( -50, -50 );
  56.         }
  57.         virtual ~VoutMainWindow() {}
  58. };
  59. /// Singleton object handling VLC internal state and playlist
  60. class VoutManager: public SkinObject
  61. {
  62.     public:
  63.         /// Get the instance of VoutManager
  64.         /// Returns NULL if the initialization of the object failed
  65.         static VoutManager *instance( intf_thread_t *pIntf );
  66.         /// Delete the instance of VoutManager
  67.         static void destroy( intf_thread_t *pIntf );
  68.         /// Callback to request a vout window
  69.         static void *getWindow( intf_thread_t *pIntf, vout_window_t *pWnd );
  70.         /// Accept Vout
  71.         void* acceptVout( vout_thread_t* pVout, int width, int height );
  72.         // Window provider (release)
  73.         static void releaseWindow( intf_thread_t *pIntf, vout_window_t *pWnd  );
  74.         /// Callback to change a vout window
  75.         static int controlWindow( struct vout_window_t *pWnd,
  76.                                   int query, va_list args );
  77.         // Register Video Controls (when building theme)
  78.         void registerCtrlVideo( CtrlVideo* p_CtrlVideo );
  79.         // save and restore vouts (when changing theme)
  80.         void saveVoutConfig( );
  81.         void restoreVoutConfig( bool b_success );
  82.         // save and restore vouts (when swapping Layout)
  83.         void discardVout( CtrlVideo* pCtrlVideo );
  84.         void requestVout( CtrlVideo* pCtrlVideo );
  85.         // get a VoutWindow
  86.         void* getHandle( vout_thread_t* pVout, int width, int height );
  87.         // get a useable video Control
  88.         CtrlVideo* getBestCtrlVideo( );
  89.         // get the VoutMainWindow
  90.         VoutMainWindow* getVoutMainWindow() { return m_pVoutMainWindow; }
  91.         // test if vout are running
  92.         bool hasVout() { return ( m_SavedVoutVec.size() != 0 ) ; }
  93.         // (un)lock functions to protect vout sets
  94.         void lockVout( ) { vlc_mutex_lock( &vout_lock ); }
  95.         void unlockVout( ) { vlc_mutex_unlock( &vout_lock ); }
  96.     protected:
  97.         // Protected because it is a singleton
  98.         VoutManager( intf_thread_t *pIntf );
  99.         virtual ~VoutManager();
  100.     private:
  101.         vector<CtrlVideo *> m_pCtrlVideoVec;
  102.         vector<CtrlVideo *> m_pCtrlVideoVecBackup;
  103.         vector<SavedVout> m_SavedVoutVec;
  104.         VoutMainWindow* m_pVoutMainWindow;
  105.         vlc_mutex_t vout_lock;
  106. };
  107. #endif