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

Legend:
Removed from v.128  
changed lines
  Added in v.1766

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