~kamalmostafa/ubuntu/lucid/pdp/fix-504941-ftbfs

« back to all changes in this revision

Viewing changes to modules/image_special/pdp_scale.c

  • Committer: Bazaar Package Importer
  • Author(s): Guenter Geiger (Debian/GNU)
  • Date: 2005-03-15 22:21:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050315222105-1q287rsihmd9j1tb
Tags: 1:0.12.4-2
* fixed the hardcoded depends
* added 3dp library

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *   Pure Data Packet module.
3
 
 *   Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
4
 
 *
5
 
 *   This program is free software; you can redistribute it and/or modify
6
 
 *   it under the terms of the GNU General Public License as published by
7
 
 *   the Free Software Foundation; either version 2 of the License, or
8
 
 *   (at your option) any later version.
9
 
 *
10
 
 *   This program is distributed in the hope that it will be useful,
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *   GNU General Public License for more details.
14
 
 *
15
 
 *   You should have received a copy of the GNU General Public License
16
 
 *   along with this program; if not, write to the Free Software
17
 
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
 
 *
19
 
 */
20
 
 
21
 
 
22
 
 
23
 
#include "pdp.h"
24
 
#include "pdp_resample.h"
25
 
 
26
 
 
27
 
 
28
 
typedef struct pdp_scale_struct
29
 
{
30
 
    t_object x_obj;
31
 
    t_float x_f;
32
 
 
33
 
    t_outlet *x_outlet0;
34
 
 
35
 
 
36
 
    int x_packet0;
37
 
    int x_packet1;
38
 
    int x_dropped;
39
 
    int x_queue_id;
40
 
 
41
 
    unsigned int x_width;
42
 
    unsigned int x_height;
43
 
    int x_quality;
44
 
 
45
 
    
46
 
} t_pdp_scale;
47
 
 
48
 
 
49
 
static void pdp_scale_process_yv12(t_pdp_scale *x)
50
 
{
51
 
    t_pdp *header0 = pdp_packet_header(x->x_packet0);
52
 
    t_pdp *header1 = pdp_packet_header(x->x_packet1);
53
 
    void  *data0   = pdp_packet_data  (x->x_packet0);
54
 
    void  *data1   = pdp_packet_data  (x->x_packet1);
55
 
 
56
 
    unsigned int src_w = header0->info.image.width;
57
 
    unsigned int src_h = header0->info.image.height;
58
 
 
59
 
    unsigned int dst_w = header1->info.image.width;
60
 
    unsigned int dst_h = header1->info.image.height;
61
 
 
62
 
    short int *src_image = (short int *)data0;
63
 
    short int *dst_image = (short int *)data1;
64
 
 
65
 
    unsigned int src_size = src_w*src_h;
66
 
    unsigned int src_voffset = src_size;
67
 
    unsigned int src_uoffset = src_size + (src_size>>2);
68
 
 
69
 
    unsigned int dst_size = dst_w*dst_h;
70
 
    unsigned int dst_voffset = dst_size;
71
 
    unsigned int dst_uoffset = dst_size + (dst_size>>2);
72
 
 
73
 
    if (x->x_quality){
74
 
        pdp_resample_scale_bilin(src_image, dst_image, src_w, src_h, dst_w, dst_h);
75
 
        pdp_resample_scale_bilin(src_image+src_voffset, dst_image+dst_voffset, src_w>>1, src_h>>1, dst_w>>1, dst_h>>1);
76
 
        pdp_resample_scale_bilin(src_image+src_uoffset, dst_image+dst_uoffset, src_w>>1, src_h>>1, dst_w>>1, dst_h>>1);
77
 
    }
78
 
    else{
79
 
        pdp_resample_scale_nn(src_image, dst_image, src_w, src_h, dst_w, dst_h);
80
 
        pdp_resample_scale_nn(src_image+src_voffset, dst_image+dst_voffset, src_w>>1, src_h>>1, dst_w>>1, dst_h>>1);
81
 
        pdp_resample_scale_nn(src_image+src_uoffset, dst_image+dst_uoffset, src_w>>1, src_h>>1, dst_w>>1, dst_h>>1);
82
 
    }
83
 
 
84
 
    return;
85
 
}
86
 
 
87
 
