Changeset View
Changeset View
Standalone View
Standalone View
source/blender/sequencer/intern/sequencer.c
| Show First 20 Lines • Show All 124 Lines • ▼ Show 20 Lines | Sequence *SEQ_sequence_alloc(ListBase *lb, int timeline_frame, int machine, int type) | ||||
| seq->machine = machine; | seq->machine = machine; | ||||
| seq->sat = 1.0; | seq->sat = 1.0; | ||||
| seq->mul = 1.0; | seq->mul = 1.0; | ||||
| seq->blend_opacity = 100.0; | seq->blend_opacity = 100.0; | ||||
| seq->volume = 1.0f; | seq->volume = 1.0f; | ||||
| seq->pitch = 1.0f; | seq->pitch = 1.0f; | ||||
| seq->scene_sound = NULL; | seq->scene_sound = NULL; | ||||
| seq->type = type; | seq->type = type; | ||||
| seq->playback_rate = 0.0f; | |||||
| seq->strip = seq_strip_alloc(type); | seq->strip = seq_strip_alloc(type); | ||||
| seq->stereo3d_format = MEM_callocN(sizeof(Stereo3dFormat), "Sequence Stereo Format"); | seq->stereo3d_format = MEM_callocN(sizeof(Stereo3dFormat), "Sequence Stereo Format"); | ||||
| SEQ_relations_session_uuid_generate(seq); | SEQ_relations_session_uuid_generate(seq); | ||||
| return seq; | return seq; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 574 Lines • Show Last 20 Lines | |||||