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

Diff of /branches/dev-api-4/xvidcore/src/encoder.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/xvidcore/src/encoder.c revision 3, Fri Mar 8 02:46:11 2002 UTC branches/dev-api-4/xvidcore/src/encoder.c revision 1057, Mon Jun 9 19:20:56 2003 UTC
# Line 1  Line 1 
1    /*****************************************************************************
2     *
3     *  XVID MPEG-4 VIDEO CODEC
4     *  - Encoder main module -
5     *
6     *  Copyright(C) 2002      Michael Militzer <isibaar@xvid.org>
7     *               2002-2003 Peter Ross <pross@xvid.org>
8     *               2002      Daniel Smith <danielsmith@astroboymail.com>
9     *
10     *  This program is free software ; you can redistribute it and/or modify
11     *  it under the terms of the GNU General Public License as published by
12     *  the Free Software Foundation ; either version 2 of the License, or
13     *  (at your option) any later version.
14     *
15     *  This program is distributed in the hope that it will be useful,
16     *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
17     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18     *  GNU General Public License for more details.
19     *
20     *  You should have received a copy of the GNU General Public License
21     *  along with this program ; if not, write to the Free Software
22     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23     *
24     * $Id: encoder.c,v 1.95.2.28 2003-06-09 19:20:56 edgomez Exp $
25     *
26     ****************************************************************************/
27    
28  #include <stdlib.h>  #include <stdlib.h>
29  #include <stdio.h>  #include <stdio.h>
30  #include <math.h>  #include <math.h>
31    #include <string.h>
32    
33  #include "encoder.h"  #include "encoder.h"
34  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
35  #include "global.h"  #include "global.h"
36  #include "utils/timer.h"  #include "utils/timer.h"
37  #include "image/image.h"  #include "image/image.h"
38    #include "image/font.h"
39    #include "motion/sad.h"
40    #include "motion/motion.h"
41  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
42  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
43  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
44  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
 #include "utils/ratecontrol.h"  
