⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oggtremortest.h

📁 OggPlay for Symbian 是symbian上的一个媒体播放程序的源码。它支持ogg,wav等等多媒体格式。
💻 H
字号:

#include <OggOs.h>
#include <e32std.h>
#include <e32base.h>
#include <ivorbiscodec.h>
#include <ivorbisfile.h>

#include <MdaAudioSamplePlayer.h>
#include "OggPluginAdaptor.h"

#ifndef MMF_AVAILABLE
#include <e32uid.h>
#include <OggPlayPlugin.h>
#endif



class CIvorbisTest: public CBase, public MKeyPressObserver, public MPlaybackObserver
    {
    public:
        
        static CIvorbisTest * NewL(CConsoleBase *aConsole);

        // Destruction
        ~CIvorbisTest();

        virtual void NotifyPlayComplete();
        virtual void NotifyUpdate();
        virtual void NotifyPlayInterrupted();
    private:
        TInt ProcessKeyPress(TChar aChar) ;
        
        void ConstructL(CConsoleBase *aConsole);
     
        CConsoleBase *iConsole;
        TInt iVolume;
        TBuf<100> iFilename;
        TInt iFilenameIdx;
        COggPluginAdaptor * iPlayer;

    };

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -