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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/**********************************************************************
Audacity: A Digital Audio Editor
AVCodecWrapperImpl.inl
Dmitry Vedenko
**********************************************************************/
class AVCodecWrapperImpl : public AVCodecWrapper
{
public:
explicit
AVCodecWrapperImpl(const AVCodec* wrapped) noexcept
: AVCodecWrapper(wrapped)
{
}
const char* GetName() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->name;
return {};
}
const char* GetLongName() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->long_name;
return {};
}
AVMediaTypeFwd GetType() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->type;
return {};
}
AVCodecIDFwd GetId() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->id;
return {};
}
int GetCapabilities() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->capabilities;
return {};
}
const AVRational* GetSupportedFramerates() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->supported_framerates;
return {};
}
const AVPixelFormatFwd* GetPixFmts() const noexcept override
{
static_assert(sizeof(AVPixelFormat) == sizeof(AVPixelFormatFwd));
if (mAVCodec != nullptr)
return reinterpret_cast<const AVPixelFormatFwd*>(mAVCodec->pix_fmts);
return {};
}
const int* GetSupportedSamplerates() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->supported_samplerates;
return {};
}
const AVSampleFormatFwd* GetSampleFmts() const noexcept override
{
static_assert(sizeof(AVSampleFormat) == sizeof(AVSampleFormatFwd));
if (mAVCodec != nullptr)
return reinterpret_cast<const AVSampleFormatFwd*>(mAVCodec->sample_fmts);
return {};
}
uint8_t GetMaxLowres() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->max_lowres;
return {};
}
bool IsAudio() const noexcept override
{
if (mAVCodec != nullptr)
return mAVCodec->type == AVMEDIA_TYPE_AUDIO;
return {};
}
};
std::unique_ptr<AVCodecWrapper>CreateAVCodecWrapper(const AVCodec* obj)
{
return std::make_unique<AVCodecWrapperImpl>(obj);
}
|