45  #include "utils/emms.h"  #include "utils/emms.h"
46  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
47  #include "quant/adapt_quant.h"  #include "quant/quant_matrix.h"
48    #include "utils/mem_align.h"
49    
50    /*****************************************************************************
51     * Local function prototypes
52     ****************************************************************************/
53    
54    static int FrameCodeI(Encoder * pEnc,
55                                              Bitstream * bs);
56    
57    static int FrameCodeP(Encoder * pEnc,
58                                              Bitstream * bs,
59                                              bool force_inter,
60                                              bool vol_header);
61    
62    static void FrameCodeB(Encoder * pEnc,
63                                               FRAMEINFO * frame,
64                                               Bitstream * bs);
65    
66    
67    /*****************************************************************************
68     * Encoder creation
69     *
70     * This function creates an Encoder instance, it allocates all necessary
71     * image buffers (reference, current and bframes) and initialize the internal
72     * xvid encoder paremeters according to the XVID_ENC_PARAM input parameter.
73     *
74     * The code seems to be very long but is very basic, mainly memory allocation
75     * and cleaning code.
76     *
77     * Returned values :
78     *    - 0                - no errors
79     *    - XVID_ERR_MEMORY - the libc could not allocate memory, the function
80     *                        cleans the structure before exiting.
81     *                        pParam->handle is also set to NULL.
82     *
83     ****************************************************************************/
84    
85    /*
86     * Simplify the "fincr/fbase" fraction
87    */
88    static void
89    simplify_time(int *inc, int *base)
90    {
91            /* common factor */
92            int i = *inc;
93            while (i > 1) {
94                    if (*inc % i == 0 && *base % i == 0) {
95                            *inc /= i;
96                            *base /= i;
97                            i = *inc;
98                            continue;
99                    }
100                    i--;
101            }
102    
103            /* if neccessary, round to 65535 accuracy */
104            if (*base > 65535) {
105                    float div = (float) *base / 65535;
106                    *base = (int) (*base / div);
107                    *inc = (int) (*inc / div);
108            }
109    }
110    
111    
112    int
113    enc_create(xvid_enc_create_t * create)
114    {
115            Encoder *pEnc;
116        int n;
117    
118            if (XVID_MAJOR(create->version) != 1)   /* v1.x.x */
119                    return XVID_ERR_VERSION;
120    
121            if (create->width%2 || create->height%2)
122                    return XVID_ERR_FAIL;
123    
124            /* allocate encoder struct */
125    
126            pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
127            if (pEnc == NULL)
128                    return XVID_ERR_MEMORY;
129            memset(pEnc, 0, sizeof(Encoder));
130    
131        pEnc->mbParam.profile = create->profile;
132    
133            /* global flags */
134        pEnc->mbParam.global_flags = create->global;
135    
136        /* width, height */
137            pEnc->mbParam.width = create->width;
138            pEnc->mbParam.height = create->height;
139            pEnc->mbParam.mb_width = (pEnc->mbParam.width + 15) / 16;
140            pEnc->mbParam.mb_height = (pEnc->mbParam.height + 15) / 16;
141            pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;
142            pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;
143    
144        /* framerate */
145        pEnc->mbParam.fincr = MAX(create->fincr, 0);
146            pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;
147        if (pEnc->mbParam.fincr>0)
148                simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);
149    
150        /* zones */
151        if(create->num_zones > 0) {
152                    pEnc->num_zones = create->num_zones;
153                    pEnc->zones = xvid_malloc(sizeof(xvid_enc_zone_t) * pEnc->num_zones, CACHE_LINE);
154                    if (pEnc->zones == NULL)
155                            goto xvid_err_memory0;
156            memcpy(pEnc->zones, create->zones, sizeof(xvid_enc_zone_t) * pEnc->num_zones);
157            } else {
158                    pEnc->num_zones = 0;
159                    pEnc->zones = NULL;
160            }
161    
162        /* plugins */
163        if(create->num_plugins > 0) {
164                    pEnc->num_plugins = create->num_plugins;
165                    pEnc->plugins = xvid_malloc(sizeof(xvid_enc_plugin_t) * pEnc->num_plugins, CACHE_LINE);
166                    if (pEnc->plugins == NULL)
167                            goto xvid_err_memory0;
168            } else {
169                    pEnc->num_plugins = 0;
170                    pEnc->plugins = NULL;
171            }
172    
173        for (n=0; n<pEnc->num_plugins;n++) {
174            xvid_plg_create_t pcreate;
175            xvid_plg_info_t pinfo;
176    
177            memset(&pinfo, 0, sizeof(xvid_plg_info_t));
178            pinfo.version = XVID_VERSION;
179            if (create->plugins[n].func(0, XVID_PLG_INFO, &pinfo, 0) >= 0) {
180                pEnc->mbParam.plugin_flags |= pinfo.flags;
181            }
182    
183            memset(&pcreate, 0, sizeof(xvid_plg_create_t));
184            pcreate.version = XVID_VERSION;
185            pcreate.num_zones = pEnc->num_zones;
186            pcreate.zones = pEnc->zones;
187            pcreate.width = pEnc->mbParam.width;
188            pcreate.height = pEnc->mbParam.height;
189            pcreate.fincr = pEnc->mbParam.fincr;
190            pcreate.fbase = pEnc->mbParam.fbase;
191            pcreate.param = create->plugins[n].param;
192    
193            pEnc->plugins[n].func = NULL;   /* disable plugins that fail */
194            if (create->plugins[n].func(0, XVID_PLG_CREATE, &pcreate, &pEnc->plugins[n].param) >= 0) {
195                pEnc->plugins[n].func = create->plugins[n].func;
196            }
197        }
198    
199        if ((pEnc->mbParam.global_flags & XVID_GLOBAL_EXTRASTATS_ENABLE) ||
200            (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
201            pEnc->mbParam.plugin_flags |= XVID_REQORIGINAL; /* psnr calculation requires the original */
202        }
203    
204        /* temp dquants */
205        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
206                pEnc->temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width *
207                                                pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);
208        }
209        /* XXX: error checking */
210    
211            /* bframes */
212            pEnc->mbParam.max_bframes = MAX(create->max_bframes, 0);
213            pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);
214            pEnc->mbParam.bquant_offset = create->bquant_offset;
215    
216        /* min/max quant */
217        for (n=0; n<3; n++) {
218            pEnc->mbParam.min_quant[n] = create->min_quant[n] > 0 ? create->min_quant[n] : 2;
219            pEnc->mbParam.max_quant[n] = create->max_quant[n] > 0 ? create->max_quant[n] : 31;
220        }
221    
222            /* frame drop ratio */
223            pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);
224    
225        /* max keyframe interval */
226        pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <= 0 ?
227                    10 * pEnc->mbParam.fbase / pEnc->mbParam.fincr : create->max_key_interval;
228    
229            /* Bitrate allocator defaults
230    
231            if ((create->min_quantizer <= 0) || (create->min_quantizer > 31))
232                    create->min_quantizer = 1;
233    
234            if ((create->max_quantizer <= 0) || (create->max_quantizer > 31))
235                    create->max_quantizer = 31;
236    
237            if (create->max_quantizer < create->min_quantizer)
238                    create->max_quantizer = create->min_quantizer; */
239    
240    
241        /* allocate working frame-image memory */
242    
243            pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
244            pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
245    
246            if (pEnc->current == NULL || pEnc->reference == NULL)
247                    goto xvid_err_memory1;
248    
249            /* allocate macroblock memory */
250    
251            pEnc->current->mbs =
252                    xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
253                                            pEnc->mbParam.mb_height, CACHE_LINE);
254            pEnc->reference->mbs =
255                    xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
256                                            pEnc->mbParam.mb_height, CACHE_LINE);
257    
258            if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
259                    goto xvid_err_memory2;
260    
261            /* allocate interpolation image memory */
262    
263        if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
264            image_null(&pEnc->sOriginal);
265            image_null(&pEnc->sOriginal2);
266        }
267    
268            image_null(&pEnc->f_refh);
269            image_null(&pEnc->f_refv);
270            image_null(&pEnc->f_refhv);
271    
272            image_null(&pEnc->current->image);
273            image_null(&pEnc->reference->image);
274            image_null(&pEnc->vInterH);
275            image_null(&pEnc->vInterV);
276            image_null(&pEnc->vInterVf);
277            image_null(&pEnc->vInterHV);
278            image_null(&pEnc->vInterHVf);
279    
280            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
281            if (image_create
282                            (&pEnc->sOriginal, pEnc->mbParam.edged_width,
283                             pEnc->mbParam.edged_height) < 0)
284                            goto xvid_err_memory3;
285    
286            if (image_create
287                            (&pEnc->sOriginal2, pEnc->mbParam.edged_width,
288                             pEnc->mbParam.edged_height) < 0)
289                            goto xvid_err_memory3;
290            }
291    
292            if (image_create
293                    (&pEnc->f_refh, pEnc->mbParam.edged_width,
294                     pEnc->mbParam.edged_height) < 0)
295                    goto xvid_err_memory3;
296            if (image_create
297                    (&pEnc->f_refv, pEnc->mbParam.edged_width,
298                     pEnc->mbParam.edged_height) < 0)
299                    goto xvid_err_memory3;
300            if (image_create
301                    (&pEnc->f_refhv, pEnc->mbParam.edged_width,
302                     pEnc->mbParam.edged_height) < 0)
303                    goto xvid_err_memory3;
304    
305            if (image_create
306                    (&pEnc->current->image, pEnc->mbParam.edged_width,
307                     pEnc->mbParam.edged_height) < 0)
308                    goto xvid_err_memory3;
309            if (image_create
310                    (&pEnc->reference->image, pEnc->mbParam.edged_width,
311                     pEnc->mbParam.edged_height) < 0)
312                    goto xvid_err_memory3;
313            if (image_create
314                    (&pEnc->vInterH, pEnc->mbParam.edged_width,
315                     pEnc->mbParam.edged_height) < 0)
316                    goto xvid_err_memory3;
317            if (image_create
318                    (&pEnc->vInterV, pEnc->mbParam.edged_width,
319                     pEnc->mbParam.edged_height) < 0)
320                    goto xvid_err_memory3;
321            if (image_create
322                    (&pEnc->vInterVf, pEnc->mbParam.edged_width,
323                     pEnc->mbParam.edged_height) < 0)
324                    goto xvid_err_memory3;
325            if (image_create
326                    (&pEnc->vInterHV, pEnc->mbParam.edged_width,
327                     pEnc->mbParam.edged_height) < 0)
328                    goto xvid_err_memory3;
329            if (image_create
330                    (&pEnc->vInterHVf, pEnc->mbParam.edged_width,
331                     pEnc->mbParam.edged_height) < 0)
332                    goto xvid_err_memory3;
333    
334    /* Create full bitplane for GMC, this might be wasteful */
335            if (image_create
336                    (&pEnc->vGMC, pEnc->mbParam.edged_width,
337                     pEnc->mbParam.edged_height) < 0)
338                    goto xvid_err_memory3;
339    
340            /* init bframe image buffers */
341    
342            pEnc->bframenum_head = 0;
343            pEnc->bframenum_tail = 0;
344            pEnc->flush_bframes = 0;
345            pEnc->closed_bframenum = -1;
346    
347            /* B Frames specific init */
348            pEnc->bframes = NULL;
349    
350            if (pEnc->mbParam.max_bframes > 0) {
351    
352                    pEnc->bframes =
353                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(FRAMEINFO *),
354                                                    CACHE_LINE);
355    
356                    if (pEnc->bframes == NULL)
357                            goto xvid_err_memory3;
358    
359                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
360                            pEnc->bframes[n] = NULL;
361    
362    
363                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
364                            pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
365    
366                            if (pEnc->bframes[n] == NULL)
367                                    goto xvid_err_memory4;
368    
369                            pEnc->bframes[n]->mbs =
370                                    xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
371                                                            pEnc->mbParam.mb_height, CACHE_LINE);
372    
373                            if (pEnc->bframes[n]->mbs == NULL)
374                                    goto xvid_err_memory4;
375    
376                            image_null(&pEnc->bframes[n]->image);
377    
378                            if (image_create
379                                    (&pEnc->bframes[n]->image, pEnc->mbParam.edged_width,
380                                     pEnc->mbParam.edged_height) < 0)
381                                    goto xvid_err_memory4;
382    
383                    }
384            }
385    
386        /* init incoming frame queue */
387            pEnc->queue_head = 0;
388            pEnc->queue_tail = 0;
389            pEnc->queue_size = 0;
390    
391            pEnc->queue =
392                    xvid_malloc((pEnc->mbParam.max_bframes+1) * sizeof(QUEUEINFO),
393                                            CACHE_LINE);
394    
395            if (pEnc->queue == NULL)
396                    goto xvid_err_memory4;
397    
398            for (n = 0; n < pEnc->mbParam.max_bframes+1; n++)
399                    image_null(&pEnc->queue[n].image);
400    
401    
402            for (n = 0; n < pEnc->mbParam.max_bframes+1; n++)
403            {
404                    if (image_create
405                            (&pEnc->queue[n].image, pEnc->mbParam.edged_width,
406                             pEnc->mbParam.edged_height) < 0)
407                            goto xvid_err_memory5;
408    
409            }
410    
411    
412            /* timestamp stuff */
413    
414            pEnc->mbParam.m_stamp = 0;
415            pEnc->m_framenum = 0;
416            pEnc->current->stamp = 0;
417            pEnc->reference->stamp = 0;
418    
419            /* other stuff */
420    
421            pEnc->iFrameNum = 0;
422            pEnc->fMvPrevSigma = -1;
423    
424        create->handle = (void *) pEnc;
425    
426            init_timer();
427    
428        return 0;   /* ok */
429    
430            /*
431             * We handle all XVID_ERR_MEMORY here, this makes the code lighter
432             */
433    
434      xvid_err_memory5:
435    
436            if (pEnc->mbParam.max_bframes > 0) {
437            int i;
438    
439                    for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {
440                            image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,
441                                                      pEnc->mbParam.edged_height);
442                    }
443                    xvid_free(pEnc->queue);
444            }
445    
446      xvid_err_memory4:
447    
448            if (pEnc->mbParam.max_bframes > 0) {
449            int i;
450    
451                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
452    
453                            if (pEnc->bframes[i] == NULL)
454                                    continue;
455    
456                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
457                                                      pEnc->mbParam.edged_height);
458    
459                            xvid_free(pEnc->bframes[i]->mbs);
460    
461                            xvid_free(pEnc->bframes[i]);
462    
463                    }
464    
465                    xvid_free(pEnc->bframes);
466            }
467    
468      xvid_err_memory3:
469    
470            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
471                    image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
472                                              pEnc->mbParam.edged_height);
473                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
474                                              pEnc->mbParam.edged_height);
475            }
476    
477            image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
478                                      pEnc->mbParam.edged_height);
479            image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
480                                      pEnc->mbParam.edged_height);
481            image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
482                                      pEnc->mbParam.edged_height);
483    
484            image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
485                                      pEnc->mbParam.edged_height);
486            image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
487                                      pEnc->mbParam.edged_height);
488            image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
489                                      pEnc->mbParam.edged_height);
490            image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
491                                      pEnc->mbParam.edged_height);
492            image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
493                                      pEnc->mbParam.edged_height);
494            image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
495                                      pEnc->mbParam.edged_height);
496            image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
497                                      pEnc->mbParam.edged_height);
498    
499    /* destroy GMC image */
500            image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
501                                      pEnc->mbParam.edged_height);
502    
503    
504      xvid_err_memory2:
505            xvid_free(pEnc->current->mbs);
506            xvid_free(pEnc->reference->mbs);
507    
508      xvid_err_memory1:
509            xvid_free(pEnc->current);
510            xvid_free(pEnc->reference);
511    
512        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
513                xvid_free(pEnc->temp_dquants);
514        }
515    
516      xvid_err_memory0:
517        for (n=0; n<pEnc->num_plugins;n++) {
518            if (pEnc->plugins[n].func) {
519                pEnc->plugins[n].func(pEnc->plugins[n].param, XVID_PLG_DESTROY, 0, 0);
520            }
521        }
522        xvid_free(pEnc->plugins);
523    
524        xvid_free(pEnc->zones);
525    
526            xvid_free(pEnc);
527    
528            create->handle = NULL;
529    
530            return XVID_ERR_MEMORY;
531    }
532    
533    /*****************************************************************************
534     * Encoder destruction
535     *
536     * This function destroy the entire encoder structure created by a previous
537     * successful enc_create call.
538     *
539     * Returned values (for now only one returned value) :
540     *    - 0     - no errors
541     *
542     ****************************************************************************/
543    
544    int
545    enc_destroy(Encoder * pEnc)
546    {
547            int i;
548    
549            /* B Frames specific */
550            if (pEnc->mbParam.max_bframes > 0) {
551    
552                    for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {
553    
554                            image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,
555                                              pEnc->mbParam.edged_height);
556                    }
557                    xvid_free(pEnc->queue);
558            }
559    
560    
561            if (pEnc->mbParam.max_bframes > 0) {
562    
563                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
564    
565                            if (pEnc->bframes[i] == NULL)
566                                    continue;
567    
568                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
569                                              pEnc->mbParam.edged_height);
570    
571                            xvid_free(pEnc->bframes[i]->mbs);
572    
573                            xvid_free(pEnc->bframes[i]);
574                    }
575    
576                    xvid_free(pEnc->bframes);
577    
578            }
579    
580            /* All images, reference, current etc ... */
581    
582            image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
583                                      pEnc->mbParam.edged_height);
584            image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
585                                      pEnc->mbParam.edged_height);
586            image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
587                                      pEnc->mbParam.edged_height);
588            image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
589                                      pEnc->mbParam.edged_height);
590            image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
591                                      pEnc->mbParam.edged_height);
592            image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
593                                      pEnc->mbParam.edged_height);
594            image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
595                                      pEnc->mbParam.edged_height);
596    
597            image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
598                                      pEnc->mbParam.edged_height);
599            image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
600                                      pEnc->mbParam.edged_height);
601            image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
602                                      pEnc->mbParam.edged_height);
603            image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
604                                      pEnc->mbParam.edged_height);
605    
606            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
607                    image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
608                                              pEnc->mbParam.edged_height);
609                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
610                                              pEnc->mbParam.edged_height);
611            }
612    
613            /* Encoder structure */
614    
615            xvid_free(pEnc->current->mbs);
616            xvid_free(pEnc->current);
617    
618            xvid_free(pEnc->reference->mbs);
619            xvid_free(pEnc->reference);
620    
621        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
622            xvid_free(pEnc->temp_dquants);
623        }
624    
625    
626        if (pEnc->num_plugins>0) {
627            xvid_plg_destroy_t pdestroy;
628            memset(&pdestroy, 0, sizeof(xvid_plg_destroy_t));
629    
630            pdestroy.version = XVID_VERSION;
631            pdestroy.num_frames = pEnc->m_framenum;
632    
633            for (i=0; i<pEnc->num_plugins;i++) {
634                if (pEnc->plugins[i].func) {
635                    pEnc->plugins[i].func(pEnc->plugins[i].param, XVID_PLG_DESTROY, &pdestroy, 0);
636                }
637            }
638            xvid_free(pEnc->plugins);
639        }
640    
641        if (pEnc->num_plugins>0)
642            xvid_free(pEnc->zones);
643    
644            xvid_free(pEnc);
645    
646            return 0;  /* ok */
647    }
648    
649    
650    /*
651      call the plugins
652      */
653    
654    static void call_plugins(Encoder * pEnc, FRAMEINFO * frame, IMAGE * original,
655                             int opt, int * type, int * quant, xvid_enc_stats_t * stats)
656    {
657        unsigned int i, j;
658        xvid_plg_data_t data;
659    
660        /* set data struct */
661    
662        memset(&data, 0, sizeof(xvid_plg_data_t));
663        data.version = XVID_VERSION;
664    
665        /* find zone */
666        for(i=0; i<pEnc->num_zones && pEnc->zones[i].frame<=frame->frame_num; i++) ;
667        data.zone = i>0 ? &pEnc->zones[i-1] : NULL;
668    
669        data.width = pEnc->mbParam.width;
670        data.height = pEnc->mbParam.height;
671        data.mb_width = pEnc->mbParam.mb_width;
672        data.mb_height = pEnc->mbParam.mb_height;
673        data.fincr = frame->fincr;
674        data.fbase = pEnc->mbParam.fbase;
675    
676        for (i=0; i<3; i++) {
677            data.min_quant[i] = pEnc->mbParam.min_quant[i];
678            data.max_quant[i] = pEnc->mbParam.max_quant[i];
679        }
680    
681        data.reference.csp = XVID_CSP_USER;
682        data.reference.plane[0] = pEnc->reference->image.y;
683        data.reference.plane[1] = pEnc->reference->image.u;
684        data.reference.plane[2] = pEnc->reference->image.v;
685        data.reference.stride[0] = pEnc->mbParam.edged_width;
686        data.reference.stride[1] = pEnc->mbParam.edged_width/2;
687        data.reference.stride[2] = pEnc->mbParam.edged_width/2;
688    
689        data.current.csp = XVID_CSP_USER;
690        data.current.plane[0] = frame->image.y;
691        data.current.plane[1] = frame->image.u;
692        data.current.plane[2] = frame->image.v;
693        data.current.stride[0] = pEnc->mbParam.edged_width;
694        data.current.stride[1] = pEnc->mbParam.edged_width/2;
695        data.current.stride[2] = pEnc->mbParam.edged_width/2;
696    
697        data.frame_num = frame->frame_num;
698    
699        if (opt == XVID_PLG_BEFORE) {
700            data.type = XVID_TYPE_AUTO;
701            data.quant = 0;
702    
703                    if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
704                data.dquant = pEnc->temp_dquants;
705                data.dquant_stride = pEnc->mbParam.mb_width;
706                            memset(data.dquant, 0, data.mb_width*data.mb_height);
707            }
708    
709            /* todo: [vol,vop,motion]_flags*/
710    
711        } else { /* XVID_PLG_AFTER */
712            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
713                data.original.csp = XVID_CSP_USER;
714                data.original.plane[0] = original->y;
715                data.original.plane[1] = original->u;
716                data.original.plane[2] = original->v;
717                data.original.stride[0] = pEnc->mbParam.edged_width;
718                data.original.stride[1] = pEnc->mbParam.edged_width/2;
719                data.original.stride[2] = pEnc->mbParam.edged_width/2;
720            }
721    
722            if ((frame->vol_flags & XVID_VOL_EXTRASTATS) ||
723                (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
724    
725                            data.sse_y =
726                                plane_sse( original->y, frame->image.y,
727                                                   pEnc->mbParam.edged_width, pEnc->mbParam.width,
728                                                   pEnc->mbParam.height);
729    
730                data.sse_u =
731                    plane_sse( original->u, frame->image.u,
732                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
733                                                   pEnc->mbParam.height/2);
734    
735                            data.sse_v =
736                    plane_sse( original->v, frame->image.v,
737                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
738                                                   pEnc->mbParam.height/2);
739            }
740    
741            data.type = coding2type(frame->coding_type);
742            data.quant = frame->quant;
743    
744            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
745                data.dquant = pEnc->temp_dquants;
746                data.dquant_stride = pEnc->mbParam.mb_width;
747    
748                for (j=0; j<pEnc->mbParam.mb_height; j++)
749                for (i=0; i<pEnc->mbParam.mb_width; i++) {
750                    data.dquant[j*data.dquant_stride + i] = frame->mbs[j*pEnc->mbParam.mb_width + i].dquant;;
751                }
752            }
753    
754            data.vol_flags = frame->vol_flags;
755            data.vop_flags = frame->vop_flags;
756            data.motion_flags = frame->motion_flags;
757    
758            data.length = frame->length;
759            data.kblks = frame->sStat.kblks;
760            data.mblks = frame->sStat.mblks;
761            data.ublks = frame->sStat.ublks;
762    
763            if (stats) {
764                    stats->type = coding2type(frame->coding_type);
765                    stats->quant = frame->quant;
766                    stats->vol_flags = frame->vol_flags;
767                    stats->vop_flags = frame->vop_flags;
768                    stats->length = frame->length;
769                    stats->hlength = frame->length - (frame->sStat.iTextBits / 8);
770                    stats->kblks = frame->sStat.kblks;
771                    stats->mblks = frame->sStat.mblks;
772                    stats->ublks = frame->sStat.ublks;
773                stats->sse_y = data.sse_y;
774                stats->sse_u = data.sse_u;
775                stats->sse_v = data.sse_v;
776            }
777        }
778    
779        /* call plugins */
780        for (i=0; i<pEnc->num_plugins;i++) {
781            emms();
782            if (pEnc->plugins[i].func) {
783                if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {
784                    continue;
785                }
786            }
787        }
788        emms();
789    
790        /* copy modified values back into frame*/
791        if (opt == XVID_PLG_BEFORE) {
792            *type = data.type;
793            *quant = data.quant > 0 ? data.quant : 2;   /* default */
794    
795            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
796                for (j=0; j<pEnc->mbParam.mb_height; j++)
797                for (i=0; i<pEnc->mbParam.mb_width; i++) {
798                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = data.dquant[j*data.mb_width + i];
799                }
800            }else{
801                for (j=0; j<pEnc->mbParam.mb_height; j++)
802                for (i=0; i<pEnc->mbParam.mb_width; i++) {
803                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;
804                }
805            }
806            /* todo: [vol,vop,motion]_flags*/
807        }
808    }
809    
810    
811    
812    
813    static __inline void inc_frame_num(Encoder * pEnc)
814    {
815        pEnc->current->frame_num = pEnc->m_framenum;
816            pEnc->current->stamp = pEnc->mbParam.m_stamp;   /* first frame is zero */
817    
818        pEnc->mbParam.m_stamp += pEnc->current->fincr;
819        pEnc->m_framenum++; /* debug ticker */
820    }
821    
822    static __inline void dec_frame_num(Encoder * pEnc)
823    {
824        pEnc->mbParam.m_stamp -= pEnc->mbParam.fincr;
825        pEnc->m_framenum--; /* debug ticker */
826    }
827    
828    
829    
830    static __inline void
831    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
832    {
833    
834        pCur->ticks = (int32_t)pCur->stamp % time_base;
835                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
836    
837                    /* HEAVY DEBUG OUTPUT remove when timecodes prove to be stable */
838    
839    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
840                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
841                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
842                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
843                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
844                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
845    
846    */
847    }
848    
849    
850    
851    /*****************************************************************************
852     * IPB frame encoder entry point
853     *
854     * Returned values :
855     *    - >0               - output bytes
856     *    - 0                - no output
857     *    - XVID_ERR_VERSION - wrong version passed to core
858     *    - XVID_ERR_END     - End of stream reached before end of coding
859     *    - XVID_ERR_FORMAT  - the image subsystem reported the image had a wrong
860     *                         format
861     ****************************************************************************/
862    
863    
864    int
865    enc_encode(Encoder * pEnc,
866                               xvid_enc_frame_t * xFrame,
867                               xvid_enc_stats_t * stats)
868    {
869            xvid_enc_frame_t * frame;
870            int type;
871            Bitstream bs;
872    
873            if (XVID_MAJOR(xFrame->version) != 1 || (stats && XVID_MAJOR(stats->version) != 1))     /* v1.x.x */
874                    return XVID_ERR_VERSION;
875    
876            xFrame->out_flags = 0;
877    
878            start_global_timer();
879            BitstreamInit(&bs, xFrame->bitstream, 0);
880    
881    
882            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
883             * enqueue image to the encoding-queue
884             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
885    
886            if (xFrame->input.csp != XVID_CSP_NULL)
887            {
888                    QUEUEINFO * q = &pEnc->queue[pEnc->queue_tail];
889    
890                    start_timer();
891                    if (image_input
892                            (&q->image, pEnc->mbParam.width, pEnc->mbParam.height,
893                            pEnc->mbParam.edged_width, (uint8_t**)xFrame->input.plane, xFrame->input.stride,
894                            xFrame->input.csp, xFrame->vol_flags & XVID_VOL_INTERLACING))
895                    {
896                            emms();
897                            return XVID_ERR_FORMAT;
898                    }
899                    stop_conv_timer();
900    
901                    if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
902                            image_chroma_optimize(&q->image,
903                                    pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
904                    }
905    
906                    q->frame = *xFrame;
907    
908                    if (xFrame->quant_intra_matrix)
909                    {
910                            memcpy(q->quant_intra_matrix, xFrame->quant_intra_matrix, sizeof(xFrame->quant_intra_matrix));
911                            q->frame.quant_intra_matrix = q->quant_intra_matrix;
912                    }
913    
914                    if (xFrame->quant_inter_matrix)
915                    {
916                            memcpy(q->quant_inter_matrix, xFrame->quant_inter_matrix, sizeof(xFrame->quant_inter_matrix));
917                            q->frame.quant_inter_matrix = q->quant_inter_matrix;
918                    }
919    
920                    pEnc->queue_tail = (pEnc->queue_tail + 1) % (pEnc->mbParam.max_bframes+1);
921                    pEnc->queue_size++;
922            }
923    
924    
925            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
926             * bframe flush code
927             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
928    
929    repeat:
930    
931            if (pEnc->flush_bframes)
932            {
933                    if (pEnc->bframenum_head < pEnc->bframenum_tail) {
934    
935                            DPRINTF(XVID_DEBUG_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
936                                            pEnc->bframenum_head, pEnc->bframenum_tail,
937                                            pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
938    
939                if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
940                                    image_copy(&pEnc->sOriginal2, &pEnc->bframes[pEnc->bframenum_head]->image,
941                                                       pEnc->mbParam.edged_width, pEnc->mbParam.height);
942                            }
943    
944                            FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);
945                call_plugins(pEnc, pEnc->bframes[pEnc->bframenum_head], &pEnc->sOriginal2, XVID_PLG_AFTER, 0, 0, stats);
946                            pEnc->bframenum_head++;
947    
948                            goto done;
949                    }
950    
951                    /* write an empty marker to the bitstream.
952    
953                       for divx5 decoder compatibility, this marker must consist
954                       of a not-coded p-vop, with a time_base of zero, and time_increment
955                       indentical to the future-referece frame.
956                    */
957    
958                    if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED && pEnc->bframenum_tail > 0)) {
959                            int tmp;
960                            int bits;
961    
962                            DPRINTF(XVID_DEBUG_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
963                                    pEnc->bframenum_head, pEnc->bframenum_tail,
964                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
965    
966                            bits = BitstreamPos(&bs);
967    
968                            tmp = pEnc->current->seconds;
969                            pEnc->current->seconds = 0; /* force time_base = 0 */
970    
971                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
972                            BitstreamPad(&bs);
973                            pEnc->current->seconds = tmp;
974    
975                            /* add the not-coded length to the reference frame size */
976                            pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;
977                call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
978    
979                /* flush complete: reset counters */
980                    pEnc->flush_bframes = 0;
981                        pEnc->bframenum_head = pEnc->bframenum_tail = 0;
982                            goto done;
983    
984                    }
985    
986            /* flush complete: reset counters */
987                    pEnc->flush_bframes = 0;
988                    pEnc->bframenum_head = pEnc->bframenum_tail = 0;
989            }
990    
991            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
992             * dequeue frame from the encoding queue
993             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
994    
995            if (pEnc->queue_size == 0)              /* empty */
996            {
997                    if (xFrame->input.csp == XVID_CSP_NULL) /* no futher input */
998                    {
999    
1000                DPRINTF(XVID_DEBUG_DEBUG,"*** FINISH bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1001                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1002                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1003    
1004                if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0) {
1005                    call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1006                }
1007    
1008                /* if the very last frame is to be b-vop, we must change it to a p-vop */
1009                if (pEnc->bframenum_tail > 0) {
1010    
1011                                    SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
1012                                    pEnc->bframenum_tail--;
1013                                    SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1014    
1015                                    /* convert B-VOP to P-VOP */
1016                    pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
1017    
1018                    if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1019                                image_copy(&pEnc->sOriginal, &pEnc->current->image,
1020                                       pEnc->mbParam.edged_width, pEnc->mbParam.height);
1021                    }
1022    
1023                    DPRINTF(XVID_DEBUG_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1024                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1025                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1026    
1027                    FrameCodeP(pEnc, &bs, 1, 0);
1028    
1029    
1030                    if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail==0) {
1031                        call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1032                    }else{
1033                        pEnc->flush_bframes = 1;
1034                        goto done;
1035                    }
1036                }
1037                DPRINTF(XVID_DEBUG_DEBUG, "*** END\n");
1038    
1039                            emms();
1040                            return XVID_ERR_END;    /* end of stream reached */
1041                    }
1042                    goto done;      /* nothing to encode yet; encoder lag */
1043            }
1044    
1045            /* the current FRAME becomes the reference */
1046            SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
1047    
1048  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT          /* remove frame from encoding-queue (head), and move it into the current */
1049            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
1050            frame = &pEnc->queue[pEnc->queue_head].frame;
1051            pEnc->queue_head = (pEnc->queue_head + 1) % (pEnc->mbParam.max_bframes+1);
1052            pEnc->queue_size--;
1053    
1054    
1055  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits);          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1056  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header);           * init pEnc->current fields
1057             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1058    
1059  static int DQtab[4] =      pEnc->current->fincr = pEnc->mbParam.fincr>0 ? pEnc->mbParam.fincr : frame->fincr;
1060  {      inc_frame_num(pEnc);
1061          -1, -2, 1, 2      pEnc->current->vol_flags = pEnc->mbParam.vol_flags;
1062  };      pEnc->current->vop_flags = frame->vop_flags;
1063            pEnc->current->motion_flags = frame->motion;
1064            pEnc->current->fcode = pEnc->mbParam.m_fcode;
1065            pEnc->current->bcode = pEnc->mbParam.m_fcode;
1066    
 static int iDQtab[5] =  
 {  
         1, 0, NO_CHANGE, 2, 3  
 };  
