This only renames variables named `seq` and not other variants, like `seq_*` or `seq1`. Pull Request: https://projects.blender.org/blender/blender/pulls/132736
22 lines
568 B
C++
22 lines
568 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;
|
|
|
|
#define PROXY_MAXFILE (2 * FILE_MAXDIR + FILE_MAXFILE)
|
|
ImBuf *seq_proxy_fetch(const SeqRenderData *context, Strip *strip, int timeline_frame);
|
|
bool seq_proxy_get_custom_file_filepath(Strip *strip, char *filepath, int view_id);
|
|
void free_proxy_seq(Strip *strip);
|
|
void seq_proxy_index_dir_set(MovieReader *anim, const char *base_dir);
|