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

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

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

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

Legend:
Removed from v.13  
changed lines
  Added in v.1025

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