[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.95, Wed Feb 19 21:30:52 2003 UTC revision 1.95.2.28, Mon Jun 9 19:20:56 2003 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 47  Line 42 
42  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
43  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
44  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
 #include "utils/ratecontrol.h"  
45  #include "utils/emms.h"  #include "utils/emms.h"
46  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
 #include "quant/adapt_quant.h"  
47  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
48  #include "utils/mem_align.h"  #include "utils/mem_align.h"
49    
50  /*****************************************************************************  /*****************************************************************************
  * Local macros  
  ****************************************************************************/  
   
 #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  
 #define SWAP(_T_,A,B)    { _T_ tmp = A; A = B; B = tmp; }  
   
 /*****************************************************************************  
51   * Local function prototypes   * Local function prototypes
52   ****************************************************************************/   ****************************************************************************/
53    
54  static int FrameCodeI(Encoder * pEnc,  static int FrameCodeI(Encoder * pEnc,
55                                            Bitstream * bs,                                            Bitstream * bs);
                                           uint32_t * pBits);  
56    
57  static int FrameCodeP(Encoder * pEnc,  static int FrameCodeP(Encoder * pEnc,
58                                            Bitstream * bs,                                            Bitstream * bs,
                                           uint32_t * pBits,  
59                                            bool force_inter,                                            bool force_inter,
60                                            bool vol_header);                                            bool vol_header);
61    
62  static void FrameCodeB(Encoder * pEnc,  static void FrameCodeB(Encoder * pEnc,
63                                             FRAMEINFO * frame,                                             FRAMEINFO * frame,
64                                             Bitstream * bs,                                             Bitstream * bs);
                                            uint32_t * pBits);  
   
 /*****************************************************************************  
  * Local data  
  ****************************************************************************/  
   
 static int DQtab[4] = {  
         -1, -2, 1, 2  
 };  
   
 static int iDQtab[5] = {  
         1, 0, NO_CHANGE, 2, 3  
 };  
65    
66    
67  /*****************************************************************************  /*****************************************************************************
# Line 104  Line 75 
75   * and cleaning code.   * and cleaning code.
76   *   *
77   * Returned values :   * Returned values :
78   *    - XVID_ERR_OK     - no errors   *    - 0                - no errors
79   *    - XVID_ERR_MEMORY - the libc could not allocate memory, the function   *    - XVID_ERR_MEMORY - the libc could not allocate memory, the function
80   *                        cleans the structure before exiting.   *                        cleans the structure before exiting.
81   *                        pParam->handle is also set to NULL.   *                        pParam->handle is also set to NULL.
82   *   *
83   ****************************************************************************/   ****************************************************************************/
84    
 int  
 encoder_create(XVID_ENC_PARAM * pParam)  
 {  
         Encoder *pEnc;  
         int i;  
   
         pParam->handle = NULL;  
   
         ENC_CHECK(pParam);  
   
         ENC_CHECK(pParam->width > 0 && pParam->width <= 1920);  
         ENC_CHECK(pParam->height > 0 && pParam->height <= 1280);  
         ENC_CHECK(!(pParam->width % 2));  
         ENC_CHECK(!(pParam->height % 2));  
   
         /* Fps */  
   
         if (pParam->fincr <= 0 || pParam->fbase <= 0) {  
                 pParam->fincr = 1;  
                 pParam->fbase = 25;  
         }  
   
85          /*          /*
86           * Simplify the "fincr/fbase" fraction           * Simplify the "fincr/fbase" fraction
          * (neccessary, since windows supplies us with huge numbers)  
87           */           */
88    static void
89          i = pParam->fincr;  simplify_time(int *inc, int *base)
90    {
91            /* common factor */
92            int i = *inc;
93          while (i > 1) {          while (i > 1) {
94                  if (pParam->fincr % i == 0 && pParam->fbase % i == 0) {                  if (*inc % i == 0 && *base % i == 0) {
95                          pParam->fincr /= i;                          *inc /= i;
96                          pParam->fbase /= i;                          *base /= i;
97                          i = pParam->fincr;                          i = *inc;
98                          continue;                          continue;
99                  }                  }
100                  i--;                  i--;
101          }          }
102    
103          if (pParam->fbase > 65535) {          /* if neccessary, round to 65535 accuracy */
104                  float div = (float) pParam->fbase / 65535;          if (*base > 65535) {
105                    float div = (float) *base / 65535;
106                  pParam->fbase = (int) (pParam->fbase / div);                  *base = (int) (*base / div);
107                  pParam->fincr = (int) (pParam->fincr / div);                  *inc = (int) (*inc / div);
108            }
109          }          }
110    
         /* Bitrate allocator defaults */  
111    
112          if (pParam->rc_bitrate <= 0)  int
113                  pParam->rc_bitrate = 900000;  enc_create(xvid_enc_create_t * create)
114    {
115            Encoder *pEnc;
116        int n;
117    
118          if (pParam->rc_reaction_delay_factor <= 0)          if (XVID_MAJOR(create->version) != 1)   /* v1.x.x */
119                  pParam->rc_reaction_delay_factor = 16;                  return XVID_ERR_VERSION;
120    
121          if (pParam->rc_averaging_period <= 0)          if (create->width%2 || create->height%2)
122                  pParam->rc_averaging_period = 100;                  return XVID_ERR_FAIL;
123    
124          if (pParam->rc_buffer <= 0)          /* allocate encoder struct */
                 pParam->rc_buffer = 100;  
125    
126          /* Max and min quantizers */          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
127            if (pEnc == NULL)
128                    return XVID_ERR_MEMORY;
129            memset(pEnc, 0, sizeof(Encoder));
130    
131          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))      pEnc->mbParam.profile = create->profile;
                 pParam->min_quantizer = 1;  
132    
133          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))          /* global flags */
134                  pParam->max_quantizer = 31;      pEnc->mbParam.global_flags = create->global;
135    
136          if (pParam->max_quantizer < pParam->min_quantizer)      /* width, height */
137                  pParam->max_quantizer = pParam->min_quantizer;          pEnc->mbParam.width = create->width;
138            pEnc->mbParam.height = create->height;
139            pEnc->mbParam.mb_width = (pEnc->mbParam.width + 15) / 16;
140            pEnc->mbParam.mb_height = (pEnc->mbParam.height + 15) / 16;
141            pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;
142            pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;
143    
144          /* 1 keyframe each 10 seconds */      /* framerate */
145        pEnc->mbParam.fincr = MAX(create->fincr, 0);
146            pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;
147        if (pEnc->mbParam.fincr>0)
148                simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);
149    
150          if (pParam->max_key_interval <= 0)      /* zones */
151                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;      if(create->num_zones > 0) {
152                    pEnc->num_zones = create->num_zones;
153                    pEnc->zones = xvid_malloc(sizeof(xvid_enc_zone_t) * pEnc->num_zones, CACHE_LINE);
154                    if (pEnc->zones == NULL)
155                            goto xvid_err_memory0;
156            memcpy(pEnc->zones, create->zones, sizeof(xvid_enc_zone_t) * pEnc->num_zones);
157            } else {
158                    pEnc->num_zones = 0;
159                    pEnc->zones = NULL;
160            }
161    
162          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);      /* plugins */
163          if (pEnc == NULL)      if(create->num_plugins > 0) {
164                  return XVID_ERR_MEMORY;                  pEnc->num_plugins = create->num_plugins;
165                    pEnc->plugins = xvid_malloc(sizeof(xvid_enc_plugin_t) * pEnc->num_plugins, CACHE_LINE);
166                    if (pEnc->plugins == NULL)
167                            goto xvid_err_memory0;
168            } else {
169                    pEnc->num_plugins = 0;
170                    pEnc->plugins = NULL;
171            }
172    
173          /* Zero the Encoder Structure */      for (n=0; n<pEnc->num_plugins;n++) {
174            xvid_plg_create_t pcreate;
175            xvid_plg_info_t pinfo;
176    
177          memset(pEnc, 0, sizeof(Encoder));          memset(&pinfo, 0, sizeof(xvid_plg_info_t));
178            pinfo.version = XVID_VERSION;
179            if (create->plugins[n].func(0, XVID_PLG_INFO, &pinfo, 0) >= 0) {
180                pEnc->mbParam.plugin_flags |= pinfo.flags;
181            }
182    
183          /* Fill members of Encoder structure */          memset(&pcreate, 0, sizeof(xvid_plg_create_t));
184            pcreate.version = XVID_VERSION;
185            pcreate.num_zones = pEnc->num_zones;
186            pcreate.zones = pEnc->zones;
187            pcreate.width = pEnc->mbParam.width;
188            pcreate.height = pEnc->mbParam.height;
189            pcreate.fincr = pEnc->mbParam.fincr;
190            pcreate.fbase = pEnc->mbParam.fbase;
191            pcreate.param = create->plugins[n].param;
192    
193          pEnc->mbParam.width = pParam->width;          pEnc->plugins[n].func = NULL;   /* disable plugins that fail */
194          pEnc->mbParam.height = pParam->height;          if (create->plugins[n].func(0, XVID_PLG_CREATE, &pcreate, &pEnc->plugins[n].param) >= 0) {
195                pEnc->plugins[n].func = create->plugins[n].func;
196            }
197        }
198    
199          pEnc->mbParam.mb_width = (pEnc->mbParam.width + 15) / 16;      if ((pEnc->mbParam.global_flags & XVID_GLOBAL_EXTRASTATS_ENABLE) ||
200          pEnc->mbParam.mb_height = (pEnc->mbParam.height + 15) / 16;          (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
201            pEnc->mbParam.plugin_flags |= XVID_REQORIGINAL; /* psnr calculation requires the original */
202        }
203    
204          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;      /* temp dquants */
205          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;      if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
206                pEnc->temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width *
207                                                pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);
208        }
209        /* XXX: error checking */
210    
211            /* bframes */
212            pEnc->mbParam.max_bframes = MAX(create->max_bframes, 0);
213            pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);
214            pEnc->mbParam.bquant_offset = create->bquant_offset;
215    
216          pEnc->mbParam.fbase = pParam->fbase;      /* min/max quant */
217          pEnc->mbParam.fincr = pParam->fincr;      for (n=0; n<3; n++) {
218            pEnc->mbParam.min_quant[n] = create->min_quant[n] > 0 ? create->min_quant[n] : 2;
219            pEnc->mbParam.max_quant[n] = create->max_quant[n] > 0 ? create->max_quant[n] : 31;
220        }
221    
222          pEnc->mbParam.m_quant_type = H263_QUANT;          /* frame drop ratio */
223            pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);
224    
225          pEnc->fMvPrevSigma = -1;      /* max keyframe interval */
226        pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <= 0 ?
227                    10 * pEnc->mbParam.fbase / pEnc->mbParam.fincr : create->max_key_interval;
228    
229            /* Bitrate allocator defaults
230    
231          /* Fill rate control parameters */          if ((create->min_quantizer <= 0) || (create->min_quantizer > 31))
232                    create->min_quantizer = 1;
233    
234          pEnc->bitrate = pParam->rc_bitrate;          if ((create->max_quantizer <= 0) || (create->max_quantizer > 31))
235                    create->max_quantizer = 31;
236    
237          pEnc->iFrameNum = -1;          if (create->max_quantizer < create->min_quantizer)
238          pEnc->mbParam.iMaxKeyInterval = pParam->max_key_interval;                  create->max_quantizer = create->min_quantizer; */
239    
240          /* try to allocate frame memory */  
241        /* allocate working frame-image memory */
242    
243          pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);          pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
244          pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);          pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
# Line 227  Line 246 
246          if (pEnc->current == NULL || pEnc->reference == NULL)          if (pEnc->current == NULL || pEnc->reference == NULL)
247                  goto xvid_err_memory1;                  goto xvid_err_memory1;
248    
249          /* try to allocate mb memory */          /* allocate macroblock memory */
250    
251          pEnc->current->mbs =          pEnc->current->mbs =
252                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
# Line 239  Line 258 
258          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
259                  goto xvid_err_memory2;                  goto xvid_err_memory2;
260    
261          /* try to allocate image memory */          /* allocate interpolation image memory */
262    
263          if (pParam->global & XVID_GLOBAL_EXTRASTATS)      if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
264                  image_null(&pEnc->sOriginal);                  image_null(&pEnc->sOriginal);
265            image_null(&pEnc->sOriginal2);
266        }
267    
268          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
269          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
# Line 256  Line 277 
277          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
278          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
279    
280          if (pParam->global & XVID_GLOBAL_EXTRASTATS)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
281          {       if (image_create          if (image_create
282                          (&pEnc->sOriginal, pEnc->mbParam.edged_width,                          (&pEnc->sOriginal, pEnc->mbParam.edged_width,
283                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
284                          goto xvid_err_memory3;                          goto xvid_err_memory3;
285    
286            if (image_create
287                            (&pEnc->sOriginal2, pEnc->mbParam.edged_width,
288                             pEnc->mbParam.edged_height) < 0)
289                            goto xvid_err_memory3;
290          }          }
291    
292          if (image_create          if (image_create
# Line 311  Line 337 
337                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
338                  goto xvid_err_memory3;                  goto xvid_err_memory3;
339    
340            /* init bframe image buffers */
341    
342            pEnc->bframenum_head = 0;
343          pEnc->mbParam.global = pParam->global;          pEnc->bframenum_tail = 0;
344            pEnc->flush_bframes = 0;
345            pEnc->closed_bframenum = -1;
346    
347          /* B Frames specific init */          /* B Frames specific init */
         pEnc->mbParam.max_bframes = pParam->max_bframes;  
         pEnc->mbParam.bquant_ratio = pParam->bquant_ratio;  
         pEnc->mbParam.bquant_offset = pParam->bquant_offset;  
         pEnc->mbParam.frame_drop_ratio = pParam->frame_drop_ratio;  
348          pEnc->bframes = NULL;          pEnc->bframes = NULL;
349    
350          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
                 int n;  
351    
352                  pEnc->bframes =                  pEnc->bframes =
353                          xvid_malloc(pEnc->mbParam.max_bframes * sizeof(FRAMEINFO *),                          xvid_malloc(pEnc->mbParam.max_bframes * sizeof(FRAMEINFO *),
# Line 359  Line 383 
383                  }                  }
384          }          }
385    
386          pEnc->bframenum_head = 0;      /* init incoming frame queue */
387          pEnc->bframenum_tail = 0;          pEnc->queue_head = 0;
388          pEnc->flush_bframes = 0;          pEnc->queue_tail = 0;
389          pEnc->bframenum_dx50bvop = -1;          pEnc->queue_size = 0;
   
         pEnc->queue = NULL;  
   
   
         if (pEnc->mbParam.max_bframes > 0) {  
                 int n;  
390    
391                  pEnc->queue =                  pEnc->queue =
392                          xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),                  xvid_malloc((pEnc->mbParam.max_bframes+1) * sizeof(QUEUEINFO),
393                                                  CACHE_LINE);                                                  CACHE_LINE);
394    
395                  if (pEnc->queue == NULL)                  if (pEnc->queue == NULL)
396                          goto xvid_err_memory4;                          goto xvid_err_memory4;
397    
398                  for (n = 0; n < pEnc->mbParam.max_bframes; n++)          for (n = 0; n < pEnc->mbParam.max_bframes+1; n++)
399                          image_null(&pEnc->queue[n]);                  image_null(&pEnc->queue[n].image);
400    
401                  for (n = 0; n < pEnc->mbParam.max_bframes; n++) {  
402            for (n = 0; n < pEnc->mbParam.max_bframes+1; n++)
403            {
404                          if (image_create                          if (image_create
405                                  (&pEnc->queue[n], pEnc->mbParam.edged_width,                          (&pEnc->queue[n].image, pEnc->mbParam.edged_width,
406                                   pEnc->mbParam.edged_height) < 0)                                   pEnc->mbParam.edged_height) < 0)
407                                  goto xvid_err_memory5;                                  goto xvid_err_memory5;
408    
409                  }                  }
         }  
410    
         pEnc->queue_head = 0;  
         pEnc->queue_tail = 0;  
         pEnc->queue_size = 0;  
411    
412          pEnc->mbParam.m_stamp = 0;          /* timestamp stuff */
413    
414            pEnc->mbParam.m_stamp = 0;
415          pEnc->m_framenum = 0;          pEnc->m_framenum = 0;
416          pEnc->current->stamp = 0;          pEnc->current->stamp = 0;
417          pEnc->reference->stamp = 0;          pEnc->reference->stamp = 0;
418    
419          pParam->handle = (void *) pEnc;          /* other stuff */
420    
421          if (pParam->rc_bitrate) {          pEnc->iFrameNum = 0;
422                  RateControlInit(&pEnc->rate_control, pParam->rc_bitrate,          pEnc->fMvPrevSigma = -1;
423                                                  pParam->rc_reaction_delay_factor,  
424                                                  pParam->rc_averaging_period, pParam->rc_buffer,      create->handle = (void *) pEnc;
                                                 pParam->fbase * 1000 / pParam->fincr,  
                                                 pParam->max_quantizer, pParam->min_quantizer);  
         }  
425    
426          init_timer();          init_timer();
427    
428          return XVID_ERR_OK;      return 0;   /* ok */
429    
430          /*          /*
431           * 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 419  Line 433 
433    
434    xvid_err_memory5:    xvid_err_memory5:
435    
   
436          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
437            int i;
438    
439                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {                  for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {
440                          image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,                          image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,
441                                                    pEnc->mbParam.edged_height);                                                    pEnc->mbParam.edged_height);
442                  }                  }
443                  xvid_free(pEnc->queue);                  xvid_free(pEnc->queue);
# Line 432  Line 446 
446    xvid_err_memory4:    xvid_err_memory4:
447    
448          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
449            int i;
450    
451                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
452    
# Line 452  Line 467 
467    
468    xvid_err_memory3:    xvid_err_memory3:
469    
470          if (pEnc->mbParam.global & XVID_GLOBAL_EXTRASTATS)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
471          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,                  image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
472                                              pEnc->mbParam.edged_height);
473                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
474                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
475          }          }
476    
# Line 491  Line 508 
508    xvid_err_memory1:    xvid_err_memory1:
509          xvid_free(pEnc->current);          xvid_free(pEnc->current);
510          xvid_free(pEnc->reference);          xvid_free(pEnc->reference);
511    
512        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
513                xvid_free(pEnc->temp_dquants);
514        }
515    
516      xvid_err_memory0:
517        for (n=0; n<pEnc->num_plugins;n++) {
518            if (pEnc->plugins[n].func) {
519                pEnc->plugins[n].func(pEnc->plugins[n].param, XVID_PLG_DESTROY, 0, 0);
520            }
521        }
522        xvid_free(pEnc->plugins);
523    
524        xvid_free(pEnc->zones);
525    
526          xvid_free(pEnc);          xvid_free(pEnc);
527    
528          pParam->handle = NULL;          create->handle = NULL;
529    
530          return XVID_ERR_MEMORY;          return XVID_ERR_MEMORY;
531  }  }
# Line 502  Line 534 
534   * Encoder destruction   * Encoder destruction
535   *   *
536   * This function destroy the entire encoder structure created by a previous   * This function destroy the entire encoder structure created by a previous
537   * successful encoder_create call.   * successful enc_create call.
538   *   *
539   * Returned values (for now only one returned value) :   * Returned values (for now only one returned value) :
540   *    - XVID_ERR_OK     - no errors   *    - 0     - no errors
541   *   *
542   ****************************************************************************/   ****************************************************************************/
543    
544  int  int
545  encoder_destroy(Encoder * pEnc)  enc_destroy(Encoder * pEnc)
546  {  {
547          int i;          int i;
548    
         ENC_CHECK(pEnc);  
   
549          /* B Frames specific */          /* B Frames specific */
550          if (pEnc->mbParam.max_bframes > 0) {          if (pEnc->mbParam.max_bframes > 0) {
551    
552                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {                  for (i = 0; i < pEnc->mbParam.max_bframes+1; i++) {
553    
554                          image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,                          image_destroy(&pEnc->queue[i].image, pEnc->mbParam.edged_width,
555                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
556                  }                  }
557                  xvid_free(pEnc->queue);                  xvid_free(pEnc->queue);
# Line 570  Line 600 
600                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
601          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
602                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
603            image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
604                                      pEnc->mbParam.edged_height);
605    
606          if (pEnc->mbParam.global & XVID_GLOBAL_EXTRASTATS)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
607          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,                  image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
608                                              pEnc->mbParam.edged_height);
609                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
610                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
611          }          }
612    
# Line 584  Line 618 
618          xvid_free(pEnc->reference->mbs);          xvid_free(pEnc->reference->mbs);
619          xvid_free(pEnc->reference);          xvid_free(pEnc->reference);
620    
621        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
622            xvid_free(pEnc->temp_dquants);
623        }
624    
625    
626        if (pEnc->num_plugins>0) {
627            xvid_plg_destroy_t pdestroy;
628            memset(&pdestroy, 0, sizeof(xvid_plg_destroy_t));
629    
630            pdestroy.version = XVID_VERSION;
631            pdestroy.num_frames = pEnc->m_framenum;
632    
633            for (i=0; i<pEnc->num_plugins;i++) {
634                if (pEnc->plugins[i].func) {
635                    pEnc->plugins[i].func(pEnc->plugins[i].param, XVID_PLG_DESTROY, &pdestroy, 0);
636                }
637            }
638            xvid_free(pEnc->plugins);
639        }
640    
641        if (pEnc->num_plugins>0)
642            xvid_free(pEnc->zones);
643    
644          xvid_free(pEnc);          xvid_free(pEnc);
645    
646          return XVID_ERR_OK;          return 0;  /* ok */
647  }  }
648    
649    
650  static __inline void inc_frame_num(Encoder * pEnc)  /*
651      call the plugins
652      */
653    
654    static void call_plugins(Encoder * pEnc, FRAMEINFO * frame, IMAGE * original,
655                             int opt, int * type, int * quant, xvid_enc_stats_t * stats)
656  {  {
657          pEnc->current->stamp = pEnc->mbParam.m_stamp;   /* first frame is zero */      unsigned int i, j;
658          pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;      xvid_plg_data_t data;
659    
660        /* set data struct */
661    
662        memset(&data, 0, sizeof(xvid_plg_data_t));
663        data.version = XVID_VERSION;
664    
665        /* find zone */
666        for(i=0; i<pEnc->num_zones && pEnc->zones[i].frame<=frame->frame_num; i++) ;
667        data.zone = i>0 ? &pEnc->zones[i-1] : NULL;
668    
669        data.width = pEnc->mbParam.width;
670        data.height = pEnc->mbParam.height;
671        data.mb_width = pEnc->mbParam.mb_width;
672        data.mb_height = pEnc->mbParam.mb_height;
673        data.fincr = frame->fincr;
674        data.fbase = pEnc->mbParam.fbase;
675    
676        for (i=0; i<3; i++) {
677            data.min_quant[i] = pEnc->mbParam.min_quant[i];
678            data.max_quant[i] = pEnc->mbParam.max_quant[i];
679        }
680    
681        data.reference.csp = XVID_CSP_USER;
682        data.reference.plane[0] = pEnc->reference->image.y;
683        data.reference.plane[1] = pEnc->reference->image.u;
684        data.reference.plane[2] = pEnc->reference->image.v;
685        data.reference.stride[0] = pEnc->mbParam.edged_width;
686        data.reference.stride[1] = pEnc->mbParam.edged_width/2;
687        data.reference.stride[2] = pEnc->mbParam.edged_width/2;
688    
689        data.current.csp = XVID_CSP_USER;
690        data.current.plane[0] = frame->image.y;
691        data.current.plane[1] = frame->image.u;
692        data.current.plane[2] = frame->image.v;
693        data.current.stride[0] = pEnc->mbParam.edged_width;
694        data.current.stride[1] = pEnc->mbParam.edged_width/2;
695        data.current.stride[2] = pEnc->mbParam.edged_width/2;
696    
697        data.frame_num = frame->frame_num;
698    
699        if (opt == XVID_PLG_BEFORE) {
700            data.type = XVID_TYPE_AUTO;
701            data.quant = 0;
702    
703                    if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
704                data.dquant = pEnc->temp_dquants;
705                data.dquant_stride = pEnc->mbParam.mb_width;
706                            memset(data.dquant, 0, data.mb_width*data.mb_height);
707            }
708    
709            /* todo: [vol,vop,motion]_flags*/
710    
711        } else { /* XVID_PLG_AFTER */
712            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
713                data.original.csp = XVID_CSP_USER;
714                data.original.plane[0] = original->y;
715                data.original.plane[1] = original->u;
716                data.original.plane[2] = original->v;
717                data.original.stride[0] = pEnc->mbParam.edged_width;
718                data.original.stride[1] = pEnc->mbParam.edged_width/2;
719                data.original.stride[2] = pEnc->mbParam.edged_width/2;
720  }  }
721    
722            if ((frame->vol_flags & XVID_VOL_EXTRASTATS) ||
723                (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
724    
725  static __inline void                          data.sse_y =
726  queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)                              plane_sse( original->y, frame->image.y,
727  {                                                 pEnc->mbParam.edged_width, pEnc->mbParam.width,
728          if (pEnc->queue_size >= pEnc->mbParam.max_bframes)                                                 pEnc->mbParam.height);
729          {  
730                  DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");              data.sse_u =
731                  return;                  plane_sse( original->u, frame->image.u,
732                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
733                                                   pEnc->mbParam.height/2);
734    
735                            data.sse_v =
736                    plane_sse( original->v, frame->image.v,
737                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
738                                                   pEnc->mbParam.height/2);
739          }          }
740    
741          DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",          data.type = coding2type(frame->coding_type);
742                                  pEnc->bframenum_head, pEnc->bframenum_tail,          data.quant = frame->quant;
                                 pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);  
