X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=futatabi%2Fplayer.h;h=597f70209373ae601c6b7d6401d3e53ffb8f88e1;hb=bcd177e1daf5a63d7bf877bc5d30d8803dfd472c;hp=da5a4435da936778dbec3c606c39a312e45af953;hpb=f78363119d05e83b2665d89b147945fc0cdec020;p=nageru diff --git a/futatabi/player.h b/futatabi/player.h index da5a443..597f702 100644 --- a/futatabi/player.h +++ b/futatabi/player.h @@ -73,6 +73,7 @@ public: void set_master_speed(float speed) { + start_master_speed = speed; change_master_speed = speed; } @@ -94,7 +95,7 @@ public: private: void thread_func(AVFormatContext *file_avctx); void play_playlist_once(); - void display_single_frame(int primary_stream_idx, const FrameOnDisk &primary_frame, int secondary_stream_idx, const FrameOnDisk &secondary_frame, double fade_alpha, std::chrono::steady_clock::time_point frame_start, bool snapped, const std::string &subtitle); + void display_single_frame(int primary_stream_idx, const FrameOnDisk &primary_frame, int secondary_stream_idx, const FrameOnDisk &secondary_frame, double fade_alpha, std::chrono::steady_clock::time_point frame_start, bool snapped, const std::string &subtitle, bool play_audio); 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); @@ -106,6 +107,7 @@ private: std::thread player_thread; std::atomic should_quit{ false }; std::atomic should_skip_to_next{ false }; + std::atomic start_master_speed{ 1.0f }; std::atomic change_master_speed{ 0.0f / 0.0f }; JPEGFrameView *destination;