summaryrefslogtreecommitdiff
path: root/audio.h
diff options
context:
space:
mode:
authorThomas Reufer <thomas@reufer.ch>2014-04-24 08:23:33 +0200
committerThomas Reufer <thomas@reufer.ch>2014-04-24 08:23:33 +0200
commit0669c9dc4ab4d3cef9e1bd76c91dadb8e461457d (patch)
treebf7ded0833ead724389ef0f7cd8c5f2b8e6855e1 /audio.h
parent80703095adcabc537c8388dca6864ca6a168ead8 (diff)
downloadvdr-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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/audio.h b/audio.h
index 8647e4d..42a63ba 100644
--- a/audio.h
+++ b/audio.h
@@ -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;
};