743    
744            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
745                data.dquant = pEnc->temp_dquants;
746                data.dquant_stride = pEnc->mbParam.mb_width;
747    
748                for (j=0; j<pEnc->mbParam.mb_height; j++)
749                for (i=0; i<pEnc->mbParam.mb_width; i++) {
750                    data.dquant[j*data.dquant_stride + i] = frame->mbs[j*pEnc->mbParam.mb_width + i].dquant;;
751                }
752            }
753    
754          start_timer();          data.vol_flags = frame->vol_flags;
755          if (image_input          data.vop_flags = frame->vop_flags;
756                  (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,          data.motion_flags = frame->motion_flags;
757                   pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))  
758                  return;          data.length = frame->length;
759          stop_conv_timer();          data.kblks = frame->sStat.kblks;
760            data.mblks = frame->sStat.mblks;
761            data.ublks = frame->sStat.ublks;
762    
763            if (stats) {
764                    stats->type = coding2type(frame->coding_type);
765                    stats->quant = frame->quant;
766                    stats->vol_flags = frame->vol_flags;
767                    stats->vop_flags = frame->vop_flags;
768                    stats->length = frame->length;
769                    stats->hlength = frame->length - (frame->sStat.iTextBits / 8);
770                    stats->kblks = frame->sStat.kblks;
771                    stats->mblks = frame->sStat.mblks;
772                    stats->ublks = frame->sStat.ublks;
773                stats->sse_y = data.sse_y;
774                stats->sse_u = data.sse_u;
775                stats->sse_v = data.sse_v;
776            }
777        }
778    
779          if ((pFrame->general & XVID_CHROMAOPT)) {      /* call plugins */
780                  image_chroma_optimize(&pEnc->queue[pEnc->queue_tail],      for (i=0; i<pEnc->num_plugins;i++) {
781                          pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);          emms();
782            if (pEnc->plugins[i].func) {
783                if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {
784                    continue;
785                }
786            }
787        }
788        emms();
789    
790        /* copy modified values back into frame*/
791        if (opt == XVID_PLG_BEFORE) {
792            *type = data.type;
793            *quant = data.quant > 0 ? data.quant : 2;   /* default */
794    
795            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
796                for (j=0; j<pEnc->mbParam.mb_height; j++)
797                for (i=0; i<pEnc->mbParam.mb_width; i++) {
798                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = data.dquant[j*data.mb_width + i];
799                }
800            }else{
801                for (j=0; j<pEnc->mbParam.mb_height; j++)
802                for (i=0; i<pEnc->mbParam.mb_width; i++) {
803                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;
804                }
805            }
806            /* todo: [vol,vop,motion]_flags*/
807        }
808          }          }
809    
810          pEnc->queue_size++;  
811          pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;  
812    
813    static __inline void inc_frame_num(Encoder * pEnc)
814    {
815        pEnc->current->frame_num = pEnc->m_framenum;
816            pEnc->current->stamp = pEnc->mbParam.m_stamp;   /* first frame is zero */
817    
818        pEnc->mbParam.m_stamp += pEnc->current->fincr;
819        pEnc->m_framenum++; /* debug ticker */
820  }  }
821    
822    static __inline void dec_frame_num(Encoder * pEnc)
823    {
824        pEnc->mbParam.m_stamp -= pEnc->mbParam.fincr;
825        pEnc->m_framenum--; /* debug ticker */
826    }
827    
828    
829    
830  static __inline void  static __inline void
831  set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)  set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
832  {  {
# Line 648  Line 848 
848    
849    
850    
 /* convert pFrame->intra to coding_type */  
 static int intra2coding_type(int intra)  
 {  
         if (intra < 0)  return -1;  
         if (intra == 1) return I_VOP;  
         if (intra == 2) return B_VOP;  
   
         return P_VOP;  
 }  
   
   
   
851  /*****************************************************************************  /*****************************************************************************
852   * IPB frame encoder entry point   * IPB frame encoder entry point
853   *   *
854   * Returned values :   * Returned values :
855   *    - XVID_ERR_OK     - no errors   *    - >0               - output bytes
856     *    - 0                - no output
857     *    - XVID_ERR_VERSION - wrong version passed to core
858     *    - XVID_ERR_END     - End of stream reached before end of coding
859   *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong   *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
860   *                        format   *                        format
861   ****************************************************************************/   ****************************************************************************/
862    
863    
864  int  int
865  encoder_encode_bframes(Encoder * pEnc,  enc_encode(Encoder * pEnc,
866                             XVID_ENC_FRAME * pFrame,                             xvid_enc_frame_t * xFrame,
867                             XVID_ENC_STATS * pResult)                             xvid_enc_stats_t * stats)
868  {  {
869          uint16_t x, y;          xvid_enc_frame_t * frame;
870            int type;
871          Bitstream bs;          Bitstream bs;
         uint32_t bits;  
         int mode = -1; /* Just to shut up compiler warning */  
872    
873          int input_valid = 1;          if (XVID_MAJOR(xFrame->version) != 1 || (stats && XVID_MAJOR(stats->version) != 1))     /* v1.x.x */
874          int bframes_count = 0;                  return XVID_ERR_VERSION;
875    
876          ENC_CHECK(pEnc);          xFrame->out_flags = 0;
         ENC_CHECK(pFrame);  
         ENC_CHECK(pFrame->image);  
877    
878          start_global_timer();          start_global_timer();
879            BitstreamInit(&bs, xFrame->bitstream, 0);
880    
         BitstreamInit(&bs, pFrame->bitstream, 0);  
   
 ipvop_loop:  
   
         /*  
          * bframe "flush" code  
          */  
   
         if ((pFrame->image == NULL || pEnc->flush_bframes)  
                 && (pEnc->bframenum_head < pEnc->bframenum_tail)) {  
   
                 if (pEnc->flush_bframes == 0) {  
                         /*  
                          * we have reached the end of stream without getting  
                          * a future reference frame... so encode last final  
                          * frame as a pframe  
                          */  
   
                         DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",  
                                 pEnc->bframenum_head, pEnc->bframenum_tail,  
                                 pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);  
   
                         pEnc->bframenum_tail--;  
                         SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);  
   
                         SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);  
   
                         FrameCodeP(pEnc, &bs, &bits, 1, 0);  
                         bframes_count = 0;  
   
                         BitstreamPadAlways(&bs);  
                         pFrame->length = BitstreamLength(&bs);  
                         pFrame->intra = 0;  
   
   
                         emms();  
   
                         if (pResult) {  
                                 pResult->quant = pEnc->current->quant;  
                                 pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);  
                                 pResult->kblks = pEnc->current->sStat.kblks;  
                                 pResult->mblks = pEnc->current->sStat.mblks;  
                                 pResult->ublks = pEnc->current->sStat.ublks;  
                         }  
   
                         return XVID_ERR_OK;  
                 }  
   
   
                 DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) 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);  
   
                 FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);  
                 pEnc->bframenum_head++;  
   
                 BitstreamPadAlways(&bs);  
                 pFrame->length = BitstreamLength(&bs);  
                 pFrame->intra = 2;  
   
                 if (pResult) {  
                         pResult->quant = pEnc->current->quant;  
                         pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);  
                         pResult->kblks = pEnc->current->sStat.kblks;  
                         pResult->mblks = pEnc->current->sStat.mblks;  
                         pResult->ublks = pEnc->current->sStat.ublks;  
                 }  
   
                 if (input_valid)  
                         queue_image(pEnc, pFrame);  
   
                 emms();  
   
                 return XVID_ERR_OK;  
         }  
