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

Diff of /trunk/xvidcore/src/encoder.c

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

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

Legend:
Removed from v.138  
changed lines
  Added in v.1660

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