blob: 4783cb8191a867c1811c3edac64207e012bb539c [file] [log] [blame]
#pragma once
#include "Packetizer.h"
#include <https/RunLoop.h>
#include <source/StreamingSource.h>
#include <memory>
struct VP8Packetizer
: public Packetizer, public std::enable_shared_from_this<VP8Packetizer> {
using StreamingSource = android::StreamingSource;
explicit VP8Packetizer(
std::shared_ptr<RunLoop> runLoop,
std::shared_ptr<StreamingSource> frameBufferSource);
~VP8Packetizer() override;
void run() override;
uint32_t rtpNow() const override;
int32_t requestIDRFrame() override;
private:
using SBuffer = android::SBuffer;
std::shared_ptr<RunLoop> mRunLoop;
std::shared_ptr<StreamingSource> mFrameBufferSource;
size_t mNumSamplesRead;
std::chrono::time_point<std::chrono::steady_clock> mStartTimeReal;
int64_t mStartTimeMedia;
void onFrame(const std::shared_ptr<SBuffer> &accessUnit);
void packetize(const std::shared_ptr<SBuffer> &accessUnit, int64_t timeUs);
};