forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeccontext.h
609 lines (481 loc) · 17.1 KB
/
codeccontext.h
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
#pragma once
#include "ffmpeg.h"
#include "stream.h"
#include "avutils.h"
#include "averror.h"
#include "pixelformat.h"
#include "sampleformat.h"
#include "avlog.h"
#include "frame.h"
#include "codec.h"
#include "channellayout.h"
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavformat/version.h>
}
namespace av {
namespace codec_context::audio {
void set_channels(AVCodecContext *obj, int channels);
void set_channel_layout_mask(AVCodecContext *obj, uint64_t mask);
int get_channels(const AVCodecContext *obj);
uint64_t get_channel_layout_mask(const AVCodecContext *obj);
}
namespace codec_context::internal {
const int *get_supported_samplerates(const struct AVCodec *codec);
}
class CodecContext2 : public FFWrapperPtr<AVCodecContext>, public noncopyable
{
protected:
void swap(CodecContext2 &other);
//
// No directly created
//
using BaseWrapper = FFWrapperPtr<AVCodecContext>;
using BaseWrapper::BaseWrapper;
CodecContext2();
// Stream decoding/encoding
CodecContext2(const class Stream &st,
const class Codec& codec,
Direction direction,
AVMediaType type);
// Stream independ decoding/encoding
CodecContext2(const class Codec &codec, Direction direction, AVMediaType type);
~CodecContext2();
void setCodec(const class Codec &codec, bool resetDefaults, Direction direction, AVMediaType type, OptionalErrorCode ec = throws());
AVMediaType codecType(AVMediaType contextType) const noexcept;
public:
using BaseWrapper::_log;
//
// Common
//
void open(OptionalErrorCode ec = throws());
void open(const Codec &codec, OptionalErrorCode ec = throws());
void open(class Dictionary &options, OptionalErrorCode ec = throws());
void open(class Dictionary &&options, OptionalErrorCode ec = throws());
void open(class Dictionary &options, const Codec &codec, OptionalErrorCode ec = throws());
void open(class Dictionary &&options, const Codec &codec, OptionalErrorCode ec = throws());
[[deprecated("Start from FFmpeg 4.0 it is recommended to destroy and recreate codec context insted of close")]]
void close(OptionalErrorCode ec = throws());
bool isOpened() const noexcept;
bool isValid() const noexcept;
/**
* Copy codec context from codec context associated with given stream or other codec context.
* This functionality useful for remuxing without deconding/encoding. In this case you need not
* open codecs, only copy context.
*
* @param other stream or codec context
*/
/// @{
void copyContextFrom(const CodecContext2 &other, OptionalErrorCode ec = throws());
/// @}
Rational timeBase() const noexcept;
void setTimeBase(const Rational &value) noexcept;
const Stream& stream() const noexcept;
Codec codec() const noexcept;
void setOption(const std::string &key, const std::string &val, OptionalErrorCode ec = throws());
void setOption(const std::string &key, const std::string &val, int flags, OptionalErrorCode ec = throws());
int frameSize() const noexcept;
int64_t frameNumber() const noexcept;
// Note, set ref counted to enable for multithreaded processing
bool isRefCountedFrames() const noexcept;
void setRefCountedFrames(bool refcounted) const noexcept;
int strict() const noexcept;
void setStrict(int strict) noexcept;
int64_t bitRate() const noexcept;
std::pair<int64_t, int64_t> bitRateRange() const noexcept;
void setBitRate(int64_t bitRate) noexcept;
void setBitRateRange(const std::pair<int64_t, int64_t> &bitRateRange) noexcept;
// Flags
/// Access to CODEC_FLAG_* flags
/// @{
void setFlags(int flags) noexcept;
void addFlags(int flags) noexcept;
void clearFlags(int flags) noexcept;
int flags() noexcept;
bool isFlags(int flags) noexcept;
/// @}
// Flags 2
/// Access to CODEC_FLAG2_* flags
/// @{
void setFlags2(int flags) noexcept;
void addFlags2(int flags) noexcept;
void clearFlags2(int flags) noexcept;
int flags2() noexcept;
bool isFlags2(int flags) noexcept;
/// @}
protected:
bool isValidForEncode(Direction direction, AVMediaType type) const noexcept;
bool checkCodec(const Codec& codec, Direction direction, AVMediaType type, OptionalErrorCode ec);
void open(const Codec &codec, AVDictionary **options, OptionalErrorCode ec);
std::pair<int, const std::error_category*>
decodeCommon(AVFrame *outFrame, const class Packet &inPacket, size_t offset, int &frameFinished,
int (*decodeProc)(AVCodecContext*, AVFrame*,int *, const AVPacket *)) noexcept;
std::pair<int, const std::error_category*>
encodeCommon(class Packet &outPacket, const AVFrame *inFrame, int &gotPacket,
int (*encodeProc)(AVCodecContext*, AVPacket*,const AVFrame*, int*)) noexcept;
public:
template<typename T>
std::pair<int, const std::error_category*>
decodeCommon(T &outFrame,
const class Packet &inPacket,
size_t offset,
int &frameFinished,
int (*decodeProc)(AVCodecContext *, AVFrame *, int *, const AVPacket *));
template<typename T>
std::pair<int, const std::error_category*>
encodeCommon(class Packet &outPacket,
const T &inFrame,
int &gotPacket,
int (*encodeProc)(AVCodecContext *, AVPacket *, const AVFrame *, int *));
private:
Stream m_stream;
};
/**
* @brief The GenericCodecContext class to copy contexts from input streams to output one.
*
* We should omit strong direction checking in this case. Only when we cast it to the appropriate
* encoding coder.
*
*/
class GenericCodecContext : public CodecContext2
{
protected:
using CodecContext2::codecType;
public:
GenericCodecContext() = default;
GenericCodecContext(Stream st);
GenericCodecContext(GenericCodecContext&& other);
GenericCodecContext& operator=(GenericCodecContext&& rhs);
AVMediaType codecType() const noexcept;
};
template<typename Clazz, Direction _direction, AVMediaType _type>
class CodecContextBase : public CodecContext2
{
protected:
Clazz& moveOperator(Clazz &&rhs)
{
if (this == &rhs)
return static_cast<Clazz&>(*this);
Clazz(std::forward<Clazz>(rhs)).swap(static_cast<Clazz&>(*this));
return static_cast<Clazz&>(*this);
}
using CodecContext2::setCodec;
public:
using CodecContext2::_log;
CodecContextBase()
: CodecContext2()
{
}
// Stream decoding/encoding
explicit CodecContextBase(const class Stream &st, const class Codec& codec = Codec())
: CodecContext2(st, codec, _direction, _type)
{
}
// Stream independ decoding/encoding
explicit CodecContextBase(const Codec &codec)
: CodecContext2(codec, _direction, _type)
{
}
//
// Disable copy/Activate move
//
CodecContextBase(CodecContextBase &&other)
: CodecContextBase()
{
swap(other);
}
//
void setCodec(const Codec &codec, OptionalErrorCode ec = throws())
{
setCodec(codec, false, _direction, _type, ec);
}
void setCodec(const Codec &codec, bool resetDefaults, OptionalErrorCode ec = throws())
{
setCodec(codec, resetDefaults, _direction, _type, ec);
}
AVMediaType codecType() const noexcept
{
return CodecContext2::codecType(_type);
}
};
template<typename Clazz, Direction _direction>
class VideoCodecContext : public CodecContextBase<Clazz, _direction, AVMEDIA_TYPE_VIDEO>
{
public:
using Parent = CodecContextBase<Clazz, _direction, AVMEDIA_TYPE_VIDEO>;
using Parent::Parent;
using Parent::isValid;
using Parent::isOpened;
int width() const
{
return RAW_GET2(isValid(), width, 0);
}
int height() const
{
return RAW_GET2(isValid(), height, 0);
}
int codedWidth() const
{
return RAW_GET2(isValid(), coded_width, 0);
}
int codedHeight() const
{
return RAW_GET2(isValid(), coded_height, 0);
}
PixelFormat pixelFormat() const
{
return RAW_GET2(isValid(), pix_fmt, AV_PIX_FMT_NONE);
}
int32_t globalQuality() const
{
return RAW_GET2(isValid(), global_quality, FF_LAMBDA_MAX);
}
int32_t gopSize() const
{
return RAW_GET2(isValid(), gop_size, 0);
}
int bitRateTolerance() const
{
return RAW_GET2(isValid(), bit_rate_tolerance, 0);
}
int maxBFrames() const
{
return RAW_GET2(isValid(), max_b_frames, 0);
}
Rational sampleAspectRatio() const
{
return RAW_GET(sample_aspect_ratio, AVRational());
}
void setWidth(int w) // Note, it also sets coded_width
{
if (isValid() & !isOpened())
{
m_raw->width = w;
m_raw->coded_width = w;
}
}
void setHeight(int h) // Note, it also sets coded_height
{
if (isValid() && !isOpened())
{
m_raw->height = h;
m_raw->coded_height = h;
}
}
void setCodedWidth(int w)
{
RAW_SET2(isValid() && !isOpened(), coded_width, w);
}
void setCodedHeight(int h)
{
RAW_SET2(isValid() && !isOpened(), coded_height, h);
}
void setPixelFormat(PixelFormat pixelFormat)
{
RAW_SET2(isValid(), pix_fmt, pixelFormat);
}
void setGlobalQuality(int32_t quality)
{
if (quality < 0 || quality > FF_LAMBDA_MAX)
quality = FF_LAMBDA_MAX;
RAW_SET2(isValid(), global_quality, quality);
}
void setGopSize(int32_t size)
{
RAW_SET2(isValid(), gop_size, size);
}
void setBitRateTolerance(int bitRateTolerance)
{
RAW_SET2(isValid(), bit_rate_tolerance, bitRateTolerance);
}
void setMaxBFrames(int maxBFrames)
{
RAW_SET2(isValid(), max_b_frames, maxBFrames);
}
void setSampleAspectRatio(const Rational& sampleAspectRatio)
{
RAW_SET(sample_aspect_ratio, sampleAspectRatio);
}
protected:
using Parent::moveOperator;
using Parent::m_raw;
};
class VideoDecoderContext : public VideoCodecContext<VideoDecoderContext, Direction::Decoding>
{
public:
using Parent = VideoCodecContext<VideoDecoderContext, Direction::Decoding>;
using Parent::Parent;
VideoDecoderContext() = default;
VideoDecoderContext(VideoDecoderContext&& other);
VideoDecoderContext& operator=(VideoDecoderContext&& other);
/**
* @brief decodeVideo - decode video packet
*
* @param packet packet to decode
* @param[in,out] ec this represents the error status on exit, if this is pre-initialized to
* av#throws the function will throw on error instead
* @param autoAllocateFrame it true - output will be allocated at the ffmpeg internal, otherwise
* it will be allocated before decode proc call.
* @return encoded video frame, if error: exception thrown or error code returns, in both cases
* output undefined.
*/
VideoFrame decode(const Packet &packet,
OptionalErrorCode ec = throws(),
bool autoAllocateFrame = true);
/**
* @brief decodeVideo - decode video packet with additional parameters
*
* @param[in] packet packet to decode
* @param[in] offset data offset in packet
* @param[out] decodedBytes amount of decoded bytes
* @param[in,out] ec this represents the error status on exit, if this is pre-initialized to
* av#throws the function will throw on error instead
* @param autoAllocateFrame it true - output will be allocated at the ffmpeg internal, otherwise
* it will be allocated before decode proc call.
* @return encoded video frame, if error: exception thrown or error code returns, in both cases
* output undefined.
*/
VideoFrame decode(const Packet &packet,
size_t offset,
size_t &decodedBytes,
OptionalErrorCode ec = throws(),
bool autoAllocateFrame = true);
private:
VideoFrame decodeVideo(OptionalErrorCode ec,
const Packet &packet,
size_t offset,
size_t *decodedBytes,
bool autoAllocateFrame);
};
class VideoEncoderContext : public VideoCodecContext<VideoEncoderContext, Direction::Encoding>
{
public:
using Parent = VideoCodecContext<VideoEncoderContext, Direction::Encoding>;
using Parent::Parent;
VideoEncoderContext() = default;
VideoEncoderContext(VideoEncoderContext&& other);
VideoEncoderContext& operator=(VideoEncoderContext&& other);
/**
* @brief encodeVideo - Flush encoder
*
* Stop flushing when returns empty packets
*
* @param[in,out] ec this represents the error status on exit, if this is pre-initialized to
* av#throws the function will throw on error instead
* @return
*/
Packet encode(OptionalErrorCode ec = throws());
/**
* @brief encodeVideo - encode video frame
*
* @note Some encoders need some amount of frames before beginning encoding, so it is normal,
* that for some amount of frames returns empty packets.
*
* @param inFrame frame to encode
* @param[in,out] ec this represents the error status on exit, if this is pre-initialized to
* av#throws the function will throw on error instead
* @return
*/
Packet encode(const VideoFrame &inFrame, OptionalErrorCode ec = throws());
};
template<typename Clazz, Direction _direction>
class AudioCodecContext : public CodecContextBase<Clazz, _direction, AVMEDIA_TYPE_AUDIO>
{
public:
using Parent = CodecContextBase<Clazz, _direction, AVMEDIA_TYPE_AUDIO>;
using Parent::Parent;
using Parent::isValid;
using Parent::isOpened;
using Parent::_log;
int sampleRate() const noexcept
{
return RAW_GET2(isValid(), sample_rate, 0);
}
int channels() const noexcept
{
if (!isValid())
return 0;
return codec_context::audio::get_channels(m_raw);
}
SampleFormat sampleFormat() const noexcept
{
return RAW_GET2(isValid(), sample_fmt, AV_SAMPLE_FMT_NONE);
}
uint64_t channelLayout() const noexcept
{
if (!isValid())
return 0;
return codec_context::audio::get_channel_layout_mask(m_raw);
}
#if API_NEW_CHANNEL_LAYOUT
ChannelLayoutView channelLayout2() const noexcept
{
if (!isValid())
return ChannelLayoutView{};
return ChannelLayoutView{m_raw->ch_layout};
}
#endif
void setSampleRate(int sampleRate) noexcept
{
if (!isValid())
return;
int sr = guessValue(sampleRate, codec_context::internal::get_supported_samplerates(m_raw->codec), EqualComparator<int>(0));
if (sr != sampleRate)
{
fflog(AV_LOG_INFO, "Guess sample rate %d instead unsupported %d\n", sr, sampleRate);
}
if (sr > 0)
m_raw->sample_rate = sr;
}
void setChannels(int channels) noexcept
{
if (!isValid() || channels <= 0)
return;
codec_context::audio::set_channels(m_raw, channels);
}
void setSampleFormat(SampleFormat sampleFormat) noexcept
{
RAW_SET2(isValid(), sample_fmt, sampleFormat);
}
void setChannelLayout(uint64_t layout) noexcept
{
if (!isValid() || layout == 0)
return;
codec_context::audio::set_channel_layout_mask(m_raw, layout);
}
#if API_NEW_CHANNEL_LAYOUT
void setChannelLayout(ChannelLayout layout) noexcept
{
if (!isValid() || !layout.isValid())
return;
m_raw->ch_layout = *layout.raw();
layout.release(); // is controlled by the CodecContext
}
#endif
protected:
using Parent::moveOperator;
using Parent::m_raw;
};
class AudioDecoderContext : public AudioCodecContext<AudioDecoderContext, Direction::Decoding>
{
public:
using Parent = AudioCodecContext<AudioDecoderContext, Direction::Decoding>;
using Parent::Parent;
AudioDecoderContext() = default;
AudioDecoderContext(AudioDecoderContext&& other);
AudioDecoderContext& operator=(AudioDecoderContext&& other);
AudioSamples decode(const Packet &inPacket, OptionalErrorCode ec = throws());
AudioSamples decode(const Packet &inPacket, size_t offset, OptionalErrorCode ec = throws());
};
class AudioEncoderContext : public AudioCodecContext<AudioEncoderContext, Direction::Encoding>
{
public:
using Parent = AudioCodecContext<AudioEncoderContext, Direction::Encoding>;
using Parent::Parent;
AudioEncoderContext() = default;
AudioEncoderContext(AudioEncoderContext&& other);
AudioEncoderContext& operator=(AudioEncoderContext&& other);
Packet encode(OptionalErrorCode ec = throws());
Packet encode(const AudioSamples &inSamples, OptionalErrorCode ec = throws());
};
} // namespace av