RtmpPlayerImp.h 1.54 KB
Newer Older
xzl committed
1 2 3 4 5 6 7 8 9 10 11
/*
 * RtmpPlayerImp.h
 *
 *  Created on: 2016年12月1日
 *      Author: xzl
 */

#ifndef SRC_RTMP_RTMPPLAYERIMP_H_
#define SRC_RTMP_RTMPPLAYERIMP_H_

#include <memory>
xiongzilaing committed
12
#include <functional>
xiongziliang committed
13
#include "Common/config.h"
xzl committed
14 15
#include "RtmpPlayer.h"
#include "RtmpParser.h"
xiongzilaing committed
16
#include "Poller/Timer.h"
xzl committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
#include "Util/TimeTicker.h"

using namespace std;
using namespace ZL::Util;
using namespace ZL::Player;

namespace ZL {
namespace Rtmp {
class RtmpPlayerImp: public PlayerImp<RtmpPlayer,RtmpParser> {
public:
    typedef std::shared_ptr<RtmpPlayerImp> Ptr;
    RtmpPlayerImp();
    virtual ~RtmpPlayerImp();
    float getProgresss() const override{
        if(getDuration() > 0){
            return getProgressTime() / getDuration();
        }
        return PlayerBase::getProgresss();
    };
    void seekTo(float fProgress) override{
        fProgress = MAX(float(0),MIN(fProgress,float(1.0)));
        seekToTime(fProgress * getDuration());
    };
private:
    //派生类回调函数
    bool onCheckMeta(AMFValue &val)  override {
        try {
            m_parser.reset(new RtmpParser(val));
            m_parser->setOnVideoCB(m_onGetVideoCB);
            m_parser->setOnAudioCB(m_onGetAudioCB);
            return true;
        } catch (std::exception &ex) {
            WarnL << ex.what();
            return false;
        }
    }
    void onMediaData(RtmpPacket &chunkData) override {
        m_parser->inputRtmp(chunkData);
    }
};
                    
                    
} /* namespace Rtmp */
} /* namespace ZL */
                
#endif /* SRC_RTMP_RTMPPLAYERIMP_H_ */