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-04-18 08:21:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-18 08:59:28 +0300
commit333cdbb41025db012239e0549a439515880aad9b (patch)
tree7f34b68d8d412bd69073eabee1ed01e2ded0437f /source/blender/imbuf/IMB_imbuf.h
parent93e876c4f89909ff1e399d7f038aac134367b120 (diff)
Cleanup: comment blocks
Diffstat (limited to 'source/blender/imbuf/IMB_imbuf.h')
-rw-r--r--source/blender/imbuf/IMB_imbuf.h26
1 files changed, 14 insertions, 12 deletions
diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h
index 27eb6a5eee5..8445c0f8f3a 100644
--- a/source/blender/imbuf/IMB_imbuf.h
+++ b/source/blender/imbuf/IMB_imbuf.h
@@ -272,18 +272,20 @@ void IMB_rectblend_threaded(struct ImBuf *dbuf,
*/
typedef enum IMB_Timecode_Type {
- IMB_TC_NONE = 0, /* don't use timecode files at all */
-
- IMB_TC_RECORD_RUN = 1, /* use images in the order as they are recorded
- * (currently, this is the only one implemented
- * and is a sane default) */
-
- IMB_TC_FREE_RUN = 2, /* use global timestamp written by recording
- * device (prosumer camcorders e.g. can do that) */
- IMB_TC_INTERPOLATED_REC_DATE_FREE_RUN = 4, /* interpolate a global timestamp using the
- * record date and time written by recording
- * device (*every* consumer camcorder can do
- * that :) )*/
+ /** Don't use timecode files at all. */
+ IMB_TC_NONE = 0,
+ /** use images in the order as they are recorded
+ * (currently, this is the only one implemented
+ * and is a sane default) */
+ IMB_TC_RECORD_RUN = 1,
+ /** 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
+ * record date and time written by recording
+ * 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,
} IMB_Timecode_Type;