Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_timecode.h
| Show All 21 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup BLI | * \ingroup BLI | ||||
| */ | */ | ||||
| #include "BLI_compiler_attrs.h" | #include "BLI_compiler_attrs.h" | ||||
| size_t BLI_timecode_string_from_time( | size_t BLI_timecode_string_from_time( | ||||
| char *str, const size_t len, const int power, const float time_seconds, | char *str, const size_t len, const int brevity_level, const float time_seconds, | ||||
| const double scene_fps, const short timecode_style) | const double scene_fps, const short timecode_style) | ||||
| ATTR_NONNULL(); | ATTR_NONNULL(); | ||||
| size_t BLI_timecode_string_from_time_simple( | size_t BLI_timecode_string_from_time_simple( | ||||
| char *str, const size_t maxlen, const double time_seconds) | char *str, const size_t maxlen, const double time_seconds) | ||||
| ATTR_NONNULL(); | ATTR_NONNULL(); | ||||
| size_t BLI_timecode_string_from_time_seconds( | size_t BLI_timecode_string_from_time_seconds( | ||||
| char *str, const size_t len, const int power, const float time_seconds) | char *str, const size_t len, const int brevity_level, const float time_seconds) | ||||
| ATTR_NONNULL(); | ATTR_NONNULL(); | ||||
| #endif /* __BLI_TIMECODE_H__ */ | #endif /* __BLI_TIMECODE_H__ */ | ||||