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

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