static void pdp_scale_process_grey(t_pdp_scale *x)
88
 
{
89
 
 
90
 
    t_pdp *header0 = pdp_packet_header(x->x_packet0);
91
 
    t_pdp *header1 = pdp_packet_header(x->x_packet1);
92
 
    void  *data0   = pdp_packet_data  (x->x_packet0);
93
 
    void  *data1   = pdp_packet_data  (x->x_packet1);
94
 
 
95
 
    unsigned int src_w = header0->info.image.width;
96
 
    unsigned int src_h = header0->info.image.height;
97
 
 
98
 
    unsigned int dst_w = header1->info.image.width;
99
 
    unsigned int dst_h = header1->info.image.height;
100
 
 
101
 
    short int *src_image = (short int *)data0;
102
 
    short int *dst_image = (short int *)data1;
103
 
 
104
 
    if (x->x_quality) pdp_resample_scale_bilin(src_image, dst_image, src_w, src_h, dst_w, dst_h);
105
 
    else              pdp_resample_scale_nn(src_image, dst_image, src_w, src_h, dst_w, dst_h);
106
 
 
107
 
    return;
108
 
 
109
 
 
110
 
}
111
 
 
112
 
static void pdp_scale_sendpacket(t_pdp_scale *x)
113
 
{
114
 
    /* delete source packet */
115
 
    pdp_packet_mark_unused(x->x_packet0);
116
 
    x->x_packet0 = -1;
117
 
 
118
 
    /* unregister and propagate if valid dest packet */
119
 
    pdp_packet_pass_if_valid(x->x_outlet0, &x->x_packet1);
120
 
}
121
 
 
122
 
static void pdp_scale_process(t_pdp_scale *x)
123
 
{
124
 
    t_pdp_procqueue *q = pdp_queue_get_queue();
125
 
    t_pdp *header0 = pdp_packet_header(x->x_packet0);
126
 
 
127
 
    /* check data packets */
128
 
 
129
 
    if ((header0) && (PDP_IMAGE == header0->type)){
130
 
 
131
 
        /* if dims are equal, just send the packet */
132
 
        if ((header0->info.image.width == x->x_width)
133
 
            && (header0->info.image.height == x->x_height)){
134
 
            x->x_packet1 = x->x_packet0;
135
 
            x->x_packet0 = -1;
136
 
            pdp_scale_sendpacket(x);
137
 
            return;
138
 
        }
139
 
 
140
 
        /* type hub */
141
 
        switch(header0->info.image.encoding){
142
 
 
143
 
        case PDP_IMAGE_YV12:
144
 
            x->x_packet1 = pdp_packet_new_image_YCrCb(x->x_width, x->x_height);
145
 
            if(x->x_packet1 == -1){
146
 
                post("pdp_scale: can't allocate packet");
147
 
                return;
148
 
            }
149
 
            pdp_procqueue_add(q, x, pdp_scale_process_yv12, pdp_scale_sendpacket, &x->x_queue_id);
150
 
            break;
151
 
 
152
 
        case PDP_IMAGE_GREY:
153
 
            x->x_packet1 = pdp_packet_new_image_grey(x->x_width, x->x_height);
154
 
            if(x->x_packet1 == -1){
155
 
                post("pdp_scale: can't allocate packet");
156
 
                return;
157
 
            }
158
 
            pdp_procqueue_add(q, x, pdp_scale_process_grey, pdp_scale_sendpacket, &x->x_queue_id);
159
 
            break;
160
 
 
161
 
        default:
162
 
            break;
163
 
            /* don't know the type, so dont process */
164
 
            
165
 
        }
166
 
    }
167
 
 
168
 
}
169
 
 
170
 
 
171
 
 
172
 
 
173
 
static void pdp_scale_input_0(t_pdp_scale *x, t_symbol *s, t_floatarg f)
174
 