1067    
1068        if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
1069                image_chroma_optimize(&pEnc->current->image,
1070                        pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
1071        }
1072    
1073  int encoder_create(XVID_ENC_PARAM * pParam)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1074  {           * frame type & quant selection
1075      Encoder *pEnc;           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
         uint32_t i;  
1076    
1077      pParam->handle = NULL;          type = frame->type;
1078            pEnc->current->quant = frame->quant;
1079    
1080      ENC_CHECK(pParam);      call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_BEFORE, &type, &pEnc->current->quant, stats);
1081    
1082      ENC_CHECK(pParam->width > 0 && pParam->width <= 1920);      if (type > 0){      /* XVID_TYPE_?VOP */
1083      ENC_CHECK(pParam->height > 0 && pParam->height <= 1280);                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */
1084      ENC_CHECK(!(pParam->width % 2));      } else{             /* XVID_TYPE_AUTO */
1085      ENC_CHECK(!(pParam->height % 2));                  if (pEnc->iFrameNum == 0 || (pEnc->mbParam.iMaxKeyInterval > 0 && pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval)){
1086                            pEnc->iFrameNum = 0;
1087                            type = I_VOP;
1088                    }else{
1089                            type = MEanalysis(&pEnc->reference->image, pEnc->current,
1090                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
1091                                            pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold);
1092                    }
1093            }
1094    
1095          if (pParam->fincr <= 0 || pParam->fbase <= 0)      /* bframes buffer overflow check */
1096          {      if (type == B_VOP && pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
1097                  pParam->fincr = 1;          type = P_VOP;
                 pParam->fbase = 25;  
1098          }          }
1099    
1100          // simplify the "fincr/fbase" fraction          pEnc->iFrameNum++;
         // (neccessary, since windows supplies us with huge numbers)  
