Files
test2/source/blender/sequencer/intern/proxy.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
568 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2004 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
/** \file
* \ingroup sequencer
*/
struct ImBuf;
struct MovieReader;
2020-11-06 10:29:00 +11:00
struct SeqRenderData;
struct Strip;
2020-12-16 16:26:23 +11:00
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);