881    
882          if (pEnc->bframenum_head > 0) {          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
883                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;           * enqueue image to the encoding-queue
884             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
                 /* write an empty marker to the bitstream.  
   
                    for divx5 decoder compatibility, this marker must consist  
                    of a not-coded p-vop, with a time_base of zero, and time_increment  
                    indentical to the future-referece frame.  
                 */  
   
                 if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED)) {  
                         int tmp;  
   
                         DPRINTF(DPRINTF_DEBUG,"*** EMPTY 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);  
   
   
                         tmp = pEnc->current->seconds;  
                         pEnc->current->seconds = 0; /* force time_base = 0 */  
   
                         BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);  
                         pEnc->current->seconds = tmp;  
   
                         BitstreamPadAlways(&bs);  
                         pFrame->length = BitstreamLength(&bs);  
                         pFrame->intra = 4;  
   
                         if (pResult) {  
                                 pResult->quant = pEnc->current->quant;  
                                 pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);  
                                 pResult->kblks = pEnc->current->sStat.kblks;  
                                 pResult->mblks = pEnc->current->sStat.mblks;  
                                 pResult->ublks = pEnc->current->sStat.ublks;  
                         }  
   
                         if (input_valid)  
                                 queue_image(pEnc, pFrame);  
   
                         emms();  
   
                         return XVID_ERR_OK;  
                 }  
         }  
   
   
 bvop_loop:  
   
         if (pEnc->bframenum_dx50bvop != -1)  
         {  
   
                 SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);  
                 SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);  
   
                 if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {  
                         image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");  
                 }  
