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

Diff of /xvidcore/src/encoder.c

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

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

Legend:
Removed from v.1.76.2.20  
changed lines
  Added in v.1.126

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