Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/anim_movie.c
| Show First 20 Lines • Show All 277 Lines • ▼ Show 20 Lines | #endif | ||||
| case ANIM_NONE: | case ANIM_NONE: | ||||
| default: | default: | ||||
| break; | break; | ||||
| } | } | ||||
| return anim->metadata; | return anim->metadata; | ||||
| } | } | ||||
| struct anim *IMB_open_anim(const char *name, | struct anim *IMB_open_anim(const char *name, | ||||
| int ib_flags, | eImBufFlags ib_flags, | ||||
| int streamindex, | int streamindex, | ||||
| char colorspace[IM_MAX_SPACE]) | char colorspace[IM_MAX_SPACE]) | ||||
| { | { | ||||
| struct anim *anim; | struct anim *anim; | ||||
| BLI_assert(!BLI_path_is_rel(name)); | BLI_assert(!BLI_path_is_rel(name)); | ||||
| anim = (struct anim *)MEM_callocN(sizeof(struct anim), "anim struct"); | anim = (struct anim *)MEM_callocN(sizeof(struct anim), "anim struct"); | ||||
| ▲ Show 20 Lines • Show All 1,178 Lines • Show Last 20 Lines | |||||