[AE] paplayer: add GetChannelInfo to codecs
[vuplus_xbmc] / xbmc / cores / paplayer / DVDPlayerCodec.h
index 4f0b85d..d610960 100644 (file)
@@ -40,6 +40,7 @@ public:
   virtual int ReadPCM(BYTE *pBuffer, int size, int *actualsize);
   virtual bool CanInit();
   virtual bool CanSeek();
+  virtual CAEChannelInfo GetChannelInfo() {return m_ChannelInfo;}
 
   void SetContentType(const CStdString &strContent);
 
@@ -57,6 +58,8 @@ private:
 
   BYTE *m_decoded;
   int  m_nDecodedLen;
+
+  CAEChannelInfo m_ChannelInfo;
 };
 
 #endif