X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=futatabi%2Fplayer.h;h=92b6eea5e257136e27cb700c533867460e91a7d3;hb=5ec5103f6c772770d0d2ebf1b7be758fe538a65b;hp=b57bada647f2cb48439265cf8e534a6179c4d8f3;hpb=a64b7a670a29674aa4a6cb2abe2f5a29f6cc14bc;p=nageru diff --git a/futatabi/player.h b/futatabi/player.h index b57bada..92b6eea 100644 --- a/futatabi/player.h +++ b/futatabi/player.h @@ -6,6 +6,7 @@ #include "queue_spot_holder.h" extern "C" { +#include #include } @@ -19,13 +20,20 @@ class VideoStream; class QSurface; class QSurfaceFormat; +double compute_time_left(const std::vector &clips, const std::map &progress); + class Player : public QueueInterface { public: - Player(JPEGFrameView *destination, bool also_output_to_stream); + enum StreamOutput { + NO_STREAM_OUTPUT, + HTTPD_STREAM_OUTPUT, // Output to global_httpd. + FILE_STREAM_OUTPUT // Output to file_avctx. + }; + Player(JPEGFrameView *destination, StreamOutput stream_output, AVFormatContext *file_avctx = nullptr); ~Player(); - void play_clip(const Clip &clip, size_t clip_idx, unsigned stream_idx); - void override_angle(unsigned stream_idx); // For the current clip only. + void play(const std::vector &clips); + void override_angle(unsigned stream_idx); // Assumes one-clip playlist only. // Not thread-safe to set concurrently with playing. // Will be called back from the player thread. @@ -34,12 +42,7 @@ public: // Not thread-safe to set concurrently with playing. // Will be called back from the player thread. - // The second parameter is the clip's position in the play list. - using next_clip_callback_func = std::function()>; - void set_next_clip_callback(next_clip_callback_func cb) { next_clip_callback = cb; } - - // Not thread-safe to set concurrently with playing. - // Will be called back from the player thread. + // The keys in the given map are indexes in the vector given to play(). using progress_callback_func = std::function &progress)>; void set_progress_callback(progress_callback_func cb) { progress_callback = cb; } @@ -48,7 +51,8 @@ public: void release_queue_spot() override; private: - void thread_func(bool also_output_to_stream); + void thread_func(AVFormatContext *file_avctx); + void play_playlist_once(); void open_output_stream(); static int write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time); int write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time); @@ -62,26 +66,36 @@ private: JPEGFrameView *destination; done_callback_func done_callback; - next_clip_callback_func next_clip_callback; progress_callback_func progress_callback; - std::mutex mu; - Clip current_clip; // Under mu. Can have pts_in = -1 for no clip. - size_t current_clip_idx; // Under mu. - unsigned current_stream_idx; // Under mu. - std::mutex queue_state_mu; std::condition_variable new_clip_changed; + std::vector queued_clip_list; // Under queue_state_mu. bool new_clip_ready = false; // Under queue_state_mu. bool playing = false; // Under queue_state_mu. int override_stream_idx = -1; // Under queue_state_mu. + int64_t last_pts_played = -1; // Under queue_state_mu. Used by previews only. std::unique_ptr video_stream; // Can be nullptr. + std::atomic metric_dropped_interpolated_frame{0}; + std::atomic metric_dropped_unconditional_frame{0}; + std::atomic metric_faded_frame{0}; + std::atomic metric_faded_snapped_frame{0}; + std::atomic metric_original_frame{0}; + std::atomic metric_original_snapped_frame{0}; + std::atomic metric_refresh_frame{0}; + std::atomic metric_interpolated_frame{0}; + std::atomic metric_interpolated_faded_frame{0}; + // under queue_state_mu. Part of this instead of VideoStream so that we own // its lock and can sleep on it. size_t num_queued_frames = 0; static constexpr size_t max_queued_frames = 10; + + // State private to the player thread. + int64_t pts = 0; + const StreamOutput stream_output; }; #endif // !defined(_PLAYER_H)