diff options
| author | Thomas Reufer <thomas@reufer.ch> | 2014-04-24 08:23:33 +0200 |
|---|---|---|
| committer | Thomas Reufer <thomas@reufer.ch> | 2014-04-24 08:23:33 +0200 |
| commit | 0669c9dc4ab4d3cef9e1bd76c91dadb8e461457d (patch) | |
| tree | bf7ded0833ead724389ef0f7cd8c5f2b8e6855e1 /audio.h | |
| parent | 80703095adcabc537c8388dca6864ca6a168ead8 (diff) | |
| download | vdr-plugin-rpihddevice-0669c9dc4ab4d3cef9e1bd76c91dadb8e461457d.tar.gz vdr-plugin-rpihddevice-0669c9dc4ab4d3cef9e1bd76c91dadb8e461457d.tar.bz2 | |
move cAudioParser inside cAudioDecoder to avoid duplicate class name
Diffstat (limited to 'audio.h')
| -rw-r--r-- | audio.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,8 +16,6 @@ extern "C" { #include "tools.h" #include "omx.h" -class cAudioParser; - class cAudioDecoder : public cThread { @@ -49,12 +47,14 @@ protected: private: + class cParser; + Codec m_codecs[cAudioCodec::eNumCodecs]; bool m_passthrough; bool m_reset; cCondWait *m_wait; - cAudioParser *m_parser; + cParser *m_parser; cOmx *m_omx; }; |
