blob: 90969d0504008aae9b79447edd3542aa89031aa8 (
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
51
52
53
54
55
56
57
58
59
60
61
|
/*
* pdp2gem : pdp to gem bridge
*
* Holds the contents of a PDP packet and introduce it in the GEM rendering chain
*
* Copyright (c) 2003 Yves Degoyon
*
*/
#ifndef __PDP_2_GEM_H
#define __PDP_2_GEM_H
#define GEM_MOVIE_NONE 0
#define GEM_MOVIE_AVI 1
#define GEM_MOVIE_MPG 2
#define GEM_MOVIE_MOV 3
#include <string.h>
#include <stdio.h>
#include "Base/GemBase.h"
#include "Base/GemPixUtil.h"
#include "Base/config.h"
#include "pdp-light.h"
#include <pthread.h>
class GEM_EXTERN pdp2gem : public GemBase
{
CPPEXTERN_HEADER(pdp2gem, GemBase)
public:
pdp2gem(void);
protected:
virtual ~pdp2gem(void);
virtual void createBuffer(void);
virtual void deleteBuffer(void);
virtual void render(GemState *state);
virtual void postrender(GemState *state);
virtual void startRendering(void);
virtual void stopRendering(void) {}
static void pdpCallback(void *data, t_symbol *action, t_floatarg fpcktno);
void pdpMess(t_symbol *action, t_int fpcktno);
unsigned char *m_data;
pixBlock m_pixBlock;
t_int m_xsize;
t_int m_ysize;
t_int m_csize;
t_int m_format;
pthread_mutex_t *m_mutex;
// PDP data
t_int m_packet0;
t_int m_dropped;
t_pdp *m_header;
short int *m_pdpdata;
};
#endif // for header file
|