X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e776aa693cdf1b476b2dae45afef724babd1d233..4f48015e6f008575d6a6c59b9e6f78cb3c7c244b:/lib/service/iservice.h diff --git a/lib/service/iservice.h b/lib/service/iservice.h index d6501250..0b03feb4 100644 --- a/lib/service/iservice.h +++ b/lib/service/iservice.h @@ -426,9 +426,11 @@ struct iAudioTrackInfo #ifndef SWIG std::string m_description; std::string m_language; /* iso639 */ + int m_pid; /* for association with the stream. */ #endif std::string getDescription() { return m_description; } std::string getLanguage() { return m_language; } + int getPID() { return m_pid; } }; SWIG_ALLOW_OUTPUT_SIMPLE(iAudioTrackInfo);