[svn] / branches / dev-api-4 / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/vfw/src/codec.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1356 - (view) (download)

1 : suxen_drol 889 /**************************************************************************
2 :     *
3 :     * XVID VFW FRONTEND
4 :     * codec
5 :     *
6 :     * This program is free software; you can redistribute it and/or modify
7 :     * it under the terms of the GNU General Public License as published by
8 :     * the Free Software Foundation; either version 2 of the License, or
9 :     * (at your option) any later version.
10 :     *
11 :     * This program is distributed in the hope that it will be useful,
12 :     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 :     * GNU General Public License for more details.
15 :     *
16 :     * You should have received a copy of the GNU General Public License
17 :     * along with this program; if not, write to the Free Software
18 :     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 :     *
20 :     *************************************************************************/
21 :    
22 :     /**************************************************************************
23 :     *
24 :     * History:
25 :     *
26 :     * 12.07.2002 num_threads
27 :     * 23.06.2002 XVID_CPU_CHKONLY; loading speed up
28 :     * 25.04.2002 ICDECOMPRESS_PREROLL
29 :     * 17.04.2002 re-enabled lumi masking for 1st pass
30 :     * 15.04.2002 updated cbr support
31 :     * 04.04.2002 separated 2-pass code to 2pass.c
32 :     * interlacing support
33 :     * hinted ME support
34 :     * 23.03.2002 daniel smith <danielsmith@astroboymail.com>
35 :     * changed inter4v to only be in modes 5 or 6
36 :     * fixed null mode crash ?
37 :     * merged foxer's alternative 2-pass code
38 :     * added DEBUGERR output on errors instead of returning
39 :     * 16.03.2002 daniel smith <danielsmith@astroboymail.com>
40 :     * changed BITMAPV4HEADER to BITMAPINFOHEADER
41 :     * - prevents memcpy crash in compress_get_format()
42 :     * credits are processed in external 2pass mode
43 :     * motion search precision = 0 now effective in 2-pass
44 :     * modulated quantization
45 :     * added DX50 fourcc
46 :     * 01.12.2001 inital version; (c)2001 peter ross <pross@xvid.org>
47 :     *
48 :     *************************************************************************/
49 :    
50 :     #include <windows.h>
51 :     #include <vfw.h>
52 : edgomez 1203 #include <stdio.h>
53 : suxen_drol 1017 #include "vfwext.h"
54 : suxen_drol 889
55 : suxen_drol 983 #include <xvid.h>
56 :     #include "debug.h"
57 : suxen_drol 889 #include "codec.h"
58 : suxen_drol 1061 #include "status.h"
59 : suxen_drol 889
60 : suxen_drol 983
61 :     static const int pmvfast_presets[7] = {
62 : suxen_drol 889 0, 0, 0, 0,
63 : edgomez 949 0 | XVID_ME_HALFPELREFINE16 | 0,
64 :     0 | XVID_ME_HALFPELREFINE16 | 0 |
65 :     XVID_ME_ADVANCEDDIAMOND16, XVID_ME_HALFPELREFINE16 | XVID_ME_EXTSEARCH16 |
66 :     XVID_ME_HALFPELREFINE8 | 0 | XVID_ME_USESQUARES16
67 : suxen_drol 889 };
68 :    
69 : suxen_drol 983
70 :    
71 : suxen_drol 889 /* return xvid compatbile colorspace,
72 :     or XVID_CSP_NULL if failure
73 :     */
74 :    
75 : suxen_drol 1333 static int get_colorspace(BITMAPINFOHEADER * hdr)
76 : suxen_drol 889 {
77 :     /* rgb only: negative height specifies top down image */
78 :     int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);
79 :    
80 :     switch(hdr->biCompression)
81 :     {
82 :     case BI_RGB :
83 :     if (hdr->biBitCount == 16)
84 :     {
85 : suxen_drol 983 DPRINTF("RGB16 (RGB555)");
86 : suxen_drol 889 return rgb_flip | XVID_CSP_RGB555;
87 :     }
88 :     if (hdr->biBitCount == 24)
89 :     {
90 : suxen_drol 983 DPRINTF("RGB24");
91 : suxen_drol 889 return rgb_flip | XVID_CSP_BGR;
92 :     }
93 :     if (hdr->biBitCount == 32)
94 :     {
95 : suxen_drol 983 DPRINTF("RGB32");
96 : suxen_drol 889 return rgb_flip | XVID_CSP_BGRA;
97 :     }
98 :    
99 : suxen_drol 983 DPRINTF("unsupported BI_RGB biBitCount=%i", hdr->biBitCount);
100 : suxen_drol 889 return XVID_CSP_NULL;
101 :    
102 :     case BI_BITFIELDS :
103 :     if (hdr->biSize >= sizeof(BITMAPV4HEADER))
104 :     {
105 :     BITMAPV4HEADER * hdr4 = (BITMAPV4HEADER *)hdr;
106 :    
107 :     if (hdr4->bV4BitCount == 16 &&
108 :     hdr4->bV4RedMask == 0x7c00 &&
109 :     hdr4->bV4GreenMask == 0x3e0 &&
110 :     hdr4->bV4BlueMask == 0x1f)
111 :     {
112 : suxen_drol 983 DPRINTF("RGB555");
113 : suxen_drol 889 return rgb_flip | XVID_CSP_RGB555;
114 :     }
115 :    
116 :     if(hdr4->bV4BitCount == 16 &&
117 :     hdr4->bV4RedMask == 0xf800 &&
118 :     hdr4->bV4GreenMask == 0x7e0 &&
119 :     hdr4->bV4BlueMask == 0x1f)
120 :     {
121 : suxen_drol 983 DPRINTF("RGB565");
122 : suxen_drol 889 return rgb_flip | XVID_CSP_RGB565;
123 :     }
124 :    
125 : suxen_drol 983 DPRINTF("unsupported BI_BITFIELDS mode");
126 : suxen_drol 889 return XVID_CSP_NULL;
127 :     }
128 :    
129 : suxen_drol 983 DPRINTF("unsupported BI_BITFIELDS/BITMAPHEADER combination");
130 : suxen_drol 889 return XVID_CSP_NULL;
131 :    
132 :     case FOURCC_I420 :
133 :     case FOURCC_IYUV :
134 : suxen_drol 983 DPRINTF("IYUY");
135 : suxen_drol 889 return XVID_CSP_I420;
136 :    
137 :     case FOURCC_YV12 :
138 : suxen_drol 983 DPRINTF("YV12");
139 : suxen_drol 889 return XVID_CSP_YV12;
140 :    
141 :     case FOURCC_YUYV :
142 :     case FOURCC_YUY2 :
143 : suxen_drol 983 DPRINTF("YUY2");
144 : suxen_drol 889 return XVID_CSP_YUY2;
145 :    
146 :     case FOURCC_YVYU :
147 : suxen_drol 983 DPRINTF("YVYU");
148 : suxen_drol 889 return XVID_CSP_YVYU;
149 :    
150 :     case FOURCC_UYVY :
151 : suxen_drol 983 DPRINTF("UYVY");
152 : suxen_drol 889 return XVID_CSP_UYVY;
153 :    
154 :     default :
155 : suxen_drol 983 DPRINTF("unsupported colorspace %c%c%c%c",
156 : syskin 1311 hdr->biCompression&0xff,
157 :     (hdr->biCompression>>8)&0xff,
158 :     (hdr->biCompression>>16)&0xff,
159 :     (hdr->biCompression>>24)&0xff);
160 : suxen_drol 889 return XVID_CSP_NULL;
161 :     }
162 :     }
163 :    
164 :    
165 :     /* compressor */
166 :    
167 :    
168 :     /* test the output format */
169 :    
170 :     LRESULT compress_query(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
171 :     {
172 :     BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
173 :     BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
174 :    
175 : syskin 1311 /* VFWEXT detection */
176 :     if (inhdr->biCompression == VFWEXT_FOURCC) {
177 :     return (ICM_USER+0x0fff);
178 :     }
179 : suxen_drol 1017
180 : suxen_drol 889 if (get_colorspace(inhdr) == XVID_CSP_NULL)
181 :     {
182 :     return ICERR_BADFORMAT;
183 :     }
184 :    
185 :     if (lpbiOutput == NULL)
186 :     {
187 :     return ICERR_OK;
188 :     }
189 :    
190 :     if (inhdr->biWidth != outhdr->biWidth || inhdr->biHeight != outhdr->biHeight ||
191 :     (outhdr->biCompression != FOURCC_XVID && outhdr->biCompression != FOURCC_DIVX && outhdr->biCompression != FOURCC_DX50))
192 :     {
193 :     return ICERR_BADFORMAT;
194 :     }
195 :    
196 :     return ICERR_OK;
197 :     }
198 :    
199 :    
200 :     LRESULT compress_get_format(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
201 :     {
202 :     BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
203 :     BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
204 :    
205 :     if (get_colorspace(inhdr) == XVID_CSP_NULL)
206 :     {
207 :     return ICERR_BADFORMAT;
208 :     }
209 :    
210 :     if (lpbiOutput == NULL)
211 :     {
212 : syskin 1091 return sizeof(BITMAPINFOHEADER);
213 : suxen_drol 889 }
214 :    
215 :     memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
216 :     outhdr->biSize = sizeof(BITMAPINFOHEADER);
217 :     outhdr->biSizeImage = compress_get_size(codec, lpbiInput, lpbiOutput);
218 :     outhdr->biXPelsPerMeter = 0;
219 :     outhdr->biYPelsPerMeter = 0;
220 :     outhdr->biClrUsed = 0;
221 :     outhdr->biClrImportant = 0;
222 :    
223 :     if (codec->config.fourcc_used == 0)
224 :     {
225 :     outhdr->biCompression = FOURCC_XVID;
226 :     }
227 :     else if (codec->config.fourcc_used == 1)
228 :     {
229 :     outhdr->biCompression = FOURCC_DIVX;
230 :     }
231 :     else
232 :     {
233 :     outhdr->biCompression = FOURCC_DX50;
234 :     }
235 :    
236 :     return ICERR_OK;
237 :     }
238 :    
239 :    
240 :     LRESULT compress_get_size(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
241 :     {
242 :     return 2 * lpbiOutput->bmiHeader.biWidth * lpbiOutput->bmiHeader.biHeight * 3;
243 :     }
244 :    
245 :    
246 :     LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)
247 :     {
248 : edgomez 1053 #if 0
249 : syskin 1311 DPRINTF("%i %i", icf->lStartFrame, icf->lFrameCount);
250 : edgomez 1053 #endif
251 : suxen_drol 889 codec->fincr = icf->dwScale;
252 :     codec->fbase = icf->dwRate;
253 :     return ICERR_OK;
254 :     }
255 :    
256 :    
257 : suxen_drol 1333 static char type2char(int type)
258 : suxen_drol 983 {
259 : syskin 1311 if (type==XVID_TYPE_IVOP)
260 :     return 'I';
261 :     if (type==XVID_TYPE_PVOP)
262 :     return 'P';
263 :     if (type==XVID_TYPE_BVOP)
264 :     return 'B';
265 :     return 'S';
266 : suxen_drol 983 }
267 :    
268 : suxen_drol 1333 static int vfw_debug(void *handle,
269 : suxen_drol 983 int opt,
270 :     void *param1,
271 : edgomez 1326 void *param2)
272 : suxen_drol 983 {
273 :     switch (opt) {
274 : syskin 1311 case XVID_PLG_CREATE:
275 : edgomez 1326 *((void**)param2) = NULL;
276 : suxen_drol 983 case XVID_PLG_INFO:
277 :     case XVID_PLG_DESTROY:
278 :     case XVID_PLG_BEFORE:
279 :     return 0;
280 :    
281 :     case XVID_PLG_AFTER:
282 :     {
283 :     xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
284 :    
285 : edgomez 1203 /* We don't use DPRINTF here because it's active only for _DEBUG
286 :     * builds and that activates lot of other debug printfs. We only
287 :     * want these all the time */
288 :     char buf[1024];
289 : edgomez 1267 sprintf(buf, "[%6i] type=%c Q:%2i length:%6i",
290 : edgomez 1203 data->frame_num,
291 :     type2char(data->type),
292 :     data->quant,
293 :     data->length);
294 :     OutputDebugString(buf);
295 :    
296 : suxen_drol 983 return 0;
297 :     }
298 :     }
299 :    
300 :     return XVID_ERR_FAIL;
301 :     }
302 :    
303 : syskin 1301 #define XVID_DLL_NAME "xvidcore.dll"
304 : suxen_drol 983
305 : syskin 1301 static int init_dll()
306 :     {
307 : syskin 1305 if (m_hdll != NULL) return 0;
308 : suxen_drol 983
309 : syskin 1301 DPRINTF("init_dll");
310 :     m_hdll = LoadLibrary(XVID_DLL_NAME);
311 :     if (m_hdll == NULL) {
312 :     DPRINTF("dll load failed");
313 : syskin 1329 MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
314 : syskin 1301 return XVID_ERR_FAIL;
315 :     }
316 :    
317 :     xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global");
318 :     if (xvid_global_func == NULL) {
319 :     MessageBox(0, "xvid_global() not found", "Error", 0);
320 :     return XVID_ERR_FAIL;
321 :     }
322 :    
323 :     xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_encore");
324 :     if (xvid_encore_func == NULL) {
325 :     MessageBox(0, "xvid_encore() not found", "Error", 0);
326 :     return XVID_ERR_FAIL;
327 :     }
328 :    
329 :     xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_decore");
330 :     if (xvid_decore_func == NULL) {
331 :     MessageBox(0, "xvid_decore() not found", "Error", 0);
332 :     return XVID_ERR_FAIL;
333 :     }
334 :    
335 :     xvid_plugin_single_func =
336 :     (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_single"));
337 :     xvid_plugin_2pass1_func =
338 :     (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass1"));
339 :     xvid_plugin_2pass2_func =
340 :     (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass2"));
341 :     xvid_plugin_lumimasking_func =
342 :     (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_lumimasking"));
343 :     xvid_plugin_psnr_func =
344 :     (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_psnr"));
345 :    
346 :     return 0;
347 :     }
348 :    
349 : syskin 1346 /* constant-quant zones for fixed quant encoding */
350 : syskin 1329 static void
351 :     prepare_cquant_zones(CONFIG * config) {
352 :    
353 :     int i = 0;
354 :     if (config->num_zones == 0 || config->zones[0].frame != 0) {
355 :     /* first zone does not start at frame 0 or doesn't exist */
356 :    
357 :     if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
358 :    
359 :     config->zones[config->num_zones].frame = 0;
360 :     config->zones[config->num_zones].mode = RC_ZONE_QUANT;
361 :     config->zones[config->num_zones].weight = 100;
362 :     config->zones[config->num_zones].quant = config->desired_quant;
363 :     config->zones[config->num_zones].type = XVID_TYPE_AUTO;
364 :     config->zones[config->num_zones].greyscale = 0;
365 :     config->zones[config->num_zones].chroma_opt = 0;
366 :     config->zones[config->num_zones].bvop_threshold = 0;
367 :     config->num_zones++;
368 :    
369 :     sort_zones(config->zones, config->num_zones, &i);
370 :     }
371 :    
372 :     /* step 2: let's change all weight zones into quant zones */
373 :    
374 :     for(i = 0; i < config->num_zones; i++)
375 :     if (config->zones[i].mode == RC_ZONE_WEIGHT) {
376 :     config->zones[i].mode = RC_ZONE_QUANT;
377 :     config->zones[i].quant = (100*config->desired_quant) / config->zones[i].weight;
378 :     }
379 :     }
380 :    
381 : syskin 1346 /* full first pass zones */
382 :     static void
383 :     prepare_full1pass_zones(CONFIG * config) {
384 :    
385 :     int i = 0;
386 :     if (config->num_zones == 0 || config->zones[0].frame != 0) {
387 :     /* first zone does not start at frame 0 or doesn't exist */
388 : syskin 1329
389 : syskin 1346 if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
390 :    
391 :     config->zones[config->num_zones].frame = 0;
392 :     config->zones[config->num_zones].mode = RC_ZONE_QUANT;
393 :     config->zones[config->num_zones].weight = 100;
394 :     config->zones[config->num_zones].quant = 200;
395 :     config->zones[config->num_zones].type = XVID_TYPE_AUTO;
396 :     config->zones[config->num_zones].greyscale = 0;
397 :     config->zones[config->num_zones].chroma_opt = 0;
398 :     config->zones[config->num_zones].bvop_threshold = 0;
399 :     config->num_zones++;
400 :    
401 :     sort_zones(config->zones, config->num_zones, &i);
402 :     }
403 :    
404 :     /* step 2: let's change all weight zones into quant zones */
405 :    
406 :     for(i = 0; i < config->num_zones; i++)
407 :     if (config->zones[i].mode == RC_ZONE_WEIGHT) {
408 :     config->zones[i].mode = RC_ZONE_QUANT;
409 :     config->zones[i].quant = 200;
410 :     }
411 :     }
412 :    
413 :    
414 : suxen_drol 889 LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
415 :     {
416 :     xvid_gbl_init_t init;
417 :     xvid_enc_create_t create;
418 : syskin 1311 xvid_enc_plugin_t plugins[3];
419 : suxen_drol 1017 xvid_plugin_single_t single;
420 : suxen_drol 983 xvid_plugin_2pass1_t pass1;
421 :     xvid_plugin_2pass2_t pass2;
422 : syskin 1311 int i;
423 : syskin 1329 HANDLE hFile;
424 : suxen_drol 889
425 : syskin 1329 CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
426 :     memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
427 :    
428 : syskin 1301 if (init_dll() != 0) return ICERR_ERROR;
429 : syskin 1311 /* destroy previously created codec */
430 : suxen_drol 983 if(codec->ehandle) {
431 : syskin 1301 xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
432 : suxen_drol 983 codec->ehandle = NULL;
433 :     }
434 :    
435 : syskin 1311 memset(&init, 0, sizeof(init));
436 : suxen_drol 983 init.version = XVID_VERSION;
437 :     init.cpu_flags = codec->config.cpu;
438 : syskin 1311 init.debug = codec->config.debug;
439 : syskin 1301 xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
440 : suxen_drol 983
441 :     memset(&create, 0, sizeof(create));
442 :     create.version = XVID_VERSION;
443 : suxen_drol 1017
444 : syskin 1311 /* plugins */
445 : suxen_drol 983 create.plugins = plugins;
446 : suxen_drol 889 switch (codec->config.mode)
447 :     {
448 : suxen_drol 1017 case RC_MODE_1PASS :
449 : syskin 1311 memset(&single, 0, sizeof(single));
450 :     single.version = XVID_VERSION;
451 :     single.bitrate = codec->config.bitrate * CONFIG_KBPS;
452 :     single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
453 : suxen_drol 1017 single.averaging_period = codec->config.rc_averaging_period;
454 :     single.buffer = codec->config.rc_buffer;
455 : syskin 1311 plugins[create.num_plugins].func = xvid_plugin_single_func;
456 :     plugins[create.num_plugins].param = &single;
457 :     create.num_plugins++;
458 : syskin 1329 if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
459 :     prepare_cquant_zones(&tmpCfg);
460 : syskin 1311 break;
461 : suxen_drol 889
462 : suxen_drol 983 case RC_MODE_2PASS1 :
463 : syskin 1311 memset(&pass1, 0, sizeof(pass1));
464 :     pass1.version = XVID_VERSION;
465 :     pass1.filename = codec->config.stats;
466 : syskin 1346 if (codec->config.full1pass)
467 :     prepare_full1pass_zones(&tmpCfg);
468 : syskin 1311 plugins[create.num_plugins].func = xvid_plugin_2pass1_func;
469 :     plugins[create.num_plugins].param = &pass1;
470 :     create.num_plugins++;
471 : suxen_drol 889 break;
472 :    
473 : suxen_drol 1017 case RC_MODE_2PASS2 :
474 : syskin 1311 memset(&pass2, 0, sizeof(pass2));
475 :     pass2.version = XVID_VERSION;
476 :     if (codec->config.use_2pass_bitrate) {
477 :     pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
478 : syskin 1329 } else {
479 : syskin 1311 pass2.bitrate = -codec->config.desired_size; /* kilobytes */
480 :     }
481 : suxen_drol 983 pass2.filename = codec->config.stats;
482 : suxen_drol 1017
483 : syskin 1329 hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
484 :     if (hFile == INVALID_HANDLE_VALUE)
485 :     {
486 :     MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
487 :     return XVID_ERR_FAIL;
488 :     } else
489 :     {
490 :     CloseHandle(hFile);
491 :     }
492 :    
493 : syskin 1311 pass2.keyframe_boost = codec->config.keyframe_boost; /* keyframe boost percentage: [0..100...]; */
494 :     pass2.curve_compression_high = codec->config.curve_compression_high;
495 :     pass2.curve_compression_low = codec->config.curve_compression_low;
496 : edgomez 1202 pass2.overflow_control_strength = codec->config.overflow_control_strength;
497 : syskin 1311 pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
498 :     pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
499 :     pass2.kfreduction = codec->config.kfreduction;
500 :     pass2.kfthreshold = codec->config.kfthreshold;
501 :     pass2.container_frame_overhead = 24; /* AVI */
502 : suxen_drol 1052
503 : syskin 1311 plugins[create.num_plugins].func = xvid_plugin_2pass2_func;
504 :     plugins[create.num_plugins].param = &pass2;
505 :     create.num_plugins++;
506 : suxen_drol 889 break;
507 :    
508 : suxen_drol 983 case RC_MODE_NULL :
509 : suxen_drol 889 return ICERR_OK;
510 :    
511 :     default :
512 :     break;
513 :     }
514 :    
515 : syskin 1329 /* zones - copy from tmpCfg in case we automatically altered them above */
516 :     create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
517 :     create.num_zones = tmpCfg.num_zones;
518 :     for (i=0; i < create.num_zones; i++) {
519 :     create.zones[i].frame = tmpCfg.zones[i].frame;
520 :     if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
521 :     create.zones[i].mode = XVID_ZONE_QUANT;
522 :     create.zones[i].increment = tmpCfg.zones[i].quant;
523 :     }else{
524 :     create.zones[i].mode = XVID_ZONE_WEIGHT;
525 :     create.zones[i].increment = tmpCfg.zones[i].weight;
526 :     }
527 :     create.zones[i].base = 100;
528 :     }
529 :    
530 :     /* lumimasking plugin */
531 : suxen_drol 1017 if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
532 : syskin 1311 plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;
533 :     plugins[create.num_plugins].param = NULL;
534 :     create.num_plugins++;
535 : suxen_drol 889 }
536 :    
537 : syskin 1311 plugins[create.num_plugins].func = vfw_debug;
538 :     plugins[create.num_plugins].param = NULL;
539 :     create.num_plugins++;
540 : suxen_drol 889
541 : syskin 1311 create.profile = profiles[codec->config.profile].id;
542 : suxen_drol 1017
543 : suxen_drol 889 create.width = lpbiInput->bmiHeader.biWidth;
544 :     create.height = lpbiInput->bmiHeader.biHeight;
545 :     create.fincr = codec->fincr;
546 :     create.fbase = codec->fbase;
547 :    
548 : syskin 1311 create.max_key_interval = codec->config.max_key_interval;
549 : suxen_drol 889
550 : syskin 1311 create.min_quant[0] = codec->config.min_iquant;
551 :     create.max_quant[0] = codec->config.max_iquant;
552 :     create.min_quant[1] = codec->config.min_pquant;
553 :     create.max_quant[1] = codec->config.max_pquant;
554 :     create.min_quant[2] = codec->config.min_bquant;
555 :     create.max_quant[2] = codec->config.max_bquant;
556 : suxen_drol 1017
557 : syskin 1311 if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
558 :     create.max_bframes = codec->config.max_bframes;
559 :     create.bquant_ratio = codec->config.bquant_ratio;
560 :     create.bquant_offset = codec->config.bquant_offset;
561 : suxen_drol 1017
562 : syskin 1311 if (codec->config.packed)
563 :     create.global |= XVID_GLOBAL_PACKED;
564 : suxen_drol 1017
565 : syskin 1311 if (codec->config.closed_gov)
566 :     create.global |= XVID_GLOBAL_CLOSED_GOP;
567 : suxen_drol 1017
568 : syskin 1311 }
569 : suxen_drol 1017
570 : suxen_drol 889 create.frame_drop_ratio = codec->config.frame_drop_ratio;
571 :    
572 : syskin 1311 create.num_threads = codec->config.num_threads;
573 : suxen_drol 889
574 : syskin 1301 switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
575 : suxen_drol 889 {
576 :     case XVID_ERR_FAIL :
577 :     return ICERR_ERROR;
578 :    
579 :     case XVID_ERR_MEMORY :
580 :     return ICERR_MEMORY;
581 :    
582 :     case XVID_ERR_FORMAT :
583 :     return ICERR_BADFORMAT;
584 :    
585 :     case XVID_ERR_VERSION :
586 :     return ICERR_UNSUPPORTED;
587 :     }
588 :    
589 :     codec->ehandle = create.handle;
590 :     codec->framenum = 0;
591 :     codec->keyspacing = 0;
592 :    
593 : syskin 1311 if (codec->config.display_status) {
594 :     status_destroy_always(&codec->status);
595 :     status_create(&codec->status, codec->fincr, codec->fbase);
596 :     }
597 : suxen_drol 1061
598 : suxen_drol 889 return ICERR_OK;
599 :     }
600 :    
601 :    
602 :     LRESULT compress_end(CODEC * codec)
603 :     {
604 : syskin 1311 if (m_hdll != NULL) {
605 : syskin 1301 if (codec->ehandle != NULL) {
606 :     xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
607 :     codec->ehandle = NULL;
608 :     }
609 :     FreeLibrary(m_hdll);
610 :     m_hdll = NULL;
611 : suxen_drol 889 }
612 :    
613 : syskin 1311 if (codec->config.display_status)
614 :     status_destroy(&codec->status);
615 : suxen_drol 1061
616 : suxen_drol 889 return ICERR_OK;
617 :     }
618 :    
619 : suxen_drol 1017
620 :     static void apply_zone_modifiers(xvid_enc_frame_t * frame, CONFIG * config, int framenum)
621 :     {
622 : syskin 1311 int i;
623 : suxen_drol 1017
624 : syskin 1311 for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
625 : suxen_drol 1017
626 : syskin 1311 if (--i < 0) return; /* there are no zones, or we're before the first zone */
627 : suxen_drol 1069
628 : syskin 1311 if (framenum == config->zones[i].frame)
629 : syskin 1245 frame->type = config->zones[i].type;
630 :    
631 : syskin 1311 if (config->zones[i].greyscale) {
632 :     frame->vop_flags |= XVID_VOP_GREYSCALE;
633 :     }
634 : suxen_drol 1017
635 : syskin 1311 if (config->zones[i].chroma_opt) {
636 :     frame->vop_flags |= XVID_VOP_CHROMAOPT;
637 :     }
638 : suxen_drol 1017
639 : syskin 1311 if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
640 :     frame->bframe_threshold = config->zones[i].bvop_threshold;
641 :     }
642 : suxen_drol 1017 }
643 :    
644 :    
645 : suxen_drol 889 LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
646 :     {
647 :     BITMAPINFOHEADER * inhdr = icc->lpbiInput;
648 :     BITMAPINFOHEADER * outhdr = icc->lpbiOutput;
649 :     xvid_enc_frame_t frame;
650 :     xvid_enc_stats_t stats;
651 :     int length;
652 :    
653 :     memset(&frame, 0, sizeof(frame));
654 :     frame.version = XVID_VERSION;
655 :    
656 : syskin 1311 frame.type = XVID_TYPE_AUTO;
657 : suxen_drol 889
658 :     /* vol stuff */
659 :    
660 : syskin 1311 if ((profiles[codec->config.profile].flags & PROFILE_MPEGQUANT) &&
661 :     codec->config.quant_type != QUANT_MODE_H263)
662 : suxen_drol 889 {
663 : edgomez 949 frame.vol_flags |= XVID_VOL_MPEGQUANT;
664 : suxen_drol 889
665 : suxen_drol 1017 if (codec->config.quant_type == QUANT_MODE_CUSTOM) {
666 : suxen_drol 889 frame.quant_intra_matrix = codec->config.qmatrix_intra;
667 :     frame.quant_inter_matrix = codec->config.qmatrix_inter;
668 : suxen_drol 1017 }else{
669 : suxen_drol 889 frame.quant_intra_matrix = NULL;
670 :     frame.quant_inter_matrix = NULL;
671 :     }
672 :     }
673 :    
674 : syskin 1311 if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&
675 :     codec->config.reduced_resolution) {
676 : edgomez 949 frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;
677 :     frame.vop_flags |= XVID_VOP_REDUCED; /* XXX: need auto decion mode */
678 : suxen_drol 889 }
679 :    
680 : suxen_drol 1017 if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
681 : edgomez 949 frame.vol_flags |= XVID_VOL_QUARTERPEL;
682 :     frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
683 : suxen_drol 889 }
684 :    
685 : syskin 1087 if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
686 : edgomez 949 frame.vol_flags |= XVID_VOL_GMC;
687 : edgomez 1107 frame.motion |= XVID_ME_GME_REFINE;
688 : syskin 1087 }
689 : suxen_drol 889
690 : suxen_drol 1017 if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
691 : edgomez 949 frame.vol_flags |= XVID_VOL_INTERLACING;
692 : suxen_drol 889
693 : syskin 1277 if (codec->config.ar_mode == 0) { /* PAR */
694 :     if (codec->config.display_aspect_ratio != 5) {
695 :     frame.par = codec->config.display_aspect_ratio + 1;
696 :     } else {
697 :     frame.par = XVID_PAR_EXT;
698 :     frame.par_width = codec->config.par_x;
699 :     frame.par_height= codec->config.par_y;
700 : edgomez 1267 }
701 : syskin 1277 } else { /* AR */
702 : edgomez 1267 /* custom pixel aspect ratio -> calculated from DAR */
703 :     frame.par = XVID_PAR_EXT;
704 : syskin 1277 frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
705 : edgomez 1286 frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
706 : edgomez 1267 }
707 :    
708 : syskin 1311 /* vop stuff */
709 : suxen_drol 889
710 : edgomez 949 frame.vop_flags |= XVID_VOP_HALFPEL;
711 :     frame.vop_flags |= XVID_VOP_HQACPRED;
712 : suxen_drol 889
713 : suxen_drol 1032 if (codec->config.vop_debug)
714 : edgomez 949 frame.vop_flags |= XVID_VOP_DEBUG;
715 : suxen_drol 889
716 : syskin 1311 if (codec->config.trellis_quant) {
717 :     frame.vop_flags |= XVID_VOP_TRELLISQUANT;
718 :     }
719 : suxen_drol 1017
720 : syskin 1311 if (codec->config.motion_search > 4)
721 : edgomez 949 frame.vop_flags |= XVID_VOP_INTER4V;
722 : suxen_drol 889
723 :     if (codec->config.chromame)
724 : edgomez 1107 frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
725 : suxen_drol 889
726 : edgomez 1193 if (codec->config.cartoon_mode) {
727 :     frame.vop_flags |= XVID_VOP_CARTOON;
728 :     frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
729 :     }
730 :    
731 : Isibaar 1294 if (codec->config.turbo)
732 :     frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
733 :     XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
734 :     XVID_ME_BFRAME_EARLYSTOP;
735 :    
736 : suxen_drol 889 frame.motion |= pmvfast_presets[codec->config.motion_search];
737 :    
738 :     switch (codec->config.vhq_mode)
739 :     {
740 :     case VHQ_MODE_DECISION :
741 : edgomez 1107 frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
742 : suxen_drol 889 break;
743 :    
744 :     case VHQ_LIMITED_SEARCH :
745 : edgomez 1107 frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
746 :     frame.motion |= XVID_ME_HALFPELREFINE16_RD;
747 :     frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
748 : suxen_drol 889 break;
749 :    
750 :     case VHQ_MEDIUM_SEARCH :
751 : edgomez 1107 frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
752 :     frame.motion |= XVID_ME_HALFPELREFINE16_RD;
753 :     frame.motion |= XVID_ME_HALFPELREFINE8_RD;
754 :     frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
755 :     frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
756 :     frame.motion |= XVID_ME_CHECKPREDICTION_RD;
757 : suxen_drol 889 break;
758 :    
759 :     case VHQ_WIDE_SEARCH :
760 : edgomez 1107 frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
761 :     frame.motion |= XVID_ME_HALFPELREFINE16_RD;
762 :     frame.motion |= XVID_ME_HALFPELREFINE8_RD;
763 :     frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
764 :     frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
765 :     frame.motion |= XVID_ME_CHECKPREDICTION_RD;
766 :     frame.motion |= XVID_ME_EXTSEARCH_RD;
767 : suxen_drol 889 break;
768 :    
769 :     default :
770 :     break;
771 :     }
772 :    
773 :     frame.input.plane[0] = icc->lpInput;
774 :     frame.input.stride[0] = (((icc->lpbiInput->biWidth * icc->lpbiInput->biBitCount) + 31) & ~31) >> 3;
775 :    
776 :     if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
777 :     return ICERR_BADFORMAT;
778 :    
779 : syskin 1356 if (frame.input.csp == XVID_CSP_I420 || frame.input.csp == XVID_CSP_YV12) {
780 :     frame.input.stride[0] = (4 * icc->lpbiInput->biWidth + 3) / 4;
781 :     frame.input.stride[1] = frame.input.stride[2] = frame.input.stride[0] / 2 ;
782 :     }
783 : suxen_drol 889
784 :     frame.bitstream = icc->lpOutput;
785 :     frame.length = icc->lpbiOutput->biSizeImage;
786 :    
787 : syskin 1311 frame.quant = 0;
788 : suxen_drol 889
789 : syskin 1311 if (codec->config.mode == RC_MODE_NULL) {
790 : suxen_drol 889 outhdr->biSizeImage = 0;
791 :     *icc->lpdwFlags = AVIIF_KEYFRAME;
792 :     return ICERR_OK;
793 : syskin 1311 }
794 : suxen_drol 889
795 :     // force keyframe spacing in 2-pass 1st pass
796 :     if (codec->config.motion_search == 0)
797 :     frame.type = XVID_TYPE_IVOP;
798 :    
799 : syskin 1311 /* frame-based stuff */
800 :     apply_zone_modifiers(&frame, &codec->config, codec->framenum);
801 : suxen_drol 1017
802 : syskin 1311 /* call encore */
803 : suxen_drol 1017
804 : suxen_drol 889 memset(&stats, 0, sizeof(stats));
805 :     stats.version = XVID_VERSION;
806 :    
807 : syskin 1311 length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
808 : suxen_drol 889 switch (length)
809 :     {
810 :     case XVID_ERR_FAIL :
811 :     return ICERR_ERROR;
812 :    
813 :     case XVID_ERR_MEMORY :
814 :     return ICERR_MEMORY;
815 :    
816 :     case XVID_ERR_FORMAT :
817 :     return ICERR_BADFORMAT;
818 :    
819 :     case XVID_ERR_VERSION :
820 :     return ICERR_UNSUPPORTED;
821 :     }
822 :    
823 : syskin 1311 if (codec->config.display_status && stats.type>0) {
824 :     status_update(&codec->status, stats.type, stats.length, stats.quant);
825 :     }
826 : suxen_drol 1061
827 : suxen_drol 983 DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
828 : suxen_drol 889
829 : syskin 1311 if (length == 0) /* no encoder output */
830 : suxen_drol 889 {
831 :     *icc->lpdwFlags = 0;
832 :     ((char*)icc->lpOutput)[0] = 0x7f; /* virtual dub skip frame */
833 :     outhdr->biSizeImage = 1;
834 :    
835 :     }else{
836 :     if (frame.out_flags & XVID_KEYFRAME)
837 : syskin 1311 {
838 :     codec->keyspacing = 0;
839 :     *icc->lpdwFlags = AVIIF_KEYFRAME;
840 :     }
841 :     else
842 :     {
843 :     *icc->lpdwFlags = 0;
844 :     }
845 : suxen_drol 889
846 : syskin 1311 outhdr->biSizeImage = length;
847 : suxen_drol 889
848 : syskin 1311 if (codec->config.mode == RC_MODE_2PASS1 && codec->config.discard1pass)
849 :     {
850 :     outhdr->biSizeImage = 0;
851 :     }
852 :     }
853 : suxen_drol 889
854 : suxen_drol 1017 codec->framenum++;
855 :     codec->keyspacing++;
856 : suxen_drol 889
857 :     return ICERR_OK;
858 :     }
859 :    
860 :    
861 :     /* decompressor */
862 :    
863 :    
864 :     LRESULT decompress_query(CODEC * codec, BITMAPINFO *lpbiInput, BITMAPINFO *lpbiOutput)
865 :     {
866 :     BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
867 :     BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
868 :    
869 :     if (lpbiInput == NULL)
870 :     {
871 :     return ICERR_ERROR;
872 :     }
873 :    
874 :     if (inhdr->biCompression != FOURCC_XVID && inhdr->biCompression != FOURCC_DIVX && inhdr->biCompression != FOURCC_DX50 && get_colorspace(inhdr) == XVID_CSP_NULL)
875 :     {
876 :     return ICERR_BADFORMAT;
877 :     }
878 :    
879 :     if (lpbiOutput == NULL)
880 :     {
881 :     return ICERR_OK;
882 :     }
883 :    
884 :     if (inhdr->biWidth != outhdr->biWidth ||
885 :     inhdr->biHeight != outhdr->biHeight ||
886 :     get_colorspace(outhdr) == XVID_CSP_NULL)
887 :     {
888 :     return ICERR_BADFORMAT;
889 :     }
890 :    
891 :     return ICERR_OK;
892 :     }
893 :    
894 :    
895 :     LRESULT decompress_get_format(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
896 :     {
897 :     BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
898 :     BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
899 :     LRESULT result;
900 :    
901 :     if (lpbiOutput == NULL)
902 :     {
903 :     return sizeof(BITMAPINFOHEADER);
904 :     }
905 :    
906 :     /* --- yv12 --- */
907 :    
908 :     if (get_colorspace(inhdr) != XVID_CSP_NULL) {
909 :     memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
910 : edgomez 1053 /* XXX: should we set outhdr->biSize ?? */
911 : suxen_drol 889 return ICERR_OK;
912 :     }
913 :     /* --- yv12 --- */
914 :    
915 :     result = decompress_query(codec, lpbiInput, lpbiOutput);
916 :     if (result != ICERR_OK)
917 :     {
918 :     return result;
919 :     }
920 :    
921 :     outhdr->biSize = sizeof(BITMAPINFOHEADER);
922 :     outhdr->biWidth = inhdr->biWidth;
923 :     outhdr->biHeight = inhdr->biHeight;
924 :     outhdr->biPlanes = 1;
925 :     outhdr->biBitCount = 24;
926 :     outhdr->biCompression = BI_RGB; /* sonic foundry vegas video v3 only supports BI_RGB */
927 :     outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;
928 :     outhdr->biXPelsPerMeter = 0;
929 :     outhdr->biYPelsPerMeter = 0;
930 :     outhdr->biClrUsed = 0;
931 :     outhdr->biClrImportant = 0;
932 :    
933 :     return ICERR_OK;
934 :     }
935 :    
936 : edgomez 1326 #define REG_GET_N(X, Y, Z) \
937 :     { \
938 :     DWORD size = sizeof(int); \
939 :     if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
940 :     Y=Z; \
941 :     } \
942 :     }while(0)
943 : suxen_drol 889
944 :     LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
945 :     {
946 :     xvid_gbl_init_t init;
947 :     xvid_dec_create_t create;
948 : syskin 1323 HKEY hKey;
949 : suxen_drol 889
950 : syskin 1301 if (init_dll() != 0) return ICERR_ERROR;
951 :    
952 : suxen_drol 889 memset(&init, 0, sizeof(init));
953 :     init.version = XVID_VERSION;
954 :     init.cpu_flags = codec->config.cpu;
955 : syskin 1301 xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
956 : suxen_drol 889
957 :     memset(&create, 0, sizeof(create));
958 :     create.version = XVID_VERSION;
959 :     create.width = lpbiInput->bmiHeader.biWidth;
960 :     create.height = lpbiInput->bmiHeader.biHeight;
961 :    
962 : syskin 1301 switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
963 : suxen_drol 889 {
964 : syskin 1329 case XVID_ERR_FAIL :
965 : suxen_drol 889 return ICERR_ERROR;
966 :    
967 :     case XVID_ERR_MEMORY :
968 :     return ICERR_MEMORY;
969 :    
970 :     case XVID_ERR_FORMAT :
971 :     return ICERR_BADFORMAT;
972 :    
973 :     case XVID_ERR_VERSION :
974 :     return ICERR_UNSUPPORTED;
975 :     }
976 :    
977 :     codec->dhandle = create.handle;
978 :    
979 : syskin 1323 RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
980 :    
981 :     REG_GET_N("Deblock_Y", pp_dy, 0)
982 :     REG_GET_N("Deblock_UV", pp_duv, 0)
983 :     REG_GET_N("Dering", pp_dr, 0)
984 :     REG_GET_N("FilmEffect", pp_fe, 0)
985 :    
986 :     RegCloseKey(hKey);
987 :    
988 : suxen_drol 889 return ICERR_OK;
989 :     }
990 :    
991 :    
992 :     LRESULT decompress_end(CODEC * codec)
993 :     {
994 : syskin 1301 if (m_hdll != NULL) {
995 :     if (codec->dhandle != NULL) {
996 :     xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
997 :     codec->dhandle = NULL;
998 :     }
999 :     FreeLibrary(m_hdll);
1000 :     m_hdll = NULL;
1001 : suxen_drol 889 }
1002 : syskin 1301
1003 : suxen_drol 889 return ICERR_OK;
1004 :     }
1005 :    
1006 :    
1007 :     LRESULT decompress(CODEC * codec, ICDECOMPRESS * icd)
1008 :     {
1009 :     xvid_dec_frame_t frame;
1010 :    
1011 :     /* --- yv12 --- */
1012 :     if (icd->lpbiInput->biCompression != FOURCC_XVID &&
1013 :     icd->lpbiInput->biCompression != FOURCC_DIVX &&
1014 :     icd->lpbiInput->biCompression != FOURCC_DX50)
1015 :     {
1016 :     xvid_gbl_convert_t convert;
1017 :    
1018 : suxen_drol 983 DPRINTF("input=%c%c%c%c output=%c%c%c%c",
1019 : syskin 1311 icd->lpbiInput->biCompression&0xff,
1020 :     (icd->lpbiInput->biCompression>>8)&0xff,
1021 :     (icd->lpbiInput->biCompression>>16)&0xff,
1022 :     (icd->lpbiInput->biCompression>>24)&0xff,
1023 :     icd->lpbiOutput->biCompression&0xff,
1024 :     (icd->lpbiOutput->biCompression>>8)&0xff,
1025 :     (icd->lpbiOutput->biCompression>>16)&0xff,
1026 :     (icd->lpbiOutput->biCompression>>24)&0xff);
1027 : suxen_drol 889
1028 :     memset(&convert, 0, sizeof(convert));
1029 :     convert.version = XVID_VERSION;
1030 :    
1031 :     convert.input.csp = get_colorspace(icd->lpbiInput);
1032 :     convert.input.plane[0] = icd->lpInput;
1033 :     convert.input.stride[0] = (((icd->lpbiInput->biWidth *icd->lpbiInput->biBitCount) + 31) & ~31) >> 3;
1034 :     if (convert.input.csp == XVID_CSP_I420 || convert.input.csp == XVID_CSP_YV12)
1035 :     convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1036 :    
1037 :     convert.output.csp = get_colorspace(icd->lpbiOutput);
1038 :     convert.output.plane[0] = icd->lpOutput;
1039 :     convert.output.stride[0] = (((icd->lpbiOutput->biWidth *icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;
1040 :     if (convert.output.csp == XVID_CSP_I420 || convert.output.csp == XVID_CSP_YV12)
1041 :     convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1042 :    
1043 :     convert.width = icd->lpbiInput->biWidth;
1044 :     convert.height = icd->lpbiInput->biHeight;
1045 :     convert.interlacing = 0;
1046 :     if (convert.input.csp == XVID_CSP_NULL ||
1047 :     convert.output.csp == XVID_CSP_NULL ||
1048 : syskin 1301 xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1049 : suxen_drol 889 {
1050 :     return ICERR_BADFORMAT;
1051 :     }
1052 :     return ICERR_OK;
1053 :     }
1054 :     /* --- yv12 --- */
1055 :    
1056 : syskin 1311 memset(&frame, 0, sizeof(frame));
1057 :     frame.version = XVID_VERSION;
1058 :     frame.general = XVID_LOWDELAY; /* force low_delay_default mode */
1059 : suxen_drol 889 frame.bitstream = icd->lpInput;
1060 :     frame.length = icd->lpbiInput->biSizeImage;
1061 :    
1062 :     if (~((icd->dwFlags & ICDECOMPRESS_HURRYUP) | (icd->dwFlags & ICDECOMPRESS_UPDATE) | (icd->dwFlags & ICDECOMPRESS_PREROLL)))
1063 :     {
1064 :     if ((frame.output.csp = get_colorspace(icd->lpbiOutput)) == XVID_CSP_NULL)
1065 :     {
1066 :     return ICERR_BADFORMAT;
1067 :     }
1068 :     frame.output.plane[0] = icd->lpOutput;
1069 :     frame.output.stride[0] = (((icd->lpbiOutput->biWidth * icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;
1070 :     if (frame.output.csp == XVID_CSP_I420 || frame.output.csp == XVID_CSP_YV12)
1071 :     frame.output.stride[0] = (frame.output.stride[0]*2)/3;
1072 :     }
1073 :     else
1074 :     {
1075 :     frame.output.csp = XVID_CSP_NULL;
1076 :     }
1077 :    
1078 : syskin 1323 if (pp_dy)frame.general |= XVID_DEBLOCKY;
1079 :     if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1080 :     /* if (pp_dr) frame.general |= XVID_DERING; */
1081 :     if (pp_fe) frame.general |= XVID_FILMEFFECT;
1082 :    
1083 : syskin 1301 switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1084 : suxen_drol 889 {
1085 :     case XVID_ERR_FAIL :
1086 :     return ICERR_ERROR;
1087 :    
1088 :     case XVID_ERR_MEMORY :
1089 :     return ICERR_MEMORY;
1090 :    
1091 :     case XVID_ERR_FORMAT :
1092 :     return ICERR_BADFORMAT;
1093 :    
1094 :     case XVID_ERR_VERSION :
1095 :     return ICERR_UNSUPPORTED;
1096 :     }
1097 :    
1098 :     return ICERR_OK;
1099 :     }
1100 :    

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4