~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_scene.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
2
 * blenlib/BKE_scene.h (mar-2001 nzc)
3
3
 *      
4
 
 * $Id: BKE_scene.h,v 1.7 2003/05/24 15:16:26 michel Exp $ 
 
4
 * $Id: BKE_scene.h,v 1.8 2004/12/27 19:28:48 ton Exp $ 
5
5
 *
6
6
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
7
7
 *
40
40
struct AviCodecData;
41
41
struct QuicktimeCodecData;
42
42
 
 
43
/* sequence related defines */
 
44
#define WHILE_SEQ(base) {                                                                                       \
 
45
        int totseq_, seq_; Sequence **seqar;    \
 
46
                build_seqar( base,  &seqar, &totseq_);  \
 
47
                        for(seq_ = 0; seq_ < totseq_; seq_++) { \
 
48
                                seq= seqar[seq_];
 
49
                                
 
50
                                
 
51
#define END_SEQ                                 }                                               \
 
52
                                if(seqar) MEM_freeN(seqar);             \
 
53
}
 
54
 
 
55
 
 
56
 
 
57
 
43
58
void free_avicodecdata(struct AviCodecData *acd);
44
59
void free_qtcodecdata(struct QuicktimeCodecData *acd);
45
60
void free_scene(struct Scene *me);