2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2003-04-28 02:15:46 +00:00
|
|
|
* Quicktime_import.h
|
|
|
|
|
*
|
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2003-04-28 02:15:46 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2003-04-28 02:15:46 +00:00
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-04-28 02:15:46 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2002-2003 by TNCCI Inc.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2003-04-28 02:15:46 +00:00
|
|
|
*/
|
|
|
|
|
|
2011-02-27 20:01:38 +00:00
|
|
|
/** \file blender/quicktime/quicktime_import.h
|
|
|
|
|
* \ingroup quicktime
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2003-04-28 02:15:46 +00:00
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __QUICKTIME_IMPORT_H__
|
|
|
|
|
#define __QUICKTIME_IMPORT_H__
|
2003-04-28 02:15:46 +00:00
|
|
|
|
2003-12-07 12:55:18 +00:00
|
|
|
#define __AIFF__
|
|
|
|
|
|
2003-04-28 02:15:46 +00:00
|
|
|
#include "../imbuf/IMB_imbuf.h"
|
|
|
|
|
#include "../imbuf/IMB_imbuf_types.h"
|
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2012-10-20 20:20:02 +00:00
|
|
|
# ifndef __FIXMATH__
|
|
|
|
|
# include <FixMath.h>
|
|
|
|
|
# endif /* __FIXMATH__ */
|
2003-04-28 02:15:46 +00:00
|
|
|
#endif /* _WIN32 _ */
|
|
|
|
|
|
2014-01-20 16:52:06 +01:00
|
|
|
/* init/exit */
|
|
|
|
|
|
|
|
|
|
void quicktime_init(void);
|
|
|
|
|
void quicktime_exit(void);
|
2004-12-10 01:28:28 +00:00
|
|
|
|
2012-10-20 20:20:02 +00:00
|
|
|
/* quicktime movie import functions */
|
2003-04-28 02:15:46 +00:00
|
|
|
|
2013-03-26 07:29:01 +00:00
|
|
|
int anim_is_quicktime(const char *name);
|
|
|
|
|
int startquicktime(struct anim *anim);
|
|
|
|
|
void free_anim_quicktime(struct anim *anim);
|
|
|
|
|
ImBuf *qtime_fetchibuf(struct anim *anim, int position);
|
2003-04-28 02:15:46 +00:00
|
|
|
|
2012-10-09 13:36:42 +00:00
|
|
|
#endif /* __QUICKTIME_IMPORT_H__ */
|