1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 09:49:42 +01:00

Expose VLC instance

This commit is contained in:
Uwe L. Korn 2014-11-17 22:30:57 +01:00
parent 08db5cde69
commit 583d684697
2 changed files with 8 additions and 0 deletions

View File

@ -544,3 +544,10 @@ AudioOutput::setDspCallback( std::function< void( int, int, float*, int, int ) >
{
dspPluginCallback = cb;
}
libvlc_instance_t*
AudioOutput::vlcInstance() const
{
return m_vlcInstance;
}

View File

@ -67,6 +67,7 @@ public:
void setDspCallback( std::function< void( int, int, float*, int, int ) > cb );
static AudioOutput* instance();
libvlc_instance_t* vlcInstance() const;
public slots: