6 * ***** BEGIN GPL LICENSE BLOCK *****
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * The Original Code is Copyright (C) 2002-2003 by TNCCI Inc.
23 * All rights reserved.
25 * The Original Code is: all of this file.
27 * Contributor(s): none yet.
29 * ***** END GPL LICENSE BLOCK *****
32 /** \file blender/quicktime/quicktime_import.h
38 #ifndef __QUICKTIME_IMP_H__
39 #define __QUICKTIME_IMP_H__
43 #include "../imbuf/IMB_imbuf.h"
44 #include "../imbuf/IMB_imbuf_types.h"
50 #elif defined(__APPLE__)
51 #define __CARBONSOUND__
52 #import <Carbon/Carbon.h>
53 #include <QuickTime/Movies.h>
61 #endif /* __FIXMATH__ */
65 char *get_valid_qtname(char *name);
68 // quicktime movie import functions
70 int anim_is_quicktime (const char *name);
71 int startquicktime (struct anim *anim);
72 void free_anim_quicktime (struct anim *anim);
73 ImBuf *qtime_fetchibuf (struct anim *anim, int position);
75 // quicktime image import functions
77 int imb_is_a_quicktime (char *name);
78 ImBuf *imb_quicktime_decode(unsigned char *mem, int size, int flags);
80 #endif // __QUICKTIME_IMP_H__