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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/**********************************************************************
Audacity: A Digital Audio Editor
AVFrameWrapperImpl.inl
Dmitry Vedenko
**********************************************************************/
class AVFrameWrapperImpl : public AVFrameWrapper
{
public:
explicit AVFrameWrapperImpl(const FFmpegFunctions& ffmpeg)
: AVFrameWrapper(ffmpeg)
{
}
int GetNumDataPointers() const noexcept override
{
return AV_NUM_DATA_POINTERS;
}
uint8_t* GetData(int index) const noexcept override
{
if (mAVFrame == nullptr)
return {};
if (index < 0 || index >= AV_NUM_DATA_POINTERS)
return {};
return mAVFrame->data[index];
}
int GetLineSize(int index) const noexcept override
{
if (mAVFrame == nullptr)
return {};
if (index < 0 || index >= AV_NUM_DATA_POINTERS)
return {};
return mAVFrame->linesize[index];
}
uint8_t* GetExtendedData(int index) const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->extended_data[index];
return {};
}
int GetWidth() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->width;
return {};
}
int GetHeight() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->height;
return {};
}
int GetSamplesCount() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->nb_samples;
return {};
}
void SetSamplesCount(int count) noexcept override
{
if (mAVFrame != nullptr)
mAVFrame->nb_samples = count;
}
AVSampleFormatFwd GetFormat() const noexcept override
{
if (mAVFrame != nullptr)
return static_cast<AVSampleFormatFwd>(mAVFrame->format);
return {};
}
void SetFormat(AVSampleFormatFwd format) noexcept override
{
if (mAVFrame != nullptr)
mAVFrame->format = format;
}
int GetKeyFrame() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->key_frame;
return {};
}
AudacityAVRational GetSampleAspectRatio() const noexcept override
{
if (mAVFrame != nullptr)
return { mAVFrame->sample_aspect_ratio.num,
mAVFrame->sample_aspect_ratio.den };
return {};
}
int64_t GetPresentationTimestamp() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->pts;
return {};
}
int64_t GetPacketPresentationTimestamp() const noexcept override
{
if (mAVFrame != nullptr)
#if LIBAVUTIL_VERSION_MAJOR <= 56
return mAVFrame->pkt_pts;
#else
return mAVFrame->pts;
#endif
return {};
}
int64_t GetPacketDecompressionTimestamp() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->pkt_dts;
return {};
}
int GetQuality() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->quality;
return {};
}
void* GetOpaque() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->opaque;
return {};
}
void SetOpaque(void* opaque) noexcept override
{
if (mAVFrame != nullptr)
mAVFrame->opaque = opaque;
}
int GetRepeatPict() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->repeat_pict;
return {};
}
int GetInterlacedFrame() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->interlaced_frame;
return {};
}
int GetTopFieldFirst() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->top_field_first;
return {};
}
int GetPaletteHasChanged() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->palette_has_changed;
return {};
}
int GetSampleRate() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->sample_rate;
return {};
}
const AVChannelLayoutWrapper* GetChannelLayout() const noexcept override
{
return GetChannelLayoutSafe();
}
void SetChannelLayout(const AVChannelLayoutWrapper* layout) noexcept override
{
if (mAVFrame == nullptr || layout == nullptr)
return;
mChannelLayoutWrapper = layout->Clone();
// Clone never returns nullptr
#if HAS_AV_CHANNEL_LAYOUT
mAVFrame->ch_layout = *layout->GetChannelLayout();
#else
mAVFrame->channel_layout = layout->GetLegacyChannelLayout();
mAVFrame->channels = layout->GetChannelsCount();
#endif
}
int GetSideDataCount() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->nb_side_data;
return {};
}
int GetFlags() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->flags;
return {};
}
int64_t GetBestEffortTimestamp() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->best_effort_timestamp;
return {};
}
AVDictionaryWrapper GetMetadata() const noexcept override
{
if (mAVFrame != nullptr)
return AVDictionaryWrapper(mFFmpeg, mAVFrame->metadata);
return AVDictionaryWrapper(mFFmpeg);
}
int GetDecodeErrorFlags() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->decode_error_flags;
return {};
}
int GetChannels() const noexcept override
{
if (auto layout = GetChannelLayoutSafe(); layout != nullptr)
return layout->GetChannelsCount();
return {};
}
int GetPacketSize() const noexcept override
{
if (mAVFrame != nullptr)
return mAVFrame->pkt_size;
return {};
}
private:
const AVChannelLayoutWrapper* GetChannelLayoutSafe() const noexcept
{
if (mAVFrame == nullptr)
return nullptr;
if (mChannelLayoutWrapper == nullptr)
{
#if HAS_AV_CHANNEL_LAYOUT
mChannelLayoutWrapper =
mFFmpeg.CreateAVChannelLayout(&mAVFrame->ch_layout);
#else
mChannelLayoutWrapper = mFFmpeg.CreateLegacyChannelLayout(
mAVFrame->channel_layout, mAVFrame->channels);
#endif
}
return mChannelLayoutWrapper.get();
}
mutable std::unique_ptr<AVChannelLayoutWrapper> mChannelLayoutWrapper;
};
std::unique_ptr<AVFrameWrapper>
CreateAVFrameWrapper(const FFmpegFunctions& ffmpeg)
{
return std::make_unique<AVFrameWrapperImpl>(ffmpeg);
}
|