Decoder.h 1.97 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
xiongziliang committed
5
 *
xiongziliang committed
6 7 8
 * Use of this source code is governed by MIT license that can be found in the
 * LICENSE file in the root of the source tree. All contributing project authors
 * may be found in the AUTHORS file in the root of the source tree.
xiongziliang committed
9 10 11 12 13 14 15 16
 */

#ifndef ZLMEDIAKIT_DECODER_H
#define ZLMEDIAKIT_DECODER_H

#include <stdint.h>
#include <memory>
#include <functional>
17 18
#include "Common/MediaSink.h"

xiongziliang committed
19 20 21 22 23 24
using namespace std;
namespace mediakit {

class Decoder {
public:
    typedef std::shared_ptr<Decoder> Ptr;
25 26
    typedef std::function<void(int stream, int codecid, int flags, int64_t pts, int64_t dts, const void *data, size_t bytes)> onDecode;
    typedef std::function<void(int stream, int codecid, const void *extra, size_t bytes, int finish)> onStream;
27

xia-chu committed
28
    virtual ssize_t input(const uint8_t *data, size_t bytes) = 0;
29 30 31
    virtual void setOnDecode(onDecode cb) = 0;
    virtual void setOnStream(onStream cb) = 0;

xiongziliang committed
32 33 34 35 36
protected:
    Decoder() = default;
    virtual ~Decoder() = default;
};

37 38 39 40 41 42 43 44 45 46
class DecoderImp{
public:
    typedef enum {
        decoder_ts = 0,
        decoder_ps
    }Type;

    typedef std::shared_ptr<DecoderImp> Ptr;
    ~DecoderImp() = default;

47
    static Ptr createDecoder(Type type, MediaSinkInterface *sink);
xia-chu committed
48
    ssize_t input(const uint8_t *data, size_t bytes);
49 50 51 52 53 54

protected:
    void onTrack(const Track::Ptr &track);
    void onFrame(const Frame::Ptr &frame);

private:
55
    DecoderImp(const Decoder::Ptr &decoder, MediaSinkInterface *sink);
56 57
    void onDecode(int stream, int codecid, int flags, int64_t pts, int64_t dts, const void *data, size_t bytes);
    void onStream(int stream, int codecid, const void *extra, size_t bytes, int finish);
58 59 60

private:
    Decoder::Ptr _decoder;
61
    MediaSinkInterface *_sink;
xia-chu committed
62
    FrameMerger _merger{FrameMerger::none};
63
    Ticker _last_unsported_print;
64 65
};

xiongziliang committed
66 67
}//namespace mediakit
#endif //ZLMEDIAKIT_DECODER_H