From 333cdbb41025db012239e0549a439515880aad9b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 18 Apr 2019 07:21:26 +0200 Subject: Cleanup: comment blocks --- source/blender/imbuf/IMB_imbuf.h | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'source/blender/imbuf/IMB_imbuf.h') 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; -- cgit v1.2.3