{
175
 
 
176
 
    int p = (int)f;
177
 
    int passes, i;
178
 
 
179
 
    if (s== gensym("register_rw"))  x->x_dropped = pdp_packet_copy_ro_or_drop(&x->x_packet0, p);
180
 
 
181
 
 
182
 
    if ((s == gensym("process")) && (-1 != x->x_packet0) && (!x->x_dropped)){
183
 
 
184
 
        /* add the process method and callback to the process queue */
185
 
        pdp_scale_process(x);
186
 
 
187
 
    }
188
 
 
189
 
}
190
 
 
191
 
 
192
 
 
193
 
 
194
 
static void pdp_scale_width(t_pdp_scale *x, t_floatarg f)
195
 
{
196
 
    int i = (int)f;
197
 
    if (i < 32) i = 32;
198
 
    x->x_width = i;
199
 
}
200
 
 
201
 
static void pdp_scale_height(t_pdp_scale *x, t_floatarg f)
202
 
{
203
 
    int i = (int)f;
204
 
    if (i < 32) i = 32;
205
 
    x->x_height = i;
206
 
}
207
 
 
208
 
 
209
 
static void pdp_scale_dim(t_pdp_scale *x, t_floatarg w, t_floatarg h)
210
 
{
211
 
    pdp_scale_width(x, w);
212
 
    pdp_scale_height(x, h);
213
 
}
214
 
 
215
 
static void pdp_scale_quality(t_pdp_scale *x, t_floatarg f)
216
 
{
217
 
    if (f==0) x->x_quality = 0;
218
 
    if (f==1) x->x_quality = 1;
219
 
}
220
 
 
221
 
 
222
 
t_class *pdp_scale_class;
223
 
 
224
 
 
225
 
 
226
 
void pdp_scale_free(t_pdp_scale *x)
227
 
{
228
 
    t_pdp_procqueue *q = pdp_queue_get_queue();
229
 
    pdp_procqueue_finish(q, x->x_queue_id);
230
 
    pdp_packet_mark_unused(x->x_packet0);
231
 
    pdp_packet_mark_unused(x->x_packet1);
232
 
}
233
 
 
234
 
void *pdp_scale_new(t_floatarg fw, t_floatarg fh)
235
 
{
236
 
    t_pdp_scale *x = (t_pdp_scale *)pd_new(pdp_scale_class);
237
 
 
238
 
    x->x_outlet0 = outlet_new(&x->x_obj, &s_anything); 
239
 
 
240
 
    x->x_packet0 = -1;
241
 
    x->x_packet1 = -1;
242
 
    x->x_queue_id = -1;
243
 
 
244
 
    if ((fw != 0.0f) && (fh != 0.0f)) pdp_scale_dim(x, fw, fh);
245
 
    else pdp_scale_dim(x, 320, 240);
246
 
 
247
 
    pdp_scale_quality(x, 1);
248
 
 
249
 
    return (void *)x;
250
 
}
251
 
 
252
 
 
253
 
#ifdef __cplusplus
254
 
extern "C"
255
 
{
256
 
#endif
257
 
 
258
 
 
259
 
void pdp_scale_setup(void)
260
 
{
261
 
 
262
 
 
263
 
    pdp_scale_class = class_new(gensym("pdp_scale"), (t_newmethod)pdp_scale_new,
264
 
        (t_method)pdp_scale_free, sizeof(t_pdp_scale), 0, A_DEFFLOAT, A_DEFFLOAT, A_NULL);
265
 
 
266
 
 
267
 
    class_addmethod(pdp_scale_class, (t_method)pdp_scale_quality, gensym("quality"),  A_FLOAT, A_NULL);   
268
 
    class_addmethod(pdp_scale_class, (t_method)pdp_scale_width, gensym("width"),  A_FLOAT, A_NULL);   
269
 
    class_addmethod(pdp_scale_class, (t_method)pdp_scale_height, gensym("height"),  A_FLOAT, A_NULL);   
270
 
    class_addmethod(pdp_scale_class, (t_method)pdp_scale_dim, gensym("dim"),  A_FLOAT, A_FLOAT, A_NULL);   
271
 
    class_addmethod(pdp_scale_class, (t_method)pdp_scale_input_0, gensym("pdp"),  A_SYMBOL, A_DEFFLOAT, A_NULL);
272
 
 
273
 
}
274
 
 
275
 
#ifdef __cplusplus
276
 
}
277
 
#endif