]> git.sesse.net Git - nageru/blob - futatabi/player.h
Move the to-play playlist into Player.
[nageru] / futatabi / player.h
1 #ifndef _PLAYER_H
2 #define _PLAYER_H 1
3
4 #include "clip_list.h"
5 #include "frame_on_disk.h"
6 #include "queue_spot_holder.h"
7
8 extern "C" {
9 #include <libavformat/avformat.h>
10 #include <libavformat/avio.h>
11 }
12
13 #include <condition_variable>
14 #include <functional>
15 #include <mutex>
16 #include <thread>
17
18 class JPEGFrameView;
19 class VideoStream;
20 class QSurface;
21 class QSurfaceFormat;
22
23 double compute_time_left(const std::vector<Clip> &clips, const std::map<size_t, double> &progress);
24
25 class Player : public QueueInterface {
26 public:
27         enum StreamOutput {
28                 NO_STREAM_OUTPUT,
29                 HTTPD_STREAM_OUTPUT,  // Output to global_httpd.
30                 FILE_STREAM_OUTPUT    // Output to file_avctx.
31         };
32         Player(JPEGFrameView *destination, StreamOutput stream_output, AVFormatContext *file_avctx = nullptr);
33         ~Player();
34
35         void play(const std::vector<Clip> &clips);
36         void override_angle(unsigned stream_idx);  // For the current clip only.
37
38         // Not thread-safe to set concurrently with playing.
39         // Will be called back from the player thread.
40         using done_callback_func = std::function<void()>;
41         void set_done_callback(done_callback_func cb) { done_callback = cb; }
42
43         // Not thread-safe to set concurrently with playing.
44         // Will be called back from the player thread.
45         // The keys in the given map are indexes in the vector given to play().
46         using progress_callback_func = std::function<void(const std::map<size_t, double> &progress)>;
47         void set_progress_callback(progress_callback_func cb) { progress_callback = cb; }
48
49         // QueueInterface.
50         void take_queue_spot() override;
51         void release_queue_spot() override;
52
53 private:
54         void thread_func(StreamOutput stream_output, AVFormatContext *file_avctx);
55         void open_output_stream();
56         static int write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
57         int write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
58
59         // Find the frame immediately before and after this point.
60         // Returns false if pts is after the last frame.
61         bool find_surrounding_frames(int64_t pts, int stream_idx, FrameOnDisk *frame_lower, FrameOnDisk *frame_upper);
62
63         std::thread player_thread;
64         std::atomic<bool> should_quit{false};
65
66         JPEGFrameView *destination;
67         done_callback_func done_callback;
68         progress_callback_func progress_callback;
69
70         std::mutex queue_state_mu;
71         std::condition_variable new_clip_changed;
72         std::vector<Clip> queued_clip_list;   // Under queue_state_mu.
73         bool new_clip_ready = false;  // Under queue_state_mu.
74         bool playing = false;  // Under queue_state_mu.
75         int override_stream_idx = -1;  // Under queue_state_mu.
76         int64_t last_pts_played = -1;  // Under queue_state_mu. Used by previews only.
77
78         std::unique_ptr<VideoStream> video_stream;  // Can be nullptr.
79
80         std::atomic<int64_t> metric_dropped_interpolated_frame{0};
81         std::atomic<int64_t> metric_dropped_unconditional_frame{0};
82         std::atomic<int64_t> metric_faded_frame{0};
83         std::atomic<int64_t> metric_faded_snapped_frame{0};
84         std::atomic<int64_t> metric_original_frame{0};
85         std::atomic<int64_t> metric_original_snapped_frame{0};
86         std::atomic<int64_t> metric_refresh_frame{0};
87         std::atomic<int64_t> metric_interpolated_frame{0};
88         std::atomic<int64_t> metric_interpolated_faded_frame{0};
89
90         // under queue_state_mu. Part of this instead of VideoStream so that we own
91         // its lock and can sleep on it.
92         size_t num_queued_frames = 0;
93         static constexpr size_t max_queued_frames = 10;
94 };
95
96 #endif  // !defined(_PLAYER_H)