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:
Diffstat (limited to 'source/blender/imbuf/IMB_imbuf.h')
-rw-r--r--source/blender/imbuf/IMB_imbuf.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h
index 69a80d6e0d3..2cfce7b1ba0 100644
--- a/source/blender/imbuf/IMB_imbuf.h
+++ b/source/blender/imbuf/IMB_imbuf.h
@@ -299,17 +299,22 @@ void IMB_rectblend_threaded(struct ImBuf *dbuf,
typedef enum IMB_Timecode_Type {
/** Don't use time-code files at all. */
IMB_TC_NONE = 0,
- /** use images in the order as they are recorded
+ /**
+ * Use images in the order as they are recorded
* (currently, this is the only one implemented
- * and is a sane default) */
+ * and is a sane default).
+ */
IMB_TC_RECORD_RUN = 1,
- /** Use global timestamp written by recording
- * device (prosumer camcorders e.g. can do that). */
+ /**
+ * Use global timestamp written by recording
+ * device (prosumer camcorders e.g. can do that).
+ */
IMB_TC_FREE_RUN = 2,
- /** Interpolate a global timestamp using the
+ /**
+ * Interpolate a global timestamp using the
* record date and time written by recording
- * device (*every* consumer camcorder can do
- * that :) )*/
+ * device (*every* consumer camcorder can do that).
+ */
IMB_TC_INTERPOLATED_REC_DATE_FREE_RUN = 4,
IMB_TC_RECORD_RUN_NO_GAPS = 8,
IMB_TC_MAX_SLOT = 4,