X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=futatabi%2Fplayer.h;h=a581a54f79dd41ae076403bb2a8b3b2831b0d029;hb=2b37c51ea17b77b88e2f7fda443109acc260aa8f;hp=27676e3f9480e750e97427e86ce748e38fb44197;hpb=c71ef0f3bbba901f6019083acd56ff43c1654a98;p=nageru diff --git a/futatabi/player.h b/futatabi/player.h index 27676e3..a581a54 100644 --- a/futatabi/player.h +++ b/futatabi/player.h @@ -32,7 +32,15 @@ public: Player(JPEGFrameView *destination, StreamOutput stream_output, AVFormatContext *file_avctx = nullptr); ~Player(); - void play(const std::vector &clips); + struct ClipWithRow { + Clip clip; + unsigned row; // Used for progress callback only. + }; + void play(const Clip &clip) + { + play({ ClipWithRow{ clip, 0 } }); + } + 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. @@ -42,7 +50,7 @@ public: // 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(). + // The keys in the given map are row members in the vector given to play(). using progress_callback_func = std::function &progress)>; void set_progress_callback(progress_callback_func cb) { progress_callback = cb; } @@ -63,7 +71,7 @@ private: bool find_surrounding_frames(int64_t pts, int stream_idx, FrameOnDisk *frame_lower, FrameOnDisk *frame_upper); std::thread player_thread; - std::atomic should_quit{false}; + std::atomic should_quit{ false }; JPEGFrameView *destination; done_callback_func done_callback; @@ -71,7 +79,7 @@ private: std::mutex queue_state_mu; std::condition_variable new_clip_changed; - std::vector queued_clip_list; // Under queue_state_mu. + 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. @@ -79,15 +87,15 @@ private: 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}; + 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.