]> git.sesse.net Git - nageru/blob - shared/mux.h
Simplify timebase handling in Mux a bit.
[nageru] / shared / mux.h
1 #ifndef _MUX_H
2 #define _MUX_H 1
3
4 // Wrapper around an AVFormat mux.
5
6 extern "C" {
7 #include <libavcodec/avcodec.h>
8 #include <libavformat/avformat.h>
9 }
10
11 #include <sys/types.h>
12 #include <atomic>
13 #include <condition_variable>
14 #include <functional>
15 #include <mutex>
16 #include <string>
17 #include <utility>
18 #include <thread>
19 #include <vector>
20
21 #include "shared/timebase.h"
22
23 struct MuxMetrics {
24         // “written” will usually be equal video + audio + mux overhead,
25         // except that there could be buffered packets that count in audio or video
26         // but not yet in written.
27         std::atomic<int64_t> metric_video_bytes{0}, metric_audio_bytes{0}, metric_written_bytes{0};
28
29         // Registers in global_metrics.
30         void init(const std::vector<std::pair<std::string, std::string>> &labels);
31
32         void reset()
33         {
34                 metric_video_bytes = 0;
35                 metric_audio_bytes = 0;
36                 metric_written_bytes = 0;
37         }
38 };
39
40 inline AVColorSpace get_color_space(bool ycbcr_rec709_coefficients)
41 {
42         if (ycbcr_rec709_coefficients) {
43                 return AVCOL_SPC_BT709;
44         } else {
45                 return AVCOL_SPC_SMPTE170M;
46         }
47 }
48
49 class Mux {
50 public:
51         enum Codec {
52                 CODEC_H264,
53                 CODEC_NV12,  // Uncompressed 4:2:0.
54                 CODEC_MJPEG
55         };
56         enum WriteStrategy {
57                 // add_packet() will write the packet immediately, unless plugged.
58                 WRITE_FOREGROUND,
59
60                 // All writes will happen on a separate thread, so add_packet()
61                 // won't block. Use this if writing to a file and you might be
62                 // holding a mutex (because blocking I/O with a mutex held is
63                 // not good). Note that this will clone every packet, so it has
64                 // higher overhead.
65                 WRITE_BACKGROUND,
66         };
67
68         // Takes ownership of avctx. <write_callback> will be called every time
69         // a write has been made to the video stream (id 0), with the pts of
70         // the just-written frame. (write_callback can be nullptr.)
71         // Does not take ownership of <metrics>; elements in there, if any,
72         // will be added to.
73         //
74         // If audio_codecpar is nullptr, there will be no audio stream.
75         Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const std::string &video_extradata, const AVCodecParameters *audio_codecpar, AVColorSpace color_space, int time_base, std::function<void(int64_t)> write_callback, WriteStrategy write_strategy, const std::vector<MuxMetrics *> &metrics);
76         ~Mux();
77         void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts, AVRational timebase = { 1, TIMEBASE }, int stream_index_override = -1);
78
79         // As long as the mux is plugged, it will not actually write anything to disk,
80         // just queue the packets. Once it is unplugged, the packets are reordered by pts
81         // and written. This is primarily useful if you might have two different encoders
82         // writing to the mux at the same time (because one is shutting down), so that
83         // pts might otherwise come out-of-order.
84         //
85         // You can plug and unplug multiple times; only when the plug count reaches zero,
86         // something will actually happen.
87         void plug();
88         void unplug();
89
90 private:
91         // If write_strategy == WRITE_FOREGORUND, Must be called with <mu> held.
92         void write_packet_or_die(const AVPacket &pkt, int64_t unscaled_pts);
93         void thread_func();
94
95         WriteStrategy write_strategy;
96
97         std::mutex mu;
98
99         // These are only in use if write_strategy == WRITE_BACKGROUND.
100         std::atomic<bool> writer_thread_should_quit{false};
101         std::thread writer_thread;
102
103         AVFormatContext *avctx;  // Protected by <mu>, iff write_strategy == WRITE_BACKGROUND.
104         int plug_count = 0;  // Protected by <mu>.
105
106         // Protected by <mu>. If write_strategy == WRITE_FOREGROUND,
107         // this is only in use when plugging.
108         struct QueuedPacket {
109                 AVPacket *pkt;
110                 int64_t unscaled_pts;
111         };
112         std::vector<QueuedPacket> packet_queue;
113         std::condition_variable packet_queue_ready;
114
115         std::vector<AVStream *> streams;
116
117         std::function<void(int64_t)> write_callback;
118         std::vector<MuxMetrics *> metrics;
119
120         friend struct PacketBefore;
121 };
122
123 #endif  // !defined(_MUX_H)