1101    
1102          i = pParam->fincr;          if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1103          while (i > 1)                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
1104          {                          "%i  st:%i  if:%i", pEnc->current->frame_num, pEnc->current->stamp, pEnc->iFrameNum);
                 if (pParam->fincr % i == 0 && pParam->fbase % i == 0)  
                 {  
                         pParam->fincr /= i;  
                         pParam->fbase /= i;  
                         i = pParam->fincr;  
                         continue;  
                 }  
                 i--;  
1105          }          }
1106    
1107          if (pParam->fbase > 65535)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1108          {           * encode this frame as a b-vop
1109                  float div = (float)pParam->fbase / 65535;       * (we dont encode here, rather we store the frame in the bframes queue, to be encoded later)
1110                  pParam->fbase = (int)(pParam->fbase / div);           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1111                  pParam->fincr = (int)(pParam->fincr / div);          if (type == B_VOP) {
1112                    if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1113                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1114          }          }
1115    
1116          if (pParam->bitrate <= 0)                  if (frame->quant < 1) {
1117                  pParam->bitrate = 900000;                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1118                                    pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1119    
1120      if (pParam->rc_buffersize <= 0)                  } else {
1121                  pParam->rc_buffersize = pParam->bitrate * pParam->fbase;                          pEnc->current->quant = frame->quant;
1122                    }
1123    
1124      if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))                  if (pEnc->current->quant < 1)
1125                  pParam->min_quantizer = 1;                          pEnc->current->quant = 1;
1126                    else if (pEnc->current->quant > 31)
1127                pEnc->current->quant = 31;
1128    
1129      if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))                  DPRINTF(XVID_DEBUG_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1130                  pParam->max_quantizer = 31;                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1131                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1132    
1133      if (pParam->max_key_interval == 0)          /* 1 keyframe each 10 seconds */                  /* store frame into bframe buffer & swap ref back to current */
1134                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1135                    SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
1136    
1137      if (pParam->max_quantizer < pParam->min_quantizer)                  pEnc->bframenum_tail++;
                 pParam->max_quantizer = pParam->min_quantizer;  
1138    
1139      if ((pEnc = (Encoder *) malloc(sizeof(Encoder))) == NULL)                  goto repeat;
1140                  return XVID_ERR_MEMORY;      }
1141    
         /* Fill members of Encoder structure */  