885    
886                  if (input_valid)          if (xFrame->input.csp != XVID_CSP_NULL)
887                  {                  {
888                          queue_image(pEnc, pFrame);                  QUEUEINFO * q = &pEnc->queue[pEnc->queue_tail];
                         input_valid = 0;  
                 }  
   
         } else if (input_valid) {  
   
                 SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);  
889    
890                  start_timer();                  start_timer();
891                  if (image_input                  if (image_input
892                          (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,                          (&q->image, pEnc->mbParam.width, pEnc->mbParam.height,
893                          pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))                          pEnc->mbParam.edged_width, (uint8_t**)xFrame->input.plane, xFrame->input.stride,
894                            xFrame->input.csp, xFrame->vol_flags & XVID_VOL_INTERLACING))
895                  {                  {
896                          emms();                          emms();
897                          return XVID_ERR_FORMAT;                          return XVID_ERR_FORMAT;
898                  }                  }
899                  stop_conv_timer();                  stop_conv_timer();
900    
901                  if ((pFrame->general & XVID_CHROMAOPT)) {                  if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
902                          image_chroma_optimize(&pEnc->current->image,                          image_chroma_optimize(&q->image,
903                                  pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);                                  pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
904                  }                  }
905    
906                  /* queue input frame, and dequue next image */                  q->frame = *xFrame;
                 if (pEnc->queue_size > 0)  
                 {  
                         image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);  
                         if (pEnc->queue_head != pEnc->queue_tail)  
                         {  
                                 image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);  
                         }  
                         pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;  
                         pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;  
                 }  
   
         } else if (pEnc->queue_size > 0) {  
   
                 SWAP(FRAMEINFO *, 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 */  
   
                 if (BitstreamPos(&bs) == 0) {  
   
                         DPRINTF(DPRINTF_DEBUG,"*** SKIP 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);  
   
                         /* That disabled line of code was supposed to inform VirtualDub  
                          * that the frame was a dummy delay frame - now disabled (thx god :-)  
                          */  
                         /* BitstreamPutBits(&bs, 0x7f, 8); */  
                         pFrame->intra = 5;  
   
                         if (pResult) {  
                                 /*  
                                  * We must decide what to put there because i know some apps  
                                  * are storing statistics about quantizers and just do  
                                  * stats[quant]++ or stats[quant-1]++  
                                  * transcode is one of these app with its 2pass module  
                                  */  
   
                                 /*  
                                  * For now i prefer 31 than 0 that could lead to a segfault  
                                  * in transcode  
                                  */  
                                 pResult->quant = 31;  
907    
908                                  pResult->hlength = 0;                  if (xFrame->quant_intra_matrix)
909                                  pResult->kblks = 0;                  {
910                                  pResult->mblks = 0;                          memcpy(q->quant_intra_matrix, xFrame->quant_intra_matrix, sizeof(xFrame->quant_intra_matrix));
911                                  pResult->ublks = 0;                          q->frame.quant_intra_matrix = q->quant_intra_matrix;
912                          }                          }
913    
914                  } else {                  if (xFrame->quant_inter_matrix)
915                    {
916                          if (pResult) {                          memcpy(q->quant_inter_matrix, xFrame->quant_inter_matrix, sizeof(xFrame->quant_inter_matrix));
917                                  pResult->quant = pEnc->current->quant;                          q->frame.quant_inter_matrix = q->quant_inter_matrix;
                                 pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);  
                                 pResult->kblks = pEnc->current->sStat.kblks;  
                                 pResult->mblks = pEnc->current->sStat.mblks;  
                                 pResult->ublks = pEnc->current->sStat.ublks;  
918                          }                          }
919    
920                    pEnc->queue_tail = (pEnc->queue_tail + 1) % (pEnc->mbParam.max_bframes+1);
921                    pEnc->queue_size++;
922                  }                  }
923    
                 pFrame->length = BitstreamLength(&bs);  
924    
925                  emms();          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
926             * bframe flush code
927                  return XVID_ERR_OK;           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
         }  
   
         pEnc->flush_bframes = 0;  
928    
929          emms();  repeat:
930    
931          /* only inc frame num, adapt quant, etc. if we havent seen it before */          if (pEnc->flush_bframes)
         if (pEnc->bframenum_dx50bvop < 0 )  
