| 60 | void set_display_timestamp_flicks(const timebase::flicks dts) { dts_ = dts; } |
| 61 | void set_display_timestamp_seconds(const double dts) { dts_ = timebase::to_flicks(dts); } |
| 62 | void set_error(const std::string &err) { |
| 63 | error_message_ = err; |
| 64 | error_state_ = HAS_ERROR; |
| 65 | } |
| 66 | |
| 67 | struct BufferData { |
| 68 | struct BufferDeleter { |