1142    
1143      pEnc->mbParam.width = pParam->width;                  DPRINTF(XVID_DEBUG_DEBUG,"*** XXXXXX bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1144      pEnc->mbParam.height = pParam->height;                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1145                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1146    
1147          pEnc->mbParam.mb_width = (pEnc->mbParam.width + 15) / 16;      /* for unpacked bframes, output the stats for the last encoded frame */
1148          pEnc->mbParam.mb_height = (pEnc->mbParam.height + 15) / 16;      if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0)
1149        {
1150            if (pEnc->current->stamp > 0) {
1151                call_plugins(pEnc, pEnc->reference, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1152            }
1153                    else
1154                            stats->type = XVID_TYPE_NOTHING;
1155        }
1156    
1157          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1158          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;           * closed-gop
1159         * if the frame prior to an iframe is scheduled as a bframe, we must change it to a pframe
1160         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1161    
1162      pEnc->sStat.fMvPrevSigma = -1;      if (type == I_VOP && (pEnc->mbParam.global_flags & XVID_GLOBAL_CLOSED_GOP) && pEnc->bframenum_tail > 0) {
1163    
1164          /* Fill rate control parameters */                  /* place this frame back on the encoding-queue (head) */
1165                    /* we will deal with it next time */
1166            dec_frame_num(pEnc);
1167            pEnc->iFrameNum--;
1168    
1169      pEnc->mbParam.quant = 4;          pEnc->queue_head = (pEnc->queue_head + (pEnc->mbParam.max_bframes+1) - 1) % (pEnc->mbParam.max_bframes+1);
1170            pEnc->queue_size++;
1171                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
1172    
1173          pEnc->bitrate = pParam->bitrate;                  /* grab the last frame from the bframe-queue */
1174    
1175      pEnc->iFrameNum = 0;                  pEnc->bframenum_tail--;
1176      pEnc->iMaxKeyInterval = pParam->max_key_interval;                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1177    
1178      if (image_create(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1179      {                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
                 free(pEnc);  
                 return XVID_ERR_MEMORY;  
1180      }      }
1181    
1182          if (image_create(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)                  /* convert B-VOP quant to P-VOP */
1183      {                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
1184                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          type = P_VOP;
                 free(pEnc);  
                 return XVID_ERR_MEMORY;  
1185      }      }
1186    
     if (image_create(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)  
     {  
                 image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 free(pEnc);  
                 return XVID_ERR_MEMORY;  
     }  
1187    
1188      if (image_create(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1189      {           * encode this frame as an i-vop
1190                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);       * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
                 image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 free(pEnc);  
                 return XVID_ERR_MEMORY;  
     }  
1191    
1192      if (image_create(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          if (type == I_VOP) {
     {  
                 image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 free(pEnc);  
                 return XVID_ERR_MEMORY;  
     }  
1193    
1194          pEnc->pMBs = malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);                  DPRINTF(XVID_DEBUG_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1195          if (pEnc->pMBs == NULL)                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1196          {                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
                 image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 free(pEnc);  
                 return XVID_ERR_MEMORY;  
         }  
1197    
1198          // init macroblock array                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1199          for (i = 0; i < pEnc->mbParam.mb_width * pEnc->mbParam.mb_height; i++)                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
         {  
                 pEnc->pMBs[i].dquant = NO_CHANGE;  
1200          }          }
1201    
     pParam->handle = (void *)pEnc;  
   
         if (pParam->bitrate)  
         {  
                 RateControlInit(pParam->bitrate, pParam->rc_buffersize, pParam->fbase, pParam->width,  
                                                 pParam->height, pParam->max_quantizer, pParam->min_quantizer);  
         }  
1202    
1203          create_vlc_tables();                  /* ---- update vol flags at IVOP ----------- */
1204                    pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
1205    
1206          return XVID_ERR_OK;          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {
1207                            if (frame->quant_intra_matrix != NULL)
1208                                    set_intra_matrix(frame->quant_intra_matrix);
1209                            if (frame->quant_inter_matrix != NULL)
1210                                    set_inter_matrix(frame->quant_inter_matrix);
1211  }  }
1212    
1213            /* prevent vol/vop misuse */
1214    
1215  int encoder_destroy(Encoder * pEnc)          if (!(pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1216  {              pEnc->current->vop_flags &= ~XVID_VOP_REDUCED;
     ENC_CHECK(pEnc);  
     ENC_CHECK(pEnc->sCurrent.y);  
     ENC_CHECK(pEnc->sReference.y);  
1217    
1218          free(pEnc->pMBs);          if (!(pEnc->current->vol_flags & XVID_VOL_INTERLACING))
1219      image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);              pEnc->current->vop_flags &= ~(XVID_VOP_TOPFIELDFIRST|XVID_VOP_ALTERNATESCAN);
     image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
     image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
     image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
     image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
     free(pEnc);  
1220    
1221          destroy_vlc_tables();                  /* ^^^------------------------ */
1222    
1223      return XVID_ERR_OK;          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1224                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1225                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
1226  }  }
1227    
1228  int encoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult)                  FrameCodeI(pEnc, &bs);
1229  {                  xFrame->out_flags |= XVID_KEYFRAME;
     uint16_t x, y;  
     Bitstream bs;  
     uint32_t bits;  
         uint16_t quant_type = 0;  
         uint16_t quant_change = 0;  
   
     IMAGE *pCurrent = &(pEnc->sCurrent);  
1230    
1231          start_global_timer();          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1232             * encode this frame as an p-vop
1233         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1234    
1235      ENC_CHECK(pEnc);      } else { /* (type == P_VOP || type == S_VOP) */
     ENC_CHECK(pFrame);  
     ENC_CHECK(pFrame->bitstream);  
     ENC_CHECK(pFrame->image);  
1236    
1237          pEnc->mbParam.global_flags = pFrame->general;                  DPRINTF(XVID_DEBUG_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1238          pEnc->mbParam.motion_flags = pFrame->motion;                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1239                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1240    
1241          start_timer();                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1242          if (image_input(&pEnc->sCurrent, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width,                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
                                         pFrame->image, pFrame->colorspace))  
         {  
                 return XVID_ERR_FORMAT;  
1243          }          }
         stop_conv_timer();  
1244    
1245      BitstreamInit(&bs, pFrame->bitstream, 0);          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1246                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1247          if (pFrame->quant == 0)                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
         {  
                 pEnc->mbParam.quant = RateControlGetQ(0);  
1248          }          }
1249          else  
1250          {                  FrameCodeP(pEnc, &bs, 1, 0);
                 pEnc->mbParam.quant = pFrame->quant;  
1251          }          }
1252    
         if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0)  
         {  
                 int * temp_dquants = (int *) malloc(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * sizeof(int));  
1253    
1254                  pEnc->mbParam.quant = adaptive_quantization(pEnc->sCurrent.y, pEnc->mbParam.width,      /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1255                          temp_dquants, pFrame->quant, pFrame->quant,           * on next enc_encode call we must flush bframes
1256                          2*pFrame->quant, pEnc->mbParam.mb_width, pEnc->mbParam.mb_height);           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1257    
1258                  for (y = 0; y < pEnc->mbParam.mb_height; y++)  done_flush:
1259                          for (x = 0; x < pEnc->mbParam.mb_width; x++)  
1260                          {      pEnc->flush_bframes = 1;
1261                                  MACROBLOCK *pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];  
1262                                  pMB->dquant = iDQtab[(temp_dquants[y * pEnc->mbParam.mb_width + x] + 2)];          /* packed & queued_bframes: dont bother outputting stats here, we do so after the flush */
1263            if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1264                    goto repeat;
1265                          }                          }
1266                  free(temp_dquants);  
1267        /* packed or no-bframes or no-bframes-queued: output stats */
1268        if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) || pEnc->mbParam.max_bframes == 0 ) {
1269            call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1270          }          }
1271    
1272          if(pEnc->mbParam.global_flags & XVID_H263QUANT)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1273                  quant_type = H263_QUANT;           * done; return number of bytes consumed
1274          else if(pEnc->mbParam.global_flags & XVID_MPEGQUANT)           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1275                  quant_type = MPEG4_QUANT;  
1276    done:
1277    
1278            stop_global_timer();
1279            write_timer();
1280    
1281          if(pEnc->mbParam.quant_type != quant_type) {          emms();
1282                  pEnc->mbParam.quant_type = quant_type;          return BitstreamLength(&bs);
                 quant_change = 1;  
1283          }          }
         else  
                 quant_change = 0;  
