~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to gt/gtvr.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * gtvr.h
3
 
 * GnuTime VR module
4
 
 *
5
 
 * Copyright (C) 1998,99 Rasca, Berlin
6
 
 * EMail: thron@gmx.de
7
 
 *
8
 
 * This library is free software; you can redistribute it and/or
9
 
 * modify it under the terms of the GNU Library General Public
10
 
 * License as published by the Free Software Foundation; either
11
 
 * version 2 of the License, or (at your option) any later version.
12
 
 *
13
 
 * This library 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 GNU
16
 
 * Library General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU Library General Public
19
 
 * License along with this library; if not, write to the Free Software
20
 
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
 
 */
22
 
 
23
 
#ifndef __GTVR_H__
24
 
#define __GTVR_H__
25
 
 
26
 
#define GTVRMajorVersion        (0)
27
 
#define GTVRMinorVersion        (1)
28
 
 
29
 
enum {
30
 
        GTVRWorldHeaderAtomType,
31
 
        GTVRImagingParentAtomType,
32
 
        GTVRPanoImagingAtomType,
33
 
        GTVRObjectImagingAtomType,
34
 
        GTVRNodeParentAtomType,
35
 
        GTVRNodeIDAtomType,
36
 
        GTVRNodeLocationAtomType,
37
 
};
38
 
 
39
 
int gt_vr_dice (gt_image *, int frac, gt_image ***ret);
40
 
int gt_vr_new_from_diced (gt_image **, int num, char **ret);
41
 
 
42
 
#endif
43