1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 63 64 65 66 67 68 69 70 71 72 73
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "Encoder.h"
extern "C"
{
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswresample/swresample.h>
}
namespace KODI
{
namespace CDRIP
{
class CEncoderFFmpeg : public CEncoder
{
public:
CEncoderFFmpeg() = default;
~CEncoderFFmpeg() override = default;
bool Init() override;
ssize_t Encode(uint8_t* pbtStream, size_t nNumBytesRead) override;
bool Close() override;
private:
static int avio_write_callback(void* opaque, uint8_t* buf, int buf_size);
static int64_t avio_seek_callback(void* opaque, int64_t offset, int whence);
void SetTag(const std::string& tag, const std::string& value);
bool WriteFrame();
AVSampleFormat GetInputFormat(int inBitsPerSample);
AVFormatContext* m_formatCtx{nullptr};
AVCodecContext* m_codecCtx{nullptr};
SwrContext* m_swrCtx{nullptr};
AVStream* m_stream{nullptr};
AVSampleFormat m_inFormat;
AVSampleFormat m_outFormat;
/* From libavformat/avio.h:
* The buffer size is very important for performance.
* For protocols with fixed blocksize it should be set to this
* blocksize.
* For others a typical size is a cache page, e.g. 4kb.
*/
static constexpr size_t BUFFER_SIZE = 4096;
uint8_t* m_bcBuffer{nullptr};
unsigned int m_neededFrames{0};
size_t m_neededBytes{0};
uint8_t* m_buffer{nullptr};
size_t m_bufferSize{0};
AVFrame* m_bufferFrame{nullptr};
uint8_t* m_resampledBuffer{nullptr};
size_t m_resampledBufferSize{0};
AVFrame* m_resampledFrame{nullptr};
bool m_needConversion{false};
int64_t m_samplesCount{0};
int64_t m_samplesCountMultiply{1000};
};
} /* namespace CDRIP */
} /* namespace KODI */
|