1284    
1285    
1286          if (pFrame->intra < 0)  static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)
1287      {      {
1288                  if ((pEnc->iFrameNum == 0) || ((pEnc->iMaxKeyInterval > 0)      unsigned int i,j;
1289                          && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval)))      int quant = frame->quant;
1290    
1291                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);      for (j=0; j<pParam->mb_height; j++)
1292                  else      for (i=0; i<pParam->mb_width; i++) {
1293                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, quant_change);          MACROBLOCK * pMB = &frame->mbs[j*pParam->mb_width + i];
1294            quant += pMB->dquant;
1295            if (quant > 31)
1296                            quant = 31;
1297                    if (quant < 1)
1298                            quant = 1;
1299            pMB->quant = quant;
1300      }      }
     else  
     {  
                 if (pFrame->intra == 1)  
                     pFrame->intra = FrameCodeI(pEnc, &bs, &bits);  
                 else  
                         pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, quant_change);  
1301      }      }
1302    
         BitstreamPutBits(&bs, 0xFFFF, 16);  
     BitstreamPutBits(&bs, 0xFFFF, 16);  
     BitstreamPad(&bs);  
     pFrame->length = BitstreamLength(&bs);  
   
         if (pResult)  
     {  
                 pResult->quant = pEnc->mbParam.quant;  
                 pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);  
                 pResult->kblks = pEnc->sStat.kblks;  
                 pResult->mblks = pEnc->sStat.mblks;  
                 pResult->ublks = pEnc->sStat.ublks;  
     }  
1303    
1304      if (pEnc->bitrate)  static __inline void
1305    CodeIntraMB(Encoder * pEnc,
1306                            MACROBLOCK * pMB)
1307          {          {
                 RateControlUpdate(pEnc->mbParam.quant, pFrame->length, pFrame->intra);  
         }  
1308    
1309          pEnc->iFrameNum++;          pMB->mode = MODE_INTRA;
     image_swap(&pEnc->sCurrent, &pEnc->sReference);  
1310    
1311          stop_global_timer();          /* zero mv statistics */
1312          write_timer();          pMB->mvs[0].x = pMB->mvs[1].x = pMB->mvs[2].x = pMB->mvs[3].x = 0;
1313            pMB->mvs[0].y = pMB->mvs[1].y = pMB->mvs[2].y = pMB->mvs[3].y = 0;
1314            pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;
1315            pMB->sad16 = 0;
1316    
1317          return XVID_ERR_OK;          if (pMB->dquant != 0) {
1318                    pMB->mode = MODE_INTRA_Q;
1319        }
1320  }  }
1321    
1322    
 static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {  
1323    
1324          pMB->mode = MODE_INTRA;  static int
1325    FrameCodeI(Encoder * pEnc,
1326                       Bitstream * bs)
1327    {
1328        int bits = BitstreamPos(bs);
1329            int mb_width = pEnc->mbParam.mb_width;
1330            int mb_height = pEnc->mbParam.mb_height;
1331    
1332          if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0) {          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1333                  if(pMB->dquant != NO_CHANGE)          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
                 {  
                         pMB->mode = MODE_INTRA_Q;  
                         pEnc->mbParam.quant += DQtab[pMB->dquant];  
1334    
1335                          if (pEnc->mbParam.quant > 31) pEnc->mbParam.quant = 31;          uint16_t x, y;
1336                          if (pEnc->mbParam.quant < 1) pEnc->mbParam.quant = 1;  
1337                  }          if ((pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1338          }          {
1339                    mb_width = (pEnc->mbParam.width + 31) / 32;
1340                    mb_height = (pEnc->mbParam.height + 31) / 32;
1341    
1342          pMB->quant = pEnc->mbParam.quant;                  /* 16x16->8x8 downsample requires 1 additional edge pixel*/
1343                    /* XXX: setedges is overkill */
1344                    start_timer();
1345                    image_setedges(&pEnc->current->image,
1346                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1347                            pEnc->mbParam.width, pEnc->mbParam.height);
1348                    stop_edges_timer();
1349  }  }
1350    
1351            pEnc->mbParam.m_rounding_type = 1;
1352            pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1353            pEnc->current->coding_type = I_VOP;
1354    
1355  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits)      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
 {  
     int16_t dct_codes[6][64];  
     int16_t qcoeff[6][64];  
     uint16_t x, y;  
     IMAGE *pCurrent = &pEnc->sCurrent;  
1356    
1357      pEnc->iFrameNum = 0;          BitstreamWriteVolHeader(bs, &pEnc->mbParam);
     pEnc->mbParam.rounding_type = 1;  
     pEnc->mbParam.coding_type = I_VOP;  
1358    
1359          BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
         BitstreamWriteVopHeader(bs, I_VOP, pEnc->mbParam.rounding_type,  
                         pEnc->mbParam.quant,  
                         pEnc->mbParam.fixed_code);  
1360    
1361      *pBits = BitstreamPos(bs);          BitstreamPadAlways(bs);
1362            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1363    
1364          pEnc->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1365          pEnc->sStat.kblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1366          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1367    
1368      for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++)
1369                  for (x = 0; x < pEnc->mbParam.mb_width; x++)                  for (x = 0; x < mb_width; x++) {
1370                  {                          MACROBLOCK *pMB =
1371                      MACROBLOCK *pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1372    
1373                          CodeIntraMB(pEnc, pMB);                          CodeIntraMB(pEnc, pMB);
1374    
1375                          MBTransQuantIntra(&pEnc->mbParam, x, y, dct_codes, qcoeff, pCurrent);                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1376                                                              dct_codes, qcoeff);
1377    
1378                          start_timer();                          start_timer();
1379                          MBPrediction(&pEnc->mbParam, x, y, pEnc->mbParam.mb_width, qcoeff, pEnc->pMBs);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1380                          stop_prediction_timer();                          stop_prediction_timer();
1381    
1382                          start_timer();                          start_timer();
1383                          MBCoding(&pEnc->mbParam, pMB, qcoeff, bs, &pEnc->sStat);                          if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)
1384                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1385                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1386                                    qcoeff[5*64+0]=0;
1387                            }
1388                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1389                          stop_coding_timer();                          stop_coding_timer();
1390                  }                  }
1391    
1392            if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1393            {
1394                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1395                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1396                            16, 0);
1397            }
1398          emms();          emms();
1399    
1400      *pBits = BitstreamPos(bs) - *pBits;  /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1401      pEnc->sStat.fMvPrevSigma = -1;  #if 0
1402      pEnc->sStat.iMvSum = 0;          /* for divx5 compatibility, we must always pad between the packed p and b frames */
1403      pEnc->sStat.iMvCount = 0;          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1404      pEnc->mbParam.fixed_code = 2;  #endif
1405                    BitstreamPadAlways(bs);
1406    #if 0
1407            else
1408                    BitstreamPad(bs);
1409    #endif
1410        pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1411    
1412            pEnc->fMvPrevSigma = -1;
1413            pEnc->mbParam.m_fcode = 2;
1414    
1415        /* XXX: hinted me
1416            if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1417                    HintedMEGet(pEnc, 1);
1418            }*/
1419    
1420      return 1;                                    // intra          return 1;                                       /* intra */
1421  }  }
1422    
1423    
1424  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1425    #define BFRAME_SKIP_THRESHHOLD 30
1426    
1427  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header)  
1428    /* FrameCodeP also handles S(GMC)-VOPs */
1429    static int
1430    FrameCodeP(Encoder * pEnc,
1431                       Bitstream * bs,
1432                       bool force_inter,
1433                       bool vol_header)
1434  {  {
1435      float fSigma;      float fSigma;
1436      int16_t dct_codes[6][64];      int bits = BitstreamPos(bs);
1437      int16_t qcoeff[6][64];  
1438            DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1439            DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1440    
1441            int mb_width = pEnc->mbParam.mb_width;
1442            int mb_height = pEnc->mbParam.mb_height;
1443    
1444          int iLimit;          int iLimit;
1445      uint32_t x, y;          int x, y, k;
1446      int iSearchRange;      int iSearchRange;
1447          bool bIntra;          int bIntra, skip_possible;
1448    
1449            /* IMAGE *pCurrent = &pEnc->current->image; */
1450            IMAGE *pRef = &pEnc->reference->image;
1451    
1452      IMAGE *pCurrent = &pEnc->sCurrent;          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1453      IMAGE *pRef = &pEnc->sReference;          {
1454                    mb_width = (pEnc->mbParam.width + 31) / 32;
1455                    mb_height = (pEnc->mbParam.height + 31) / 32;
1456            }
1457    
         image_setedges(pRef,pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height);  
1458    
1459      pEnc->mbParam.rounding_type = 1 - pEnc->mbParam.rounding_type;          start_timer();
1460            image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1461                                       pEnc->mbParam.width, pEnc->mbParam.height);
1462            stop_edges_timer();
1463    
1464            pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1465            pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1466            /* pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel; */
1467            pEnc->current->fcode = pEnc->mbParam.m_fcode;
1468    
1469          if (!force_inter)          if (!force_inter)
1470                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);                  iLimit = (int)(mb_width * mb_height *  INTRA_THRESHOLD);
1471      else      else
1472                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1473    
1474          if ((pEnc->mbParam.global_flags & XVID_HALFPEL) > 0) {          if ((pEnc->current->vop_flags & XVID_VOP_HALFPEL)) {
1475                  start_timer();                  start_timer();
1476                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1477                          pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1478                          pEnc->mbParam.rounding_type);                                                    pEnc->mbParam.edged_height,
1479                                                      (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL),
1480                                                      pEnc->current->rounding_type);
1481                  stop_inter_timer();                  stop_inter_timer();
1482          }          }
1483    
1484            pEnc->current->coding_type = P_VOP;
1485    
1486    
1487        SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1488    
1489          start_timer();          start_timer();
1490          bIntra = MotionEstimation(pEnc->pMBs, &pEnc->mbParam, &pEnc->sReference,          /*if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1491                                  &pEnc->vInterH, &pEnc->vInterV,                  HintedMESet(pEnc, &bIntra);
1492                                  &pEnc->vInterHV, &pEnc->sCurrent, iLimit);          else*/
1493                    bIntra =
1494                            MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1495                             &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1496                             iLimit);
1497    
1498          stop_motion_timer();          stop_motion_timer();
1499    
1500          if (bIntra == 1)          if (bIntra == 1) return FrameCodeI(pEnc, bs);
1501                  return FrameCodeI(pEnc, bs, pBits);  
1502            if ( ( pEnc->current->vol_flags & XVID_VOL_GMC )
1503                    && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )
1504            {
1505                    pEnc->current->coding_type = S_VOP;
1506    
1507                    generate_GMCparameters( 2, 16, &pEnc->current->warp,
1508                                            pEnc->mbParam.width, pEnc->mbParam.height,
1509                                            &pEnc->current->gmc_data);
1510    
1511      pEnc->mbParam.coding_type = P_VOP;                  generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,
1512                                    pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,
1513                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,
1514                                    pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0,
1515                                    pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);
1516    
1517            }
1518    
1519            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1520          if(vol_header)          if(vol_header)
1521                  BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1522                    BitstreamPadAlways(bs);
1523            }
1524    
1525      BitstreamWriteVopHeader(bs, P_VOP, pEnc->mbParam.rounding_type,          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
                          pEnc->mbParam.quant,  
                          pEnc->mbParam.fixed_code);  
