Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tags/Version Original/ARToolkit/include/AR/sys/videoLinux1394Cam.h
blob: cd90a3a3e519040e06f3cbd3f44971c498ea6745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************
 *
 * Author: Hirokazu Kato
 *
 *         kato@sys.im.hiroshima-cu.ac.jp
 *
 * Revision: 1.0
 * Date: 2002/01/01
 *
*******************************************************/
#ifndef AR_VIDEO_LINUX_1394CAM_H
#define AR_VIDEO_LINUX_1394CAM_H
#ifdef  __cplusplus
extern "C" {
#endif

#include <AR/config.h>
#include <AR/ar.h>

#include <stdlib.h>
#include <linux/types.h>
#include <linux/videodev.h>
#include <libraw1394/raw1394.h>
#include <libdc1394/dc1394_control.h>


typedef struct {
    int      node;
    int      mode;
    int      rate;
    int      debug;  
    int      card;
    int      channel;
    int      speed;
    int      format;
    int      dma_buf_num;
    int      int_mode;
    int      int_rate;
    int      status;

    int                    internal_id;
    dc1394_feature_set     features;
    dc1394_cameracapture   camera;
    ARUint8                *image;
} AR2VideoParamT;

#ifdef  __cplusplus
}
#endif
#endif