blob: 84841b78f7167c401c3b06391bbc87253f36c753 (
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
62
63
64
65
66
67
68
69
70
71
72
|
/*
* pdp2gem : pdp to gem bridge
*
* Holds the contents of a PDP packet and introduce it in the GEM rendering chain
*
* Copyright (c) 2003-2005 Yves Degoyon
* Copyright (c) 2004-2005 James Tittle
*
*/
#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(t_symbol *colorspace);
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) {}
void pdpMess(t_symbol *action, int fpcktno);
//////////
// colorspace-message
virtual void csMess(char* format);
t_symbol *colorspace;
int m_colorspace;
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;
private:
static void pdpCallback(void *data, t_symbol *action, t_floatarg fpcktno);
static void csMessCallback(void *data, t_symbol *colorspace);
};
#endif // for header file
|