Rename: anim -> ImBufAnim Rename: anim_index -> ImBufAnimIndex There were cases where removing redundant "struct" qualifier caused a warning since the name of the struct member was also anim. Use uppercase type name to conform with other types names. Ref !117394
27 lines
708 B
C++
27 lines
708 B
C++
/* SPDX-FileCopyrightText: 2004 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup sequencer
|
|
*/
|
|
|
|
struct Scene;
|
|
|
|
/* **********************************************************************
|
|
* `sequencer.cc`
|
|
*
|
|
* Sequencer editing functions
|
|
* **********************************************************************
|
|
*/
|
|
|
|
void seq_anim_add_suffix(Scene *scene, ImBufAnim *anim, int view_id);
|
|
void seq_multiview_name(
|
|
Scene *scene, int view_id, const char *prefix, const char *ext, char *r_path, size_t r_size);
|
|
/**
|
|
* The number of files will vary according to the stereo format.
|
|
*/
|
|
int seq_num_files(Scene *scene, char views_format, bool is_multiview);
|