1526    
1527      *pBits = BitstreamPos(bs);          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1528                    pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1529    
     pEnc->sStat.iTextBits = 0;  
     pEnc->sStat.iMvSum = 0;  
     pEnc->sStat.iMvCount = 0;  
         pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;  
1530    
1531      for(y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < mb_height; y++) {
1532          {                  for (x = 0; x < mb_width; x++) {
1533                  for(x = 0; x < pEnc->mbParam.mb_width; x++)                          MACROBLOCK *pMB =
1534                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1535                          MACROBLOCK * pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];  
1536    /* Mode decision: Check, if the block should be INTRA / INTER or GMC-coded */
1537    /* For a start, leave INTRA decision as is, only choose only between INTER/GMC  - gruel, 9.1.2002 */
1538    
1539                      bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                      bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1540    
1541                          if (!bIntra)                          if (bIntra) {
1542                      {                                  CodeIntraMB(pEnc, pMB);
1543                                    MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1544                                                                      dct_codes, qcoeff);
1545    
1546                                    start_timer();
1547                                    MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1548                                    stop_prediction_timer();
1549    
1550                                    pEnc->current->sStat.kblks++;
1551    
1552                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1553                                    stop_coding_timer();
1554                                    continue;
1555                            }
1556    
1557                            if (pEnc->current->coding_type == S_VOP) {
1558    
1559                                    int32_t iSAD = sad16(pEnc->current->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1560                                            pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1561                                            pEnc->mbParam.edged_width, 65536);
1562    
1563                                    if (pEnc->current->motion_flags & XVID_ME_CHROMA16) {
1564                                            iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1565                                            pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1566    
1567                                            iSAD += sad8(pEnc->current->image.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1568                                            pEnc->vGMC.v + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1569                                    }
1570    
1571                                    if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1572    
1573                                            if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1574                                                    pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1575                                            else
1576                                                    pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
1577    
1578                                            pMB->mode = MODE_INTER;
1579                                            pMB->mcsel = 1;
1580                                            pMB->sad16 = iSAD;
1581                                    } else {
1582                                            pMB->mcsel = 0;
1583                                    }
1584                            } else {
1585                                    pMB->mcsel = 0; /* just a precaution */
1586                            }
1587    
1588                                  start_timer();                                  start_timer();
1589                                  MBMotionCompensation(pMB, x, y, &pEnc->sReference,                          MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
1590                                          &pEnc->vInterH, &pEnc->vInterV,                                          &pEnc->vInterH, &pEnc->vInterV,
1591                                          &pEnc->vInterHV, &pEnc->sCurrent, dct_codes,                                                                   &pEnc->vInterHV, &pEnc->vGMC,
1592                                          pEnc->mbParam.width,                                                                   &pEnc->current->image,
1593                                                                     dct_codes, pEnc->mbParam.width,
1594                                          pEnc->mbParam.height,                                          pEnc->mbParam.height,
1595                                          pEnc->mbParam.edged_width,                                          pEnc->mbParam.edged_width,
1596                                          pEnc->mbParam.rounding_type);                                                                   (pEnc->current->vol_flags & XVID_VOL_QUARTERPEL),
1597                                                                     (pEnc->current->vop_flags & XVID_VOP_REDUCED),
1598                                                                     pEnc->current->rounding_type);
1599    
1600                                  stop_comp_timer();                                  stop_comp_timer();
1601    
1602                                  if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0) {                          if (pMB->dquant != 0) {
                                         if(pMB->dquant != NO_CHANGE) {  
1603                                                  pMB->mode = MODE_INTER_Q;                                                  pMB->mode = MODE_INTER_Q;
                                                 pEnc->mbParam.quant += DQtab[pMB->dquant];  
                                                 if (pEnc->mbParam.quant > 31) pEnc->mbParam.quant = 31;  
                                                 else if(pEnc->mbParam.quant < 1) pEnc->mbParam.quant = 1;  
1604                                          }                                          }
1605    
1606                            pMB->field_pred = 0;
1607    
1608                            if (pMB->mode != MODE_NOT_CODED)
1609                            {       pMB->cbp =
1610                                            MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1611                                                                              dct_codes, qcoeff);
1612                                  }                                  }
                                 pMB->quant = pEnc->mbParam.quant;  
