X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=futatabi%2Fclip_list.h;h=99fdf5316f1acdb87138ff6f69034662beb7a337;hb=e64a84bb856263242278afa9770ae5d05e21b055;hp=af3d1f524c42084ab77815f91cb4e30552cf5d07;hpb=b3a7a9eddd8b800f1b921332e8fdacb72e0d9b20;p=nageru diff --git a/futatabi/clip_list.h b/futatabi/clip_list.h index af3d1f5..99fdf53 100644 --- a/futatabi/clip_list.h +++ b/futatabi/clip_list.h @@ -137,10 +137,6 @@ public: ClipProxy mutable_back() { return mutable_clip(size() - 1); } const Clip *back() const { return clip(size() - 1); } - // TODO: Move these out of PlayList. - void set_currently_playing(int index, double progress); // -1 = none. - int get_currently_playing() const { return currently_playing_index; } - void set_progress(const std::map &progress); ClipListProto serialize() const; @@ -157,7 +153,6 @@ signals: private: std::vector clips; - int currently_playing_index = -1; double play_progress = 0.0; std::map current_progress; size_t num_cameras = 2;