932          {          {
933                  mode = intra2coding_type(pFrame->intra);                  if (pEnc->bframenum_head < pEnc->bframenum_tail) {
                 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;  
   
                 /* ToDo : dynamic fcode (in both directions) */  
                 pEnc->current->fcode = pEnc->mbParam.m_fcode;  
                 pEnc->current->bcode = pEnc->mbParam.m_fcode;  
934    
935                  inc_frame_num(pEnc);                          DPRINTF(XVID_DEBUG_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
936                                            pEnc->bframenum_head, pEnc->bframenum_tail,
937                                            pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
938    
939                  if (pFrame->general & XVID_EXTRASTATS)              if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
940                  {       image_copy(&pEnc->sOriginal, &pEnc->current->image,                                  image_copy(&pEnc->sOriginal2, &pEnc->bframes[pEnc->bframenum_head]->image,
941                                     pEnc->mbParam.edged_width, pEnc->mbParam.height);                                     pEnc->mbParam.edged_width, pEnc->mbParam.height);
942                  }                  }
943    
944                  emms();                          FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);
945                call_plugins(pEnc, pEnc->bframes[pEnc->bframenum_head], &pEnc->sOriginal2, XVID_PLG_AFTER, 0, 0, stats);
946                            pEnc->bframenum_head++;
947    
948                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {                          goto done;
                         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);  
949                  }                  }
950    
951          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%                  /* write an empty marker to the bitstream.
          * Luminance masking  
          * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */  
   
                 if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {  
                         int *temp_dquants =  
                                 (int *) xvid_malloc(pEnc->mbParam.mb_width *  
                                                                 pEnc->mbParam.mb_height * sizeof(int),  
                                                                 CACHE_LINE);  
   
                         pEnc->current->quant =  
                                 adaptive_quantization(pEnc->current->image.y,  
                                                                   pEnc->mbParam.edged_width, temp_dquants,  
                                                                   pEnc->current->quant, pEnc->current->quant,  
                                                                   2 * pEnc->current->quant,  
                                                                   pEnc->mbParam.mb_width,  
                                                                   pEnc->mbParam.mb_height);  
   
                         for (y = 0; y < pEnc->mbParam.mb_height; y++) {  
   
 #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)  
952    
953                                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                     for divx5 decoder compatibility, this marker must consist
954                                          MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];                     of a not-coded p-vop, with a time_base of zero, and time_increment
955                       indentical to the future-referece frame.
956                    */
957    
958                                          pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];                  if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED && pEnc->bframenum_tail > 0)) {
959                                  }                          int tmp;
960                            int bits;
961    
962  #undef OFFSET                          DPRINTF(XVID_DEBUG_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
963                          }                                  pEnc->bframenum_head, pEnc->bframenum_tail,
964                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
965    
966                          xvid_free(temp_dquants);                          bits = BitstreamPos(&bs);
                 }  
967    
968          }                          tmp = pEnc->current->seconds;
969                            pEnc->current->seconds = 0; /* force time_base = 0 */
970    
971          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
972           * ivop/pvop/bvop selection                          BitstreamPad(&bs);
973           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */                          pEnc->current->seconds = tmp;
         pEnc->iFrameNum++;  
974    
975          if (pEnc->iFrameNum == 0 || pEnc->bframenum_dx50bvop >= 0 ||                          /* add the not-coded length to the reference frame size */
976                  (mode < 0 && pEnc->mbParam.iMaxKeyInterval > 0 &&                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;
977                          pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))              call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
         {  
                 mode = I_VOP;  
         }else{  
                 mode = MEanalysis(&pEnc->reference->image, pEnc->current,  
                                         &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,  
                                         (mode < 0) ? pEnc->iFrameNum : 0,  
                                         bframes_count++);  
         }  
978    
979          if (mode == I_VOP) {              /* flush complete: reset counters */
980                  /*                  pEnc->flush_bframes = 0;
981                   * This will be coded as an Intra Frame                      pEnc->bframenum_head = pEnc->bframenum_tail = 0;
982                   */                          goto done;
                 if ((pEnc->current->global_flags & XVID_QUARTERPEL))  
                         pEnc->mbParam.m_quarterpel = 1;  
                 else  
                         pEnc->mbParam.m_quarterpel = 0;  
983    
984                  if (pEnc->current->global_flags & XVID_MPEGQUANT) pEnc->mbParam.m_quant_type = MPEG4_QUANT;                  }
985    
986                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {          /* flush complete: reset counters */
987                          if (pFrame->quant_intra_matrix != NULL)                  pEnc->flush_bframes = 0;
988                                  set_intra_matrix(pFrame->quant_intra_matrix);                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
                         if (pFrame->quant_inter_matrix != NULL)  
                                 set_inter_matrix(pFrame->quant_inter_matrix);  
989                  }                  }
990    
991            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
992             * dequeue frame from the encoding queue
993             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
994    
995            if (pEnc->queue_size == 0)              /* empty */
996            {
997                    if (xFrame->input.csp == XVID_CSP_NULL) /* no futher input */
998                    {
999    
1000                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",              DPRINTF(XVID_DEBUG_DEBUG,"*** FINISH bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1001                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1002                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1003    
1004                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {              if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0) {
1005                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");                  call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1006                  }                  }
1007    
1008                  /* when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe */              /* if the very last frame is to be b-vop, we must change it to a p-vop */
1009                if (pEnc->bframenum_tail > 0) {
                 if ((pEnc->mbParam.global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {  
1010    
1011                                    SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
1012                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
1013                          pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1014    
1015                          SWAP(FRAMEINFO *, pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);                                  /* convert B-VOP to P-VOP */
1016                          if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
1017                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");  
1018                    if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1019                                image_copy(&pEnc->sOriginal, &pEnc->current->image,
1020                                       pEnc->mbParam.edged_width, pEnc->mbParam.height);
1021                          }                          }
                         FrameCodeP(pEnc, &bs, &bits, 1, 0);  
                         bframes_count = 0;  
                         pFrame->intra = 0;  
1022    
1023                  } else {                  DPRINTF(XVID_DEBUG_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1024                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1025                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1026    
1027                          FrameCodeI(pEnc, &bs, &bits);                  FrameCodeP(pEnc, &bs, 1, 0);
                         bframes_count = 0;  
                         pFrame->intra = 1;  
1028    
                         pEnc->bframenum_dx50bvop = -1;  
                 }  
1029    
1030                    if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail==0) {
1031                        call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1032                    }else{
1033                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
1034                        goto done;
1035                    }
1036                }
1037                DPRINTF(XVID_DEBUG_DEBUG, "*** END\n");
1038    
1039                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {                          emms();
1040                          BitstreamPadAlways(&bs);                          return XVID_ERR_END;    /* end of stream reached */
1041                          input_valid = 0;                  }
1042                          goto ipvop_loop;                  goto done;      /* nothing to encode yet; encoder lag */
1043                  }                  }
1044    
1045                  /*          /* the current FRAME becomes the reference */
1046                   * NB : sequences like "IIBB" decode fine with msfdam but,          SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
                  *      go screwy with divx 5.00  
                  */  
         } else if (mode == P_VOP || mode == S_VOP || pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {  
                 /*  
                  * This will be coded as a Predicted Frame  
                  */  
1047    
1048                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",          /* remove frame from encoding-queue (head), and move it into the current */
1049                                  pEnc->bframenum_head, pEnc->bframenum_tail,          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
1050                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);          frame = &pEnc->queue[pEnc->queue_head].frame;
1051            pEnc->queue_head = (pEnc->queue_head + 1) % (pEnc->mbParam.max_bframes+1);
1052            pEnc->queue_size--;
1053    
1054                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {  
1055                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1056             * init pEnc->current fields
1057             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1058    
1059        pEnc->current->fincr = pEnc->mbParam.fincr>0 ? pEnc->mbParam.fincr : frame->fincr;
1060        inc_frame_num(pEnc);
1061        pEnc->current->vol_flags = pEnc->mbParam.vol_flags;
1062        pEnc->current->vop_flags = frame->vop_flags;
1063            pEnc->current->motion_flags = frame->motion;
1064            pEnc->current->fcode = pEnc->mbParam.m_fcode;
1065            pEnc->current->bcode = pEnc->mbParam.m_fcode;
1066    
1067    
1068        if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
1069                image_chroma_optimize(&pEnc->current->image,
1070                        pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
1071                  }                  }
1072    
1073                  FrameCodeP(pEnc, &bs, &bits, 1, 0);          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1074                  bframes_count = 0;           * frame type & quant selection
1075                  pFrame->intra = 0;           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1076                  pEnc->flush_bframes = 1;  
1077            type = frame->type;
1078            pEnc->current->quant = frame->quant;
1079    
1080                  if ((pEnc->mbParam.global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {      call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_BEFORE, &type, &pEnc->current->quant, stats);
1081                          BitstreamPadAlways(&bs);  
1082                          input_valid = 0;      if (type > 0){      /* XVID_TYPE_?VOP */
1083                          goto ipvop_loop;                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */
1084        } else{             /* XVID_TYPE_AUTO */
1085                    if (pEnc->iFrameNum == 0 || (pEnc->mbParam.iMaxKeyInterval > 0 && pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval)){
1086                            pEnc->iFrameNum = 0;
1087                            type = I_VOP;
1088                    }else{
1089                            type = MEanalysis(&pEnc->reference->image, pEnc->current,
1090                                            &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
1091                                            pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold);
1092                    }
1093                  }                  }
1094    
1095          } else {        /* mode == B_VOP */      /* bframes buffer overflow check */
1096                  /*      if (type == B_VOP && pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
1097                   * This will be coded as a Bidirectional Frame          type = P_VOP;
1098                   */      }
1099    
1100                  if ((pEnc->mbParam.global & XVID_GLOBAL_DEBUG)) {          pEnc->iFrameNum++;
1101    
1102            if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1103                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
1104                            "%i  st:%i  if:%i", pEnc->current->frame_num, pEnc->current->stamp, pEnc->iFrameNum);
1105            }
1106    
1107            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1108             * encode this frame as a b-vop
1109         * (we dont encode here, rather we store the frame in the bframes queue, to be encoded later)
1110             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1111            if (type == B_VOP) {
1112                    if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1113                          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");
1114                  }                  }
1115    
1116                  if (pFrame->bquant < 1) {                  if (frame->quant < 1) {
1117                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *                          pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1118                                  pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;                                  pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1119    
1120                  } else {                  } else {
1121                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = frame->quant;
1122                  }                  }
1123    
1124                  if (pEnc->current->quant < 1)                  if (pEnc->current->quant < 1)
# Line 1125  Line 1126 
1126                  else if (pEnc->current->quant > 31)                  else if (pEnc->current->quant > 31)
1127              pEnc->current->quant = 31;              pEnc->current->quant = 31;
1128    
1129                  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",
1130                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1131                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1132    
# Line 1135  Line 1136 
1136    
1137                  pEnc->bframenum_tail++;                  pEnc->bframenum_tail++;
1138    
1139                  /* bframe report by koepi */                  goto repeat;
                 pFrame->intra = 2;  
                 pFrame->length = 0;  
   
                 input_valid = 0;  
                 goto bvop_loop;  
         }  
   
         BitstreamPadAlways(&bs);  
         pFrame->length = BitstreamLength(&bs);  
   
         if (pResult) {  
                 pResult->quant = pEnc->current->quant;  
                 pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);  
                 pResult->kblks = pEnc->current->sStat.kblks;  
                 pResult->mblks = pEnc->current->sStat.mblks;  
                 pResult->ublks = pEnc->current->sStat.ublks;  
   
                 if (pFrame->general & XVID_EXTRASTATS)  
                 {       pResult->sse_y =  
                                 plane_sse( pEnc->sOriginal.y, pEnc->current->image.y,  
                                                    pEnc->mbParam.edged_width, pEnc->mbParam.width,  
                                                    pEnc->mbParam.height);  
   
                         pResult->sse_u =  
                                 plane_sse( pEnc->sOriginal.u, pEnc->current->image.u,  
                                                    pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,  
                                                    pEnc->mbParam.height/2);  
   
                         pResult->sse_v =  
                                 plane_sse( pEnc->sOriginal.v, pEnc->current->image.v,  
                                                    pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,  
                                                    pEnc->mbParam.height/2);  
                 }  