1613    
1614                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, x, y, dct_codes, qcoeff, pCurrent);                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1615                                       pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1616                                       pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1617                                    pEnc->current->sStat.mblks++;
1618                            }  else {
1619                                    pEnc->current->sStat.ublks++;
1620                      }                      }
1621    
1622                            start_timer();
1623    
1624                            /* Finished processing the MB, now check if to CODE or SKIP */
1625    
1626                            skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1627                                                            (pMB->dquant == 0);
1628    
1629                            if (pEnc->current->coding_type == S_VOP)
1630                                    skip_possible &= (pMB->mcsel == 1);
1631                            else if (pEnc->current->coding_type == P_VOP) {
1632                                    if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1633                                            skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1634                          else                          else
1635                          {                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );
                                 CodeIntraMB(pEnc, pMB);  
                                 MBTransQuantIntra(&pEnc->mbParam, x, y, dct_codes, qcoeff, pCurrent);  
1636                          }                          }
1637    
1638                      start_timer();                          if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1639                          MBPrediction(&pEnc->mbParam, x, y, pEnc->mbParam.mb_width, qcoeff, pEnc->pMBs);  
1640                          stop_prediction_timer();  /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1641    
1642                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)                                  if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1643                          {                          {
1644                                  pEnc->sStat.kblks++;                                          int bSkip = 1;
1645                          }  
1646                          else if (pMB->cbp ||                                          for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
                                         pMB->mvs[0].x || pMB->mvs[0].y ||  
                                         pMB->mvs[1].x || pMB->mvs[1].y ||  
                                         pMB->mvs[2].x || pMB->mvs[2].y ||  
                                         pMB->mvs[3].x || pMB->mvs[3].y)  
1647                          {                          {
1648                                  pEnc->sStat.mblks++;                                                  int iSAD;
1649                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1650                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1651                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1652                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1653                                                    {       bSkip = 0;
1654                                                            break;
1655                          }                          }
1656                          else                                          }
1657    
1658                                            if (!bSkip) {   /* no SKIP, but trivial block */
1659                                                    if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1660                                                            VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1661                                                            pMB->pmvs[0].x = - predMV.x;
1662                                                            pMB->pmvs[0].y = - predMV.y;
1663                                                    }
1664                                                    else {
1665                                                            VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1666                                                            pMB->pmvs[0].x = - predMV.x;
1667                                                            pMB->pmvs[0].y = - predMV.y;
1668                                                    }
1669                                                    pMB->mode = MODE_INTER;
1670                                                    pMB->cbp = 0;
1671                                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1672                                                    stop_coding_timer();
1673    
1674                                                    continue;       /* next MB */
1675                                            }
1676                                    }
1677                                    /* do SKIP */
1678    
1679                                    pMB->mode = MODE_NOT_CODED;
1680                                    MBSkip(bs);
1681                                    stop_coding_timer();
1682                                    continue;       /* next MB */
1683                            }
1684                            /* ordinary case: normal coded INTER/INTER4V block */
1685    
1686                            if ((pEnc->current->vop_flags & XVID_VOP_GREYSCALE))
1687                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1688                                    qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1689                                    qcoeff[5*64+0]=0;
1690                            }
1691    
1692                            if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1693                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1694                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1695                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1696                                    DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1697                            } else {
1698                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1699                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;
1700                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1701                                    DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1702                            }
1703    
1704    
1705                            if (pMB->mode == MODE_INTER4V)
1706                            {       int k;
1707                                    for (k=1;k<4;k++)
1708                          {                          {
1709                                  pEnc->sStat.ublks++;                                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1710                                                    VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1711                                                    pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1712                                                    pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
1713                                    DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1714                                            } else {
1715                                                    VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1716                                                    pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;
1717                                                    pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;
1718                                    DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1719                          }                          }
1720    
1721                          start_timer();                                  }
1722                          MBCoding(&pEnc->mbParam, pMB, qcoeff, bs, &pEnc->sStat);                          }
1723    
1724                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->current->sStat);
1725                          stop_coding_timer();                          stop_coding_timer();
1726    
1727                    }
1728                  }                  }
1729    
1730            if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1731            {
1732                    image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1733                            pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1734                            16, 0);
1735          }          }
1736    
1737          emms();          emms();
1738    
1739          if (pEnc->sStat.iMvCount == 0)      /* XXX: hinted me
1740                  pEnc->sStat.iMvCount = 1;          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1741                    HintedMEGet(pEnc, 0);
1742            }*/
1743    
1744      fSigma = (float)sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          if (pEnc->current->sStat.iMvCount == 0)
1745                    pEnc->current->sStat.iMvCount = 1;
1746    
1747      iSearchRange = 1 << (3 + pEnc->mbParam.fixed_code);          fSigma = (float) sqrt((float) pEnc->current->sStat.iMvSum / pEnc->current->sStat.iMvCount);
1748    
1749            iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1750    
1751      if ((fSigma > iSearchRange / 3)      if ((fSigma > iSearchRange / 3)
1752                  && (pEnc->mbParam.fixed_code <= 3))     // maximum search range 128          && (pEnc->mbParam.m_fcode <= (3 +  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0)  )))     /* maximum search range 128 */
1753      {      {
1754                  pEnc->mbParam.fixed_code++;                  pEnc->mbParam.m_fcode++;
1755                  iSearchRange *= 2;                  iSearchRange *= 2;
1756      }          } else if ((fSigma < iSearchRange / 6)
1757      else if ((fSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma >= 0)
1758              && (pEnc->sStat.fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1759              && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                             && (pEnc->mbParam.m_fcode >= (2 + (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0) )))    /* minimum search range 16 */
             && (pEnc->mbParam.fixed_code >= 2)) // minimum search range 16  
1760      {      {
1761                  pEnc->mbParam.fixed_code--;                  pEnc->mbParam.m_fcode--;
1762                  iSearchRange /= 2;                  iSearchRange /= 2;
1763      }      }
1764    
1765      pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1766    
1767            /* frame drop code */
1768    #if 0
1769            DPRINTF(XVID_DEBUG_DEBUG, "kmu %i %i %i\n", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1770    #endif
1771            if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1772                    (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1773            {
1774                    pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = 0;
1775                    pEnc->current->sStat.ublks = mb_width * mb_height;
1776    
1777                    BitstreamReset(bs);
1778    
1779                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1780                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1781    
1782                    /* copy reference frame details into the current frame */
1783                    pEnc->current->quant = pEnc->reference->quant;
1784                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1785                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1786                    /* pEnc->current->quarterpel =  pEnc->reference->quarterpel; */
1787                    pEnc->current->fcode = pEnc->reference->fcode;
1788                    pEnc->current->bcode = pEnc->reference->bcode;
1789                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1790                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * mb_width * mb_height);
1791            }
1792    
1793            /* XXX: debug
1794            {
1795                    char s[100];
1796                    sprintf(s, "\\%05i_cur.pgm", pEnc->m_framenum);
1797                    image_dump_yuvpgm(&pEnc->current->image,
1798                            pEnc->mbParam.edged_width,
1799                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1800    
1801                    sprintf(s, "\\%05i_ref.pgm", pEnc->m_framenum);
1802                    image_dump_yuvpgm(&pEnc->reference->image,
1803                            pEnc->mbParam.edged_width,
1804                            pEnc->mbParam.width, pEnc->mbParam.height, s);
1805            }
1806            */
1807    
1808    /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1809    #if 0
1810            /* for divx5 compatibility, we must always pad between the packed p and b frames */
1811            if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1812    #endif
1813                    BitstreamPadAlways(bs);
1814    #if 0
1815            else
1816                    BitstreamPad(bs);
1817    #endif
1818    
1819        pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1820    
1821            return 0;                                       /* inter */
1822    }
1823    
1824    
1825    static void
1826    FrameCodeB(Encoder * pEnc,
1827                       FRAMEINFO * frame,
1828                       Bitstream * bs)
1829    {
1830        int bits = BitstreamPos(bs);
1831            DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1832            DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1833            uint32_t x, y;
1834    
1835            IMAGE *f_ref = &pEnc->reference->image;
1836            IMAGE *b_ref = &pEnc->current->image;
1837    
1838        #ifdef BFRAMES_DEC_DEBUG
1839            FILE *fp;
1840            static char first=0;
1841    #define BFRAME_DEBUG    if (!first && fp){ \
1842                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1843            }
1844    
1845            /* XXX: pEnc->current->global_flags &= ~XVID_VOP_REDUCED;  reduced resoltion not yet supported */
1846    
1847            if (!first){
1848                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1849            }
1850    #endif
1851    
1852            /* frame->quarterpel =  pEnc->mbParam.m_quarterpel; */
1853    
1854            /* forward  */
1855            image_setedges(f_ref, pEnc->mbParam.edged_width,
1856                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1857                                       pEnc->mbParam.height);
1858            start_timer();
1859            image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1860                                              pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1861                                              (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1862            stop_inter_timer();
1863    
1864            /* backward */
1865            image_setedges(b_ref, pEnc->mbParam.edged_width,
1866                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1867                                       pEnc->mbParam.height);
1868            start_timer();
1869            image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1870                                              pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1871                                              (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1872            stop_inter_timer();
1873    
1874            start_timer();
1875    
1876            MotionEstimationBVOP(&pEnc->mbParam, frame,
1877                                                     ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */
1878                                                     ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),    /* time_pp */
1879                                                     pEnc->reference->mbs, f_ref,
1880                                                     &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1881                                                     pEnc->current, b_ref, &pEnc->vInterH,
1882                                                     &pEnc->vInterV, &pEnc->vInterHV);
1883    
1884    
1885            stop_motion_timer();
1886    
1887            /*
1888            if (test_quant_type(&pEnc->mbParam, pEnc->current)) {
1889                    BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);
1890            }
1891            */
1892    
1893            frame->coding_type = B_VOP;
1894    
1895            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1896            BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1897    
1898            frame->sStat.iTextBits = 0;
1899            frame->sStat.iMvSum = 0;
1900            frame->sStat.iMvCount = 0;
1901            frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
1902            frame->sStat.mblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1903            frame->sStat.kblks = frame->sStat.ublks = 0;
1904    
1905            for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1906                    for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1907                            MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1908                            int direction = frame->vop_flags & XVID_VOP_ALTERNATESCAN ? 2 : 0;
1909    
1910                            /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */
1911                            if (mb->mode == MODE_NOT_CODED) {
1912                                    /* mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0; */
1913                                    continue;
1914                            }
1915    
1916                            if (mb->mode != MODE_DIRECT_NONE_MV || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
1917                                    MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1918                                                                             f_ref, &pEnc->f_refh, &pEnc->f_refv,
1919                                                                             &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1920                                                                             &pEnc->vInterV, &pEnc->vInterHV,
1921                                                                             dct_codes);
1922    
1923                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1924                                    mb->quant = frame->quant;
1925    
1926                                    if (mb->mode != MODE_DIRECT_NONE_MV)
1927                                            mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);
1928    
1929                                    if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1930                                            && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
1931                                            mb->mode = MODE_DIRECT_NONE_MV; /* skipped */
1932                                    }
1933                            }
1934    
1935    #ifdef BFRAMES_DEC_DEBUG
1936            BFRAME_DEBUG
1937    #endif
1938                            start_timer();
1939                            MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1940                                                     &frame->sStat, direction);
1941                            stop_coding_timer();
1942                    }
1943            }
1944    
1945          *pBits = BitstreamPos(bs) - *pBits;          emms();
1946    
1947            /* TODO: dynamic fcode/bcode ??? */
1948    
1949      return 0;                                    // inter      BitstreamPadAlways(bs);
1950            frame->length = (BitstreamPos(bs) - bits) / 8;
1951    
1952    #ifdef BFRAMES_DEC_DEBUG
1953            if (!first){
1954                    first=1;
1955                    if (fp)
1956                            fclose(fp);
1957            }
1958    #endif
1959  }  }

Legend:
Removed from v.3  
changed lines
  Added in v.1057

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