[svn] / trunk / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Annotation of /trunk/xvidcore/vfw/src/codec.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1917 - (view) (download)

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

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