1140          }          }
1141    
         emms();  
   
         if (pFrame->quant == 0) {  
                 RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,  
                                                   pFrame->length, pFrame->intra);  
         }  
1142    
1143          stop_global_timer();                  DPRINTF(XVID_DEBUG_DEBUG,"*** XXXXXX bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1144          write_timer();                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1145                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1146    
1147          emms();      /* for unpacked bframes, output the stats for the last encoded frame */
1148          return XVID_ERR_OK;      if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0)
1149        {
1150            if (pEnc->current->stamp > 0) {
1151                call_plugins(pEnc, pEnc->reference, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1152            }
1153                    else
1154                            stats->type = XVID_TYPE_NOTHING;
1155  }  }
1156    
1157            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1158             * closed-gop
1159         * if the frame prior to an iframe is scheduled as a bframe, we must change it to a pframe
1160         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1161    
1162        if (type == I_VOP && (pEnc->mbParam.global_flags & XVID_GLOBAL_CLOSED_GOP) && pEnc->bframenum_tail > 0) {
1163    
1164  /*****************************************************************************                  /* place this frame back on the encoding-queue (head) */
1165   * "original" IP frame encoder entry point                  /* we will deal with it next time */
1166   *          dec_frame_num(pEnc);
1167   * Returned values :          pEnc->iFrameNum--;
  *    - XVID_ERR_OK     - no errors  
  *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong  
  *                        format  
  ****************************************************************************/  
   
 int  
 encoder_encode(Encoder * pEnc,  
                            XVID_ENC_FRAME * pFrame,  
                            XVID_ENC_STATS * pResult)  
 {  
         uint16_t x, y;  
         Bitstream bs;  
         uint32_t bits;  
         uint16_t write_vol_header = 0;  
1168    
1169          float psnr;          pEnc->queue_head = (pEnc->queue_head + (pEnc->mbParam.max_bframes+1) - 1) % (pEnc->mbParam.max_bframes+1);
1170          char temp[128];          pEnc->queue_size++;
1171                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
1172    
1173          start_global_timer();                  /* grab the last frame from the bframe-queue */
1174    
1175          ENC_CHECK(pEnc);                  pEnc->bframenum_tail--;
1176          ENC_CHECK(pFrame);                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
         ENC_CHECK(pFrame->bitstream);  
         ENC_CHECK(pFrame->image);  
1177    
1178          SWAP(FRAMEINFO *, pEnc->current, pEnc->reference);                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1179                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
1180                    }
1181    
1182          pEnc->current->global_flags = pFrame->general;                  /* convert B-VOP quant to P-VOP */
1183          pEnc->current->motion_flags = pFrame->motion;                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
1184          pEnc->mbParam.hint = &pFrame->hint;          type = P_VOP;
1185        }
1186    
         inc_frame_num(pEnc);  
1187    
1188          /* disable alternate scan flag if interlacing is not enabled */          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1189          if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&           * encode this frame as an i-vop
1190                  !(pEnc->current->global_flags & XVID_INTERLACING))       * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
         {  
                 pEnc->current->global_flags -= XVID_ALTERNATESCAN;  
         }  
1191    
1192          start_timer();          if (type == I_VOP) {
         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();  
1193    
1194          if ((pFrame->general & XVID_CHROMAOPT)) {                  DPRINTF(XVID_DEBUG_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1195                  image_chroma_optimize(&pEnc->current->image,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1196                          pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
         }  
1197    
1198          if (pFrame->general & XVID_EXTRASTATS)                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1199          {       image_copy(&pEnc->sOriginal, &pEnc->current->image,                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
                                    pEnc->mbParam.edged_width, pEnc->mbParam.height);  
1200          }          }
1201    
         emms();  
1202    
1203          BitstreamInit(&bs, pFrame->bitstream, 0);                  /* ---- update vol flags at IVOP ----------- */
1204                    pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
1205    
1206          if (pFrame->quant == 0) {          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {
1207                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                          if (frame->quant_intra_matrix != NULL)
1208          } else {                                  set_intra_matrix(frame->quant_intra_matrix);
1209                  pEnc->current->quant = pFrame->quant;                          if (frame->quant_inter_matrix != NULL)
1210                                    set_inter_matrix(frame->quant_inter_matrix);
1211          }          }
1212    
1213          if ((pEnc->current->global_flags & XVID_QUARTERPEL))          /* prevent vol/vop misuse */
                 pEnc->mbParam.m_quarterpel = 1;  
         else  
                 pEnc->mbParam.m_quarterpel = 0;  
1214    
1215          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if (!(pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1216                  int *temp_dquants =              pEnc->current->vop_flags &= ~XVID_VOP_REDUCED;
                         (int *) xvid_malloc(pEnc->mbParam.mb_width *  
                                                                 pEnc->mbParam.mb_height * sizeof(int),  
                                                                 CACHE_LINE);  
1217    
1218                  pEnc->current->quant =          if (!(pEnc->current->vol_flags & XVID_VOL_INTERLACING))
1219                          adaptive_quantization(pEnc->current->image.y,              pEnc->current->vop_flags &= ~(XVID_VOP_TOPFIELDFIRST|XVID_VOP_ALTERNATESCAN);
                                                                   pEnc->mbParam.edged_width, temp_dquants,  
                                                                   pEnc->current->quant, pEnc->current->quant,  
                                                                   2 * pEnc->current->quant,  
                                                                   pEnc->mbParam.mb_width,  
                                                                   pEnc->mbParam.mb_height);  
1220    
1221                  for (y = 0; y < pEnc->mbParam.mb_height; y++) {                  /* ^^^------------------------ */
1222    
1223  #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1224                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1225                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
1226            }
1227    
1228                          for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  FrameCodeI(pEnc, &bs);
1229                    xFrame->out_flags |= XVID_KEYFRAME;
1230    
1231            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1232             * encode this frame as an p-vop
1233         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1234    
1235                                  MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];      } else { /* (type == P_VOP || type == S_VOP) */
1236    
1237                    DPRINTF(XVID_DEBUG_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i\n",
1238                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1239                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1240    
1241                                  pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1242                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1243                          }                          }
1244    
1245  #undef OFFSET          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1246                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1247                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
1248                  }                  }
1249    
1250                  xvid_free(temp_dquants);                  FrameCodeP(pEnc, &bs, 1, 0);
1251          }          }
1252    
         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;  
1253    
1254                  matrix1_changed = matrix2_changed = 0;      /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1255             * on next enc_encode call we must flush bframes
1256             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1257    
1258                  if (pEnc->mbParam.m_quant_type != MPEG4_QUANT)  done_flush:
                         write_vol_header = 1;  
1259    
1260                  pEnc->mbParam.m_quant_type = MPEG4_QUANT;      pEnc->flush_bframes = 1;
1261    
1262                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {          /* packed & queued_bframes: dont bother outputting stats here, we do so after the flush */
1263                          if (pFrame->quant_intra_matrix != NULL)          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1264                                  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;  
1265          }          }
1266    
1267          if (pFrame->intra < 0) {      /* packed or no-bframes or no-bframes-queued: output stats */
1268                  if ((pEnc->iFrameNum == -1)      if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) || pEnc->mbParam.max_bframes == 0 ) {
1269                          || ((pEnc->mbParam.iMaxKeyInterval > 0)          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
                                 && (pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))) {  
                         pFrame->intra = FrameCodeI(pEnc, &bs, &bits);  
                 } else {  
                         pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);  
                 }  
         } else {  
                 if (pFrame->intra == 1) {  
                         pFrame->intra = FrameCodeI(pEnc, &bs, &bits);  
                 } else {  
                         pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, write_vol_header);  
1270                  }                  }
1271    
1272          }          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1273             * done; return number of bytes consumed
1274             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1275    
1276          /* Relic from OpenDivX - now disabled  done:
         BitstreamPutBits(&bs, 0xFFFF, 16);  
         BitstreamPutBits(&bs, 0xFFFF, 16);  
         */  
1277    
1278          BitstreamPadAlways(&bs);          stop_global_timer();
1279          pFrame->length = BitstreamLength(&bs);          write_timer();
1280    
1281          if (pResult) {          emms();
1282                  pResult->quant = pEnc->current->quant;          return BitstreamLength(&bs);
                 pResult->hlength = pFrame->length - (pEnc->current->sStat.iTextBits / 8);  
                 pResult->kblks = pEnc->current->sStat.kblks;  
                 pResult->mblks = pEnc->current->sStat.mblks;  
                 pResult->ublks = pEnc->current->sStat.ublks;  
1283          }          }
1284    
         emms();  
1285    
1286          if (pFrame->quant == 0) {  static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)
                 RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,  
                                                   pFrame->length, pFrame->intra);  
         }  
         if (pFrame->general & XVID_EXTRASTATS)  
