Blender V5.0
proxy.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2004 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#pragma once
6
10
11struct ImBuf;
12struct MovieReader;
13struct SeqRenderData;
14struct Strip;
15struct anim;
16
17namespace blender::seq {
18
19#define PROXY_MAXFILE (2 * FILE_MAXDIR + FILE_MAXFILE)
20ImBuf *seq_proxy_fetch(const RenderData *context, Strip *strip, int timeline_frame);
21bool seq_proxy_get_custom_file_filepath(Strip *strip, char *filepath, int view_id);
22void free_strip_proxy(Strip *strip);
23void seq_proxy_index_dir_set(MovieReader *anim, const char *base_dir);
24
25} // namespace blender::seq
ImBuf * seq_proxy_fetch(const RenderData *context, Strip *strip, int timeline_frame)
Definition proxy.cc:205
void seq_proxy_index_dir_set(MovieReader *anim, const char *base_dir)
Definition proxy.cc:626
void free_strip_proxy(Strip *strip)
Definition proxy.cc:636
bool seq_proxy_get_custom_file_filepath(Strip *strip, char *filepath, const int view_id)
Definition proxy.cc:102