Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-01-15 15:15:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-15 15:30:31 +0300
commit4226ee0b71fec6f08897dacf3d6632526618acca (patch)
tree560c333c5a9458f3dbbb606befd52d558b35503f /source/blender/blenlib/intern/timecode.c
parent30c3852ffd140b003410aae25b222dea8b76412f (diff)
Cleanup: comment line length (blenlib)
Prevents clang-format wrapping text before comments.
Diffstat (limited to 'source/blender/blenlib/intern/timecode.c')
-rw-r--r--source/blender/blenlib/intern/timecode.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/timecode.c b/source/blender/blenlib/intern/timecode.c
index ab7766d2cd6..5f710ad10e4 100644
--- a/source/blender/blenlib/intern/timecode.c
+++ b/source/blender/blenlib/intern/timecode.c
@@ -135,7 +135,8 @@ size_t BLI_timecode_string_from_time(
}
case USER_TIMECODE_SMPTE_MSF:
{
- /* reduced SMPTE format that always shows minutes, seconds, frames. Hours only shown as needed. */
+ /* reduced SMPTE format that always shows minutes, seconds, frames.
+ * Hours only shown as needed. */
if (hours) {
rlen = BLI_snprintf_rlen(str, maxncpy, "%s%02d:%02d:%02d:%02d", neg, hours, minutes, seconds, frames);
}
@@ -165,7 +166,8 @@ size_t BLI_timecode_string_from_time(
}
case USER_TIMECODE_SUBRIP:
{
- /* SubRip, like SMPTE milliseconds but seconds and milliseconds are separated by a comma, not a dot... */
+ /* SubRip, like SMPTE milliseconds but seconds and milliseconds
+ * are separated by a comma, not a dot... */
/* precision of decimal part */
const int ms_dp = (power <= 0) ? (1 - power) : 1;