1287          {          {
1288                  psnr =      unsigned int i,j;
1289                          image_psnr(&pEnc->sOriginal, &pEnc->current->image,      int quant = frame->quant;
                                            pEnc->mbParam.edged_width, pEnc->mbParam.width,  
                                            pEnc->mbParam.height);  
1290    
1291                  snprintf(temp, 127, "PSNR: %f\n", psnr);      for (j=0; j<pParam->mb_height; j++)
1292        for (i=0; i<pParam->mb_width; i++) {
1293            MACROBLOCK * pMB = &frame->mbs[j*pParam->mb_width + i];
1294            quant += pMB->dquant;
1295            if (quant > 31)
1296                            quant = 31;
1297                    if (quant < 1)
1298                            quant = 1;
1299            pMB->quant = quant;
1300          }          }
   
         pEnc->iFrameNum++;  
   
         stop_global_timer();  
         write_timer();  
   
         return XVID_ERR_OK;  
1301  }  }
1302    
1303    
# Line 1393  Line 1314 
1314          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;
1315          pMB->sad16 = 0;          pMB->sad16 = 0;
1316    
1317          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if (pMB->dquant != 0) {
                 if (pMB->dquant != NO_CHANGE) {  
1318                          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) ?  
                 (uint32_t)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) ?  
                                 (uint32_t)bhint->mode : BitstreamGetBits(&bs, MODEBITS);  
   
                         pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;  
                         pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;  
   
                         if (pMB->mode == MODE_INTER) {  
                                 tmp.x = (hint->rawhints) ?  
                                         bhint->mvs[0].x : (int)BitstreamGetBits(&bs, length);  
                                 tmp.y = (hint->rawhints) ?  
                                         bhint->mvs[0].y : (int)BitstreamGetBits(&bs, length);  
                                 tmp.x -= (tmp.x >= high) ? high * 2 : 0;  
                                 tmp.y -= (tmp.y >= high) ? high * 2 : 0;  
   
                                 pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,0);  
   
                                 for (vec = 0; vec < 4; ++vec) {  
                                         pMB->mvs[vec].x = tmp.x;  
                                         pMB->mvs[vec].y = tmp.y;  
                                         pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;  
                                         pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;  
                                 }  
                         } else if (pMB->mode == MODE_INTER4V) {  
                                 for (vec = 0; vec < 4; ++vec) {  
                                         tmp.x = (hint->rawhints) ?  
                                                 bhint->mvs[vec].x : (int)BitstreamGetBits(&bs, length);  
                                         tmp.y = (hint->rawhints) ?  
                                                 bhint->mvs[vec].y : (int)BitstreamGetBits(&bs, length);  
                                         tmp.x -= (tmp.x >= high) ? high * 2 : 0;  
                                         tmp.y -= (tmp.y >= high) ? high * 2 : 0;  
   
                                         pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,vec);  
   
                                         pMB->mvs[vec].x = tmp.x;  
                                         pMB->mvs[vec].y = tmp.y;  
                                         pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;  
                                         pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;  
                                 }  
                         } else                          /* intra / stuffing / not_coded */  
                         {  
                                 for (vec = 0; vec < 4; ++vec) {  
                                         pMB->mvs[vec].x = pMB->mvs[vec].y = 0;  
                                 }  
                         }  
   
                         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;  
                                 }  
                         }  
                 }  
         }  
 }  
   
   
 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) {  
                         BitstreamPadAlways(&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);  
                                         }  
                                 }  
                         }  
1319                  }                  }
1320          }          }
1321    
         if (!hint->rawhints) {  
                 BitstreamPad(&bs);  
                 hint->hintlength = BitstreamLength(&bs);  
         }  
 }  
1322    
1323    
1324  static int  static int
1325  FrameCodeI(Encoder * pEnc,  FrameCodeI(Encoder * pEnc,
1326                     Bitstream * bs,                     Bitstream * bs)
                    uint32_t * pBits)  
1327  {  {
1328        int bits = BitstreamPos(bs);
1329          int mb_width = pEnc->mbParam.mb_width;          int mb_width = pEnc->mbParam.mb_width;
1330          int mb_height = pEnc->mbParam.mb_height;          int mb_height = pEnc->mbParam.mb_height;
1331    
# Line 1612  Line 1334 
1334    
1335          uint16_t x, y;          uint16_t x, y;
1336    
1337          if ((pEnc->current->global_flags & XVID_REDUCED))          if ((pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1338          {          {
1339                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pEnc->mbParam.width + 31) / 32;
1340                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pEnc->mbParam.height + 31) / 32;
# Line 1626  Line 1348 
1348                  stop_edges_timer();                  stop_edges_timer();
1349          }          }
1350    
         pEnc->iFrameNum = 0;  
1351          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1352          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;  
1353          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1354    
1355          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1356    
1357            BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1358    
1359          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1360    
1361          BitstreamPadAlways(bs);          BitstreamPadAlways(bs);
1362          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1363    
         *pBits = BitstreamPos(bs);  
   
1364          pEnc->current->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1365          pEnc->current->sStat.kblks = mb_width * mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
1366          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;          pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
# Line 1660  Line 1380 
1380                          stop_prediction_timer();                          stop_prediction_timer();
1381    
1382                          start_timer();                          start_timer();
1383                          if (pEnc->current->global_flags & XVID_GREYSCALE)                          if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)
1384                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1385                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1386                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
# Line 1669  Line 1389 
1389                          stop_coding_timer();                          stop_coding_timer();
1390                  }                  }
1391    
1392          if ((pEnc->current->global_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1393          {          {
1394                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1395                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1396                          16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);                          16, 0);
1397          }          }
1398          emms();          emms();
1399    
1400          *pBits = BitstreamPos(bs) - *pBits;  /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1401    #if 0
1402            /* for divx5 compatibility, we must always pad between the packed p and b frames */
1403            if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1404    #endif
1405                    BitstreamPadAlways(bs);
1406    #if 0
1407            else
1408                    BitstreamPad(bs);
1409    #endif
1410        pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1411    
1412          pEnc->fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
1413          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1414    
1415        /* XXX: hinted me
1416          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1417                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1418          }          }*/
1419    
1420          return 1;                                       /* intra */          return 1;                                       /* intra */
1421  }  }
# Line 1697  Line 1429 
1429  static int  static int
1430  FrameCodeP(Encoder * pEnc,  FrameCodeP(Encoder * pEnc,
1431                     Bitstream * bs,                     Bitstream * bs,
                    uint32_t * pBits,  
1432                     bool force_inter,                     bool force_inter,
1433                     bool vol_header)                     bool vol_header)
1434  {  {
1435          float fSigma;          float fSigma;
1436        int bits = BitstreamPos(bs);
1437    
1438          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1439          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
# Line 1717  Line 1449 
1449          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1450          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1451    
1452          if ((pEnc->current->global_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1453          {          {
1454                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pEnc->mbParam.width + 31) / 32;
1455                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pEnc->mbParam.height + 31) / 32;
# Line 1731  Line 1463 
1463    
1464          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1465          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1466          pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;          /* pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel; */
1467          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1468    
1469          if (!force_inter)          if (!force_inter)
# Line 1739  Line 1471 
1471          else          else
1472                  iLimit = mb_width * mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1473    
1474          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->vop_flags & XVID_VOP_HALFPEL)) {
1475                  start_timer();                  start_timer();
1476                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1477                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1478                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1479                                                    pEnc->mbParam.m_quarterpel,                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL),
1480                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1481                  stop_inter_timer();                  stop_inter_timer();
1482          }          }
1483    
1484          pEnc->current->coding_type = P_VOP;          pEnc->current->coding_type = P_VOP;
1485    
1486    
1487        SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1488    
1489          start_timer();          start_timer();
1490          if (pEnc->current->global_flags & XVID_HINTEDME_SET)          /*if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1491                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1492          else          else*/
1493                  bIntra =                  bIntra =
1494                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1495                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
# Line 1762  Line 1497 
1497    
1498          stop_motion_timer();          stop_motion_timer();
1499    
1500          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);          if (bIntra == 1) return FrameCodeI(pEnc, bs);
1501    
1502          if ( ( pEnc->current->global_flags & XVID_GMC )          if ( ( pEnc->current->vol_flags & XVID_VOL_GMC )
1503                  && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )                  && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )
1504          {          {
1505                  pEnc->current->coding_type = S_VOP;                  pEnc->current->coding_type = S_VOP;
# Line 1776  Line 1511 
1511                  generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,                  generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,
1512                                  pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,                                  pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,
1513                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,
1514                                  pEnc->mbParam.m_fcode, pEnc->mbParam.m_quarterpel, 0,                                  pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0,
1515                                  pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);                                  pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);
1516    
1517          }          }
1518    
1519          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1520          if (vol_header)          if (vol_header)
1521          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1522                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1523          }          }
1524    
1525          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1526    
         *pBits = BitstreamPos(bs);  
   
1527          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =          pEnc->current->sStat.iTextBits = pEnc->current->sStat.iMvSum = pEnc->current->sStat.iMvCount =
1528                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;                  pEnc->current->sStat.kblks = pEnc->current->sStat.mblks = pEnc->current->sStat.ublks = 0;
1529    
# Line 1827  Line 1560 
1560                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1561                                          pEnc->mbParam.edged_width, 65536);                                          pEnc->mbParam.edged_width, 65536);
1562    
1563                                  if (pEnc->current->motion_flags & PMV_CHROMA16) {                                  if (pEnc->current->motion_flags & XVID_ME_CHROMA16) {
1564                                          iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,                                          iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1565                                          pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);                                          pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1566    
# Line 1837  Line 1570 
1570    
1571                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1572    
1573                                          if (pEnc->mbParam.m_quarterpel)                                          if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1574                                                  pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;                                                  pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1575                                          else                                          else
1576                                                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;                                                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
# Line 1860  Line 1593 
1593                                                                   dct_codes, pEnc->mbParam.width,                                                                   dct_codes, pEnc->mbParam.width,
1594                                                                   pEnc->mbParam.height,                                                                   pEnc->mbParam.height,
1595                                                                   pEnc->mbParam.edged_width,                                                                   pEnc->mbParam.edged_width,
1596                                                                   pEnc->mbParam.m_quarterpel,                                                                   (pEnc->current->vol_flags & XVID_VOL_QUARTERPEL),
1597                                                                   (pEnc->current->global_flags & XVID_REDUCED),                                                                   (pEnc->current->vop_flags & XVID_VOP_REDUCED),
1598                                                                   pEnc->current->rounding_type);                                                                   pEnc->current->rounding_type);
1599    
1600                          stop_comp_timer();                          stop_comp_timer();
1601    
1602                          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {                          if (pMB->dquant != 0) {
                                 if (pMB->dquant != NO_CHANGE) {  
1603                                          pMB->mode = MODE_INTER_Q;                                          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;  
                                 }  
1604                          }                          }
                         pMB->quant = pEnc->current->quant;  
