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>2012-08-04 23:34:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-04 23:34:38 +0400
commit3d204744147c136a2d57ca3ba52e424b50ea48c2 (patch)
tree479508a40e6c27b38d2641a75ae44c1adedca13c /source/blender/imbuf/intern/IMB_indexer.h
parent97e9659c537359f24a49b5cf9d8dcbb13947cb36 (diff)
style cleanup
Diffstat (limited to 'source/blender/imbuf/intern/IMB_indexer.h')
-rw-r--r--source/blender/imbuf/intern/IMB_indexer.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/imbuf/intern/IMB_indexer.h b/source/blender/imbuf/intern/IMB_indexer.h
index dc16b4d7e36..16d10a5c41c 100644
--- a/source/blender/imbuf/intern/IMB_indexer.h
+++ b/source/blender/imbuf/intern/IMB_indexer.h
@@ -63,7 +63,7 @@ struct anim_index {
char name[1024];
int num_entries;
- struct anim_index_entry * entries;
+ struct anim_index_entry *entries;
};
struct anim_index_builder;
@@ -77,9 +77,9 @@ typedef struct anim_index_builder {
void (*delete_priv_data)(struct anim_index_builder * idx);
void (*proc_frame)(struct anim_index_builder * idx,
- unsigned char * buffer,
+ unsigned char *buffer,
int data_size,
- struct anim_index_entry * entry);
+ struct anim_index_entry *entry);
} anim_index_builder;
anim_index_builder * IMB_index_builder_create(const char * name);
@@ -99,15 +99,15 @@ void IMB_index_builder_proc_frame(
void IMB_index_builder_finish(anim_index_builder * fp, int rollback);
-struct anim_index * IMB_indexer_open(const char * name);
+struct anim_index *IMB_indexer_open(const char * name);
unsigned long long IMB_indexer_get_seek_pos(
- struct anim_index * idx, int frameno_index);
+ struct anim_index *idx, int frameno_index);
unsigned long long IMB_indexer_get_seek_pos_dts(
- struct anim_index * idx, int frameno_index);
+ struct anim_index *idx, int frameno_index);
int IMB_indexer_get_frame_index(struct anim_index * idx, int frameno);
-unsigned long long IMB_indexer_get_pts(struct anim_index * idx,
- int frame_index);
+unsigned long long IMB_indexer_get_pts(struct anim_index *idx,
+ int frame_index);
int IMB_indexer_get_duration(struct anim_index * idx);
int IMB_indexer_can_scan(struct anim_index * idx,
@@ -118,12 +118,12 @@ void IMB_indexer_close(struct anim_index * idx);
void IMB_free_indices(struct anim * anim);
int IMB_anim_index_get_frame_index(
- struct anim * anim, IMB_Timecode_Type tc, int position);
+ struct anim *anim, IMB_Timecode_Type tc, int position);
-struct anim * IMB_anim_open_proxy(
- struct anim * anim, IMB_Proxy_Size preview_size);
+struct anim *IMB_anim_open_proxy(
+ struct anim *anim, IMB_Proxy_Size preview_size);
struct anim_index * IMB_anim_open_index(
- struct anim * anim, IMB_Timecode_Type tc);
+ struct anim *anim, IMB_Timecode_Type tc);
int IMB_proxy_size_to_array_index(IMB_Proxy_Size pr_size);
int IMB_timecode_to_array_index(IMB_Timecode_Type tc);