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

Legend:
Removed from v.975  
changed lines
  Added in v.1680

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