[cvs] / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /xvidcore/src/encoder.c

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

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

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.95.2.56

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