1605    
1606                          pMB->field_pred = 0;                          pMB->field_pred = 0;
1607    
# Line 1899  Line 1624 
1624                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1625    
1626                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1627                                                          (pMB->dquant == NO_CHANGE);                                                          (pMB->dquant == 0);
1628    
1629                          if (pEnc->current->coding_type == S_VOP)                          if (pEnc->current->coding_type == S_VOP)
1630                                  skip_possible &= (pMB->mcsel == 1);                                  skip_possible &= (pMB->mcsel == 1);
1631                          else if (pEnc->current->coding_type == P_VOP) {                          else if (pEnc->current->coding_type == P_VOP) {
1632                                  if (pEnc->mbParam.m_quarterpel)                                  if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1633                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1634                                  else                                  else
1635                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );
# Line 1931  Line 1656 
1656                                          }                                          }
1657    
1658                                          if (!bSkip) {   /* no SKIP, but trivial block */                                          if (!bSkip) {   /* no SKIP, but trivial block */
1659                                                  if(pEnc->mbParam.m_quarterpel) {                                                  if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1660                                                          VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1661                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1662                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
# Line 1958  Line 1683 
1683                          }                          }
1684                          /* ordinary case: normal coded INTER/INTER4V block */                          /* ordinary case: normal coded INTER/INTER4V block */
1685    
1686                          if (pEnc->current->global_flags & XVID_GREYSCALE)                          if ((pEnc->current->vop_flags & XVID_VOP_GREYSCALE))
1687                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1688                                  qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */                                  qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1689                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1690                          }                          }
1691    
1692                          if(pEnc->mbParam.m_quarterpel) {                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1693                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1694                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1695                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1696                                  DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1697                          } else {                          } else {
1698                                  VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                  VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1699                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x;
1700                                  pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1701                                  DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[0].x, pMB->pmvs[0].y, predMV.x, predMV.y, pMB->mvs[0].x, pMB->mvs[0].y);
1702                          }                          }
1703    
1704    
# Line 1981  Line 1706 
1706                          {       int k;                          {       int k;
1707                                  for (k=1;k<4;k++)                                  for (k=1;k<4;k++)
1708                                  {                                  {
1709                                          if(pEnc->mbParam.m_quarterpel) {                                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1710                                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);                                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1711                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1712                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
1713                                  DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1714                                          } else {                                          } else {
1715                                                  VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);                                                  VECTOR predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1716                                                  pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->mvs[k].x - predMV.x;
1717                                                  pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->mvs[k].y - predMV.y;
1718                                  DPRINTF(DPRINTF_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);                                  DPRINTF(XVID_DEBUG_MV,"mv_diff (%i,%i) pred (%i,%i) result (%i,%i)\n", pMB->pmvs[k].x, pMB->pmvs[k].y, predMV.x, predMV.y, pMB->mvs[k].x, pMB->mvs[k].y);
1719                                          }                                          }
1720    
1721                                  }                                  }
# Line 2002  Line 1727 
1727                  }                  }
1728          }          }
1729    
1730          if ((pEnc->current->global_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1731          {          {
1732                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1733                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
1734                          16, XVID_DEC_DEBLOCKY|XVID_DEC_DEBLOCKUV);                          16, 0);
1735          }          }
1736    
1737          emms();          emms();
1738    
1739        /* XXX: hinted me
1740          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1741                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1742          }          }*/
1743    
1744          if (pEnc->current->sStat.iMvCount == 0)          if (pEnc->current->sStat.iMvCount == 0)
1745                  pEnc->current->sStat.iMvCount = 1;                  pEnc->current->sStat.iMvCount = 1;
# Line 2023  Line 1749 
1749          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1750    
1751          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1752                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) /* maximum search range 128 */          && (pEnc->mbParam.m_fcode <= (3 +  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0)  )))     /* maximum search range 128 */
1753          {          {
1754                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1755                  iSearchRange *= 2;                  iSearchRange *= 2;
1756          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1757                             && (pEnc->fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1758                             && (pEnc->fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1759                             && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel)))      /* minimum search range 16 */                             && (pEnc->mbParam.m_fcode >= (2 + (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0) )))    /* minimum search range 16 */
1760          {          {
1761                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1762                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 2039  Line 1765 
1765          pEnc->fMvPrevSigma = fSigma;          pEnc->fMvPrevSigma = fSigma;
1766    
1767          /* frame drop code */          /* frame drop code */
1768          DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);  #if 0
1769            DPRINTF(XVID_DEBUG_DEBUG, "kmu %i %i %i\n", pEnc->current->sStat.kblks, pEnc->current->sStat.mblks, pEnc->current->sStat.ublks);
1770    #endif
1771          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <          if (pEnc->current->sStat.kblks + pEnc->current->sStat.mblks <
1772                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)                  (pEnc->mbParam.frame_drop_ratio * mb_width * mb_height) / 100)
1773          {          {
# Line 2055  Line 1783 
1783                  pEnc->current->quant = pEnc->reference->quant;                  pEnc->current->quant = pEnc->reference->quant;
1784                  pEnc->current->motion_flags = pEnc->reference->motion_flags;                  pEnc->current->motion_flags = pEnc->reference->motion_flags;
1785                  pEnc->current->rounding_type = pEnc->reference->rounding_type;                  pEnc->current->rounding_type = pEnc->reference->rounding_type;
1786                  pEnc->current->quarterpel =  pEnc->reference->quarterpel;                  /* pEnc->current->quarterpel =  pEnc->reference->quarterpel; */
1787                  pEnc->current->fcode = pEnc->reference->fcode;                  pEnc->current->fcode = pEnc->reference->fcode;
1788                  pEnc->current->bcode = pEnc->reference->bcode;                  pEnc->current->bcode = pEnc->reference->bcode;
1789                  image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);                  image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
# Line 2077  Line 1805 
1805          }          }
1806          */          */
1807    
1808    /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1809    #if 0
1810            /* for divx5 compatibility, we must always pad between the packed p and b frames */
1811            if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1812    #endif
1813                    BitstreamPadAlways(bs);
1814    #if 0
1815            else
1816                    BitstreamPad(bs);
1817    #endif
1818    
1819          *pBits = BitstreamPos(bs) - *pBits;      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1820    
1821          return 0;                                       /* inter */          return 0;                                       /* inter */
1822  }  }
# Line 2087  Line 1825 
1825  static void  static void
1826  FrameCodeB(Encoder * pEnc,  FrameCodeB(Encoder * pEnc,
1827                     FRAMEINFO * frame,                     FRAMEINFO * frame,
1828                     Bitstream * bs,                     Bitstream * bs)
                    uint32_t * pBits)  
1829  {  {
1830        int bits = BitstreamPos(bs);
1831          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
1832          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
1833          uint32_t x, y;          uint32_t x, y;
# Line 2104  Line 1842 
1842                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1843          }          }
1844    
1845          pEnc->current->global_flags &= ~XVID_REDUCED;   /* reduced resoltion not yet supported */          /* XXX: pEnc->current->global_flags &= ~XVID_VOP_REDUCED;  reduced resoltion not yet supported */
1846    
1847          if (!first){          if (!first){
1848                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
1849          }          }
1850  #endif  #endif
1851    
1852          frame->quarterpel =  pEnc->mbParam.m_quarterpel;          /* frame->quarterpel =  pEnc->mbParam.m_quarterpel; */
1853    
1854          /* forward  */          /* forward  */
1855          image_setedges(f_ref, pEnc->mbParam.edged_width,          image_setedges(f_ref, pEnc->mbParam.edged_width,
# Line 2120  Line 1858 
1858          start_timer();          start_timer();
1859          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1860                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1861                                            pEnc->mbParam.m_quarterpel, 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1862          stop_inter_timer();          stop_inter_timer();
1863    
1864          /* backward */          /* backward */
# Line 2130  Line 1868 
1868          start_timer();          start_timer();
1869          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1870                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1871                                            pEnc->mbParam.m_quarterpel, 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1872          stop_inter_timer();          stop_inter_timer();
1873    
1874          start_timer();          start_timer();
# Line 2157  Line 1895 
1895          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1896          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1897    
         *pBits = BitstreamPos(bs);  
   
1898          frame->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
1899          frame->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;
1900          frame->sStat.iMvCount = 0;          frame->sStat.iMvCount = 0;
1901          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;          frame->sStat.kblks = frame->sStat.mblks = frame->sStat.ublks = 0;
1902            frame->sStat.mblks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1903            frame->sStat.kblks = frame->sStat.ublks = 0;
1904    
1905          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1906                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1907                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1908                          int direction = pEnc->mbParam.global & XVID_ALTERNATESCAN ? 2 : 0;                          int direction = frame->vop_flags & XVID_VOP_ALTERNATESCAN ? 2 : 0;
1909    
1910                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */
1911                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
# Line 2176  Line 1913 
1913                                  continue;                                  continue;
1914                          }                          }
1915    
1916                          if (mb->mode != MODE_DIRECT_NONE_MV) {                          if (mb->mode != MODE_DIRECT_NONE_MV || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
1917                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1918                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1919                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
# Line 2186  Line 1923 
1923                                  if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;                                  if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1924                                  mb->quant = frame->quant;                                  mb->quant = frame->quant;
1925    
1926                                  mb->cbp =                                  if (mb->mode != MODE_DIRECT_NONE_MV)
1927                                          MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);                                          mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);
1928    
1929                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1930                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
# Line 2209  Line 1946 
1946    
1947          /* TODO: dynamic fcode/bcode ??? */          /* TODO: dynamic fcode/bcode ??? */
1948    
1949          *pBits = BitstreamPos(bs) - *pBits;      BitstreamPadAlways(bs);
1950            frame->length = (BitstreamPos(bs) - bits) / 8;
1951    
1952  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG
1953          if (!first){          if (!first){

Legend:
Removed from v.1.95  
changed lines
  Added in v.1.95.2.28

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