]> git.sesse.net Git - nageru/blob - ffmpeg_capture.h
Factor out rewinding code in its own member function.
[nageru] / ffmpeg_capture.h
1 #ifndef _FFMPEG_CAPTURE_H
2 #define _FFMPEG_CAPTURE_H 1
3
4 // FFmpegCapture looks much like a capture card, but the frames it spits out
5 // come from a video in real time, looping. Because it decodes the video using
6 // FFmpeg (thus the name), this means it can handle a very wide array of video
7 // formats, and also things like network streaming and V4L capture, but it is
8 // also significantly less integrated and optimized than the regular capture
9 // cards.  In particular, the frames are always scaled and converted to 8-bit
10 // RGBA on the CPU before being sent on to the GPU.
11 //
12 // Since we don't really know much about the video when building the chains,
13 // there are some limitations. In particular, frames are always assumed to be
14 // sRGB even if the video container says something else. We could probably
15 // try to load the video on startup and pick out the parameters at that point
16 // (which would probably also allow us to send Y'CbCr video through without
17 // CPU conversion), but it would require some more plumbing, and it would also
18 // fail if the file changes parameters midway, which is allowed in some formats.
19 //
20 // There is currently no audio support. There is also no support for changing
21 // the video underway (unlike images), although there really should be.
22
23 #include <assert.h>
24 #include <stdint.h>
25 #include <functional>
26 #include <map>
27 #include <memory>
28 #include <mutex>
29 #include <set>
30 #include <string>
31 #include <thread>
32
33 #include "bmusb/bmusb.h"
34 #include "quittable_sleeper.h"
35
36 class FFmpegCapture : public bmusb::CaptureInterface
37 {
38 public:
39         FFmpegCapture(const std::string &filename, unsigned width, unsigned height);
40         ~FFmpegCapture();
41
42         void set_card_index(int card_index)
43         {
44                 this->card_index = card_index;
45         }
46
47         int get_card_index() const
48         {
49                 return card_index;
50         }
51
52         void rewind()
53         {
54                 std::lock_guard<std::mutex> lock(queue_mu);
55                 command_queue.push_back(QueuedCommand { QueuedCommand::REWIND });
56         }
57
58         void change_rate(double new_rate)
59         {
60                 std::lock_guard<std::mutex> lock(queue_mu);
61                 command_queue.push_back(QueuedCommand { QueuedCommand::CHANGE_RATE, new_rate });
62         }
63
64         // CaptureInterface.
65         void set_video_frame_allocator(bmusb::FrameAllocator *allocator) override
66         {
67                 video_frame_allocator = allocator;
68                 if (owned_video_frame_allocator.get() != allocator) {
69                         owned_video_frame_allocator.reset();
70                 }
71         }
72
73         bmusb::FrameAllocator *get_video_frame_allocator() override
74         {
75                 return video_frame_allocator;
76         }
77
78         // Does not take ownership.
79         void set_audio_frame_allocator(bmusb::FrameAllocator *allocator) override
80         {
81                 audio_frame_allocator = allocator;
82                 if (owned_audio_frame_allocator.get() != allocator) {
83                         owned_audio_frame_allocator.reset();
84                 }
85         }
86
87         bmusb::FrameAllocator *get_audio_frame_allocator() override
88         {
89                 return audio_frame_allocator;
90         }
91
92         void set_frame_callback(bmusb::frame_callback_t callback) override
93         {
94                 frame_callback = callback;
95         }
96
97         void set_dequeue_thread_callbacks(std::function<void()> init, std::function<void()> cleanup) override
98         {
99                 dequeue_init_callback = init;
100                 dequeue_cleanup_callback = cleanup;
101                 has_dequeue_callbacks = true;
102         }
103
104         std::string get_description() const override
105         {
106                 return description;
107         }
108
109         void configure_card() override;
110         void start_bm_capture() override;
111         void stop_dequeue_thread() override;
112
113         // TODO: Specify error status through this.
114         bool get_disconnected() const override { return false; }
115
116         std::map<uint32_t, bmusb::VideoMode> get_available_video_modes() const;
117         void set_video_mode(uint32_t video_mode_id) override {}  // Ignore.
118         uint32_t get_current_video_mode() const override { return 0; }
119
120         std::set<bmusb::PixelFormat> get_available_pixel_formats() const override {
121                 return std::set<bmusb::PixelFormat>{ bmusb::PixelFormat_8BitRGBA };
122         }
123         void set_pixel_format(bmusb::PixelFormat pixel_format) override {
124                 assert(pixel_format == bmusb::PixelFormat_8BitRGBA);
125         }       
126         bmusb::PixelFormat get_current_pixel_format() const override {
127                 return bmusb::PixelFormat_8BitRGBA;
128         }
129
130         std::map<uint32_t, std::string> get_available_video_inputs() const override {
131                 return { { 0, "Auto" } }; }
132         void set_video_input(uint32_t video_input_id) override {}  // Ignore.
133         uint32_t get_current_video_input() const override { return 0; }
134
135         std::map<uint32_t, std::string> get_available_audio_inputs() const override {
136                 return { { 0, "Embedded" } };
137         }
138         void set_audio_input(uint32_t audio_input_id) override {}  // Ignore.
139         uint32_t get_current_audio_input() const override { return 0; }
140
141 private:
142         void producer_thread_func();
143         bool play_video(const std::string &pathname);
144         void internal_rewind();
145
146         std::string description, filename;
147         uint16_t timecode = 0;
148         unsigned width, height;
149         bool running = false;
150         int card_index = -1;
151
152         bool has_dequeue_callbacks = false;
153         std::function<void()> dequeue_init_callback = nullptr;
154         std::function<void()> dequeue_cleanup_callback = nullptr;
155
156         bmusb::FrameAllocator *video_frame_allocator = nullptr;
157         bmusb::FrameAllocator *audio_frame_allocator = nullptr;
158         std::unique_ptr<bmusb::FrameAllocator> owned_video_frame_allocator;
159         std::unique_ptr<bmusb::FrameAllocator> owned_audio_frame_allocator;
160         bmusb::frame_callback_t frame_callback = nullptr;
161
162         QuittableSleeper producer_thread_should_quit;
163         std::thread producer_thread;
164
165         int64_t pts_origin, last_pts;
166         std::chrono::steady_clock::time_point start, next_frame_start;
167
168         std::mutex queue_mu;
169         struct QueuedCommand {
170                 enum Command { REWIND, CHANGE_RATE } command;
171                 double new_rate;  // For CHANGE_RATE.
172         };
173         std::vector<QueuedCommand> command_queue;  // Protected by <queue_mu>.
174 };
175
176 #endif  // !defined(_FFMPEG_CAPTURE_H)