forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream.h
81 lines (61 loc) · 2.05 KB
/
stream.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
#pragma once
#include <memory>
#include "averror.h"
#include "ffmpeg.h"
#include "rational.h"
#include "timestamp.h"
#include "codecparameters.h"
namespace av
{
enum class Direction
{
Invalid = -1,
Encoding,
Decoding
};
class Stream : public FFWrapperPtr<AVStream>
{
private:
friend class FormatContext;
Stream(const std::shared_ptr<char> &monitor, AVStream *st = nullptr, Direction direction = Direction::Invalid);
public:
Stream() = default;
bool isValid() const;
int index() const;
int id() const;
Rational frameRate() const;
Rational timeBase() const;
Rational sampleAspectRatio() const;
Rational averageFrameRate() const;
Timestamp startTime() const;
Timestamp duration() const;
[[deprecated("For FFmpeg 5.0+ return NO_PTS")]]
Timestamp currentDts() const;
AVMediaType mediaType() const;
bool isAudio() const;
bool isVideo() const;
bool isData() const;
bool isSubtitle() const;
bool isAttachment() const;
Direction direction() const { return m_direction; }
void setTimeBase(const Rational &timeBase);
void setFrameRate(const Rational &frameRate);
void setSampleAspectRatio(const Rational &aspectRatio);
void setAverageFrameRate(const Rational &frameRate);
CodecParametersView codecParameters() const;
void setCodecParameters(CodecParametersView codecpar, OptionalErrorCode ec = throws());
/**
* Flags to the user to detect events happening on the stream.
* A combination of AVSTREAM_EVENT_FLAG_*. Must be cleared by the user.
* @see AVFormatContext::event_flags
* @return
*/
int eventFlags() const noexcept;
bool eventFlags(int flags) const noexcept;
void eventFlagsClear(int flags) noexcept;
void setupEncodingParameters(const class VideoEncoderContext& ctx, OptionalErrorCode ec = throws());
private:
std::weak_ptr<char> m_parentMonitor;
Direction m_direction = Direction::Invalid;
};
} // ::av