From 89a963fb7fdff543b77de790355b9dac3019bd33 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 9 Mar 2012 18:28:30 +0000 Subject: style cleanup: comment blocks --- source/blender/imbuf/intern/IMB_indexer.h | 36 +++++++++++++++---------------- 1 file changed, 17 insertions(+), 19 deletions(-) (limited to 'source/blender/imbuf/intern/IMB_indexer.h') diff --git a/source/blender/imbuf/intern/IMB_indexer.h b/source/blender/imbuf/intern/IMB_indexer.h index 6546840ea85..dc16b4d7e36 100644 --- a/source/blender/imbuf/intern/IMB_indexer.h +++ b/source/blender/imbuf/intern/IMB_indexer.h @@ -33,26 +33,24 @@ #include #include "BKE_utildefines.h" #include "IMB_anim.h" - /* - separate animation index files to solve the following problems: - - a) different timecodes within one file (like DTS/PTS, Timecode-Track, - "implicit" timecodes within DV-files and HDV-files etc.) - b) seeking difficulties within ffmpeg for files with timestamp holes - c) broken files that miss several frames / have varying framerates - d) use proxies accordingly - - ... we need index files, that provide us with - - the binary(!) position, where we have to seek into the file *and* - the continuous frame number (ignoring the holes) starting from the - beginning of the file, so that we know, which proxy frame to serve. - - This index has to be only built once for a file and is written into - the BL_proxy directory structure for later reuse in different blender files. - -*/ + * separate animation index files to solve the following problems: + * + * a) different timecodes within one file (like DTS/PTS, Timecode-Track, + * "implicit" timecodes within DV-files and HDV-files etc.) + * b) seeking difficulties within ffmpeg for files with timestamp holes + * c) broken files that miss several frames / have varying framerates + * d) use proxies accordingly + * + * ... we need index files, that provide us with + * + * the binary(!) position, where we have to seek into the file *and* + * the continuous frame number (ignoring the holes) starting from the + * beginning of the file, so that we know, which proxy frame to serve. + * + * This index has to be only built once for a file and is written into + * the BL_proxy directory structure for later reuse in different blender files. + */ typedef struct anim_index_entry { int frameno; -- cgit v1.2.3