Ref: #132179 Renames: - `Editing.act_seq` -> `Editing.act_strip` - `SequenceModifierData` -> `StripModifierData` - Its member `mask_sequence` is now `mask_strip`. - `MetaStack.parseq` -> `MetaStack.parent_strip` - Remaining function names/parameters that were not dealt with in #132748 - Various references to `seq` or `sequence` throughout code and docs when referring to a strip Also moves `_get` to the end of the renamed function names where applicable for standardization (unless "by" or "from" are used). There should be no changes to current behavior. Pull Request: https://projects.blender.org/blender/blender/pulls/138077
26 lines
623 B
C++
26 lines
623 B
C++
/* SPDX-FileCopyrightText: 2004 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup sequencer
|
|
*/
|
|
|
|
struct ImBuf;
|
|
struct MovieReader;
|
|
struct SeqRenderData;
|
|
struct Strip;
|
|
struct anim;
|
|
|
|
namespace blender::seq {
|
|
|
|
#define PROXY_MAXFILE (2 * FILE_MAXDIR + FILE_MAXFILE)
|
|
ImBuf *seq_proxy_fetch(const RenderData *context, Strip *strip, int timeline_frame);
|
|
bool seq_proxy_get_custom_file_filepath(Strip *strip, char *filepath, int view_id);
|
|
void free_strip_proxy(Strip *strip);
|
|
void seq_proxy_index_dir_set(MovieReader *anim, const char *base_dir);
|
|
|
|
} // namespace blender::seq
|