]> git.sesse.net Git - nageru/blob - player.h
Show time remaining when playing clips live.
[nageru] / player.h
1 #ifndef _PLAYER_H
2 #define _PLAYER_H 1
3
4 #include "clip_list.h"
5
6 extern "C" {
7 #include <libavformat/avio.h>
8 }
9
10 #include <condition_variable>
11 #include <functional>
12 #include <mutex>
13
14 class JPEGFrameView;
15 class VideoStream;
16 class QSurface;
17 class QSurfaceFormat;
18
19 class Player {
20 public:
21         Player(JPEGFrameView *destination, bool also_output_to_stream);
22
23         void play_clip(const Clip &clip, unsigned stream_idx);
24         void override_angle(unsigned stream_idx);  // For the current clip only.
25
26         // Not thread-safe to set concurrently with playing.
27         // Will be called back from the player thread.
28         using done_callback_func = std::function<void()>;
29         void set_done_callback(done_callback_func cb) { done_callback = cb; }
30
31         // Not thread-safe to set concurrently with playing.
32         // Will be called back from the player thread.
33         using progress_callback_func = std::function<void(double played_this_clip, double total_length)>;
34         void set_progress_callback(progress_callback_func cb) { progress_callback = cb; }
35
36 private:
37         void thread_func(bool also_output_to_stream);
38         void open_output_stream();
39         static int write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
40         int write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
41
42         JPEGFrameView *destination;
43         done_callback_func done_callback;
44         progress_callback_func progress_callback;
45
46         std::mutex mu;
47         Clip current_clip;  // Under mu. Can have pts_in = -1 for no clip.
48         unsigned current_stream_idx;  // Under mu.
49
50         std::mutex queue_state_mu;
51         std::condition_variable new_clip_changed;
52         bool new_clip_ready = false;  // Under queue_state_mu.
53         bool playing = false;  // Under queue_state_mu.
54         int override_stream_idx = -1;  // Under queue_state_mu.
55
56         std::unique_ptr<VideoStream> video_stream;  // Can be nullptr.
57 };
58
59 #endif  // !defined(_PLAYER_H)