From 0669c9dc4ab4d3cef9e1bd76c91dadb8e461457d Mon Sep 17 00:00:00 2001 From: Thomas Reufer Date: Thu, 24 Apr 2014 08:23:33 +0200 Subject: move cAudioParser inside cAudioDecoder to avoid duplicate class name --- audio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio.h') 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; }; -- cgit v1.2.3