diff options
Diffstat (limited to 'dxr3interface.h')
-rw-r--r-- | dxr3interface.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/dxr3interface.h b/dxr3interface.h index 0735bb6..6c592dd 100644 --- a/dxr3interface.h +++ b/dxr3interface.h @@ -106,30 +106,30 @@ public: private: // file handles - int m_fdControl; - int m_fdVideo; - int m_fdSpu; - int m_fdAudio; + int m_fdControl; ///< filehandle for contol fifo of dxr3 card + int m_fdVideo; ///< filehandle for video fifo of dxr3 card + int m_fdAudio; ///< filehandle for audio fifo of dxr3 card + int m_fdSpu; ///< filehandle for spu fifo of dxr3 card // dxr3 clock - cDxr3SysClock* m_pClock; - - uint32_t m_audioChannelCount; - uint32_t m_audioDataRate; - int m_aspectDelayCounter; - uint32_t m_aspectRatio; - uint32_t m_horizontal; - uint32_t m_audioSampleSize; - uint32_t m_audioMode; - uint32_t m_spuMode; - bool m_ExternalReleased; // is dxr3 used by e.g. mplayer? - int m_volume; - bool m_AudioActive; - bool m_VideoActive; - bool m_OverlayActive; + cDxr3SysClock* m_pClock; ///< clock used for sync + + uint32_t m_audioMode; ///< current used audiomode like analog or digital-PCM + uint32_t m_audioChannelCount; ///< how many channles has the current audiostream + uint32_t m_audioDataRate; ///< which rate is used for the current audiostream + uint32_t m_audioSampleSize; ///< how big is the sample size for the current audiostream + //int m_aspectDelayCounter; + uint32_t m_aspectRatio; ///< current used aspect ratio + uint32_t m_horizontal; ///< horizontal size of current videostream + bool m_ExternalReleased; ///< is dxr3 used by e.g. mplayer? + int m_volume; ///< volumevalue (0...255) + uint32_t m_spuMode; ///< is spu enabled or disabled? + bool m_AudioActive; ///< is audio active? + bool m_VideoActive; ///< is video active? + bool m_OverlayActive; ///< is overlay active? // bcs - em8300_bcs_t m_bcs; + em8300_bcs_t m_bcs; ///< BrightnessContrastSaturation values void UploadMicroCode(); void ConfigureDevice(); @@ -137,7 +137,7 @@ private: void Resuscitation(); protected: - static cMutex* m_pMutex; + static cMutex* m_pMutex; ///< mutex for dxr3interface static void Lock() { cDxr3Interface::m_pMutex->Lock(); } static void Unlock() { cDxr3Interface::m_pMutex->Unlock(); } |