[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.40, Sun Jun 9 23:30:50 2002 UTC revision 1.76.2.7, Mon Sep 30 09:19:26 2002 UTC
# Line 32  Line 32 
32   *   *
33   *  History   *  History
34   *   *
35     *  10.07.2002  added BFRAMES_DEC_DEBUG support
36     *              MinChen <chenm001@163.com>
37     *  20.06.2002 bframe patch
38   *  08.05.2002 fix some problem in DEBUG mode;   *  08.05.2002 fix some problem in DEBUG mode;
39   *             MinChen <chenm001@163.com>   *             MinChen <chenm001@163.com>
40   *  14.04.2002 added FrameCodeB()   *  14.04.2002 added FrameCodeB()
# Line 40  Line 43 
43   *   *
44   ****************************************************************************/   ****************************************************************************/
45    
46    
47  #include <stdlib.h>  #include <stdlib.h>
48  #include <stdio.h>  #include <stdio.h>
49  #include <math.h>  #include <math.h>
50    #include <string.h>
51    
52  #include "encoder.h"  #include "encoder.h"
53  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
54  #include "global.h"  #include "global.h"
55  #include "utils/timer.h"  #include "utils/timer.h"
56  #include "image/image.h"  #include "image/image.h"
57    #ifdef BFRAMES
58    #include "image/font.h"
59    #include "motion/sad.h"
60    #endif
61  #include "motion/motion.h"  #include "motion/motion.h"
62  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
63  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
# Line 82  Line 91 
91                        bool force_inter,                        bool force_inter,
92                        bool vol_header);                        bool vol_header);
93    
 #ifdef BFRAMES  
94  static void FrameCodeB(Encoder * pEnc,  static void FrameCodeB(Encoder * pEnc,
95                         FRAMEINFO * frame,                         FRAMEINFO * frame,
96                         Bitstream * bs,                         Bitstream * bs,
97                         uint32_t *pBits);                         uint32_t *pBits);
 #endif  
98    
99  /*****************************************************************************  /*****************************************************************************
100   * Local data   * Local data
101   ****************************************************************************/   ****************************************************************************/
102    
103  static int DQtab[4] =  static int DQtab[4] = {
 {  
104          -1, -2, 1, 2          -1, -2, 1, 2
105  };  };
106    
107  static int iDQtab[5] =  static int iDQtab[5] = {
 {  
108          1, 0, NO_CHANGE, 2, 3          1, 0, NO_CHANGE, 2, 3
109  };  };
110    
111    
112  static void __inline image_null(IMAGE * image)  static void __inline
113    image_null(IMAGE * image)
114  {  {
115          image->y = image->u = image->v = NULL;          image->y = image->u = image->v = NULL;
116  }  }
# Line 132  Line 138 
138  encoder_create(XVID_ENC_PARAM * pParam)  encoder_create(XVID_ENC_PARAM * pParam)
139  {  {
140          Encoder *pEnc;          Encoder *pEnc;
141          uint32_t i;          int i;
142    
143          pParam->handle = NULL;          pParam->handle = NULL;
144    
# Line 145  Line 151 
151    
152          /* Fps */          /* Fps */
153    
154          if (pParam->fincr <= 0 || pParam->fbase <= 0)          if (pParam->fincr <= 0 || pParam->fbase <= 0) {
         {  
155                  pParam->fincr = 1;                  pParam->fincr = 1;
156                  pParam->fbase = 25;                  pParam->fbase = 25;
157          }          }
# Line 157  Line 162 
162           */           */
163    
164          i = pParam->fincr;          i = pParam->fincr;
165          while (i > 1)          while (i > 1) {
166          {                  if (pParam->fincr % i == 0 && pParam->fbase % i == 0) {
                 if (pParam->fincr % i == 0 && pParam->fbase % i == 0)  
                 {  
167                          pParam->fincr /= i;                          pParam->fincr /= i;
168                          pParam->fbase /= i;                          pParam->fbase /= i;
169                          i = pParam->fincr;                          i = pParam->fincr;
# Line 169  Line 172 
172                  i--;                  i--;
173          }          }
174    
175          if (pParam->fbase > 65535)          if (pParam->fbase > 65535) {
         {  
176                  float div = (float)pParam->fbase / 65535;                  float div = (float)pParam->fbase / 65535;
177    
178                  pParam->fbase = (int)(pParam->fbase / div);                  pParam->fbase = (int)(pParam->fbase / div);
179                  pParam->fincr = (int)(pParam->fincr / div);                  pParam->fincr = (int)(pParam->fincr / div);
180          }          }
# Line 203  Line 206 
206    
207          /* 1 keyframe each 10 seconds */          /* 1 keyframe each 10 seconds */
208    
209          if (pParam->max_key_interval == 0)          if (pParam->max_key_interval <= 0)
210                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;                  pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
211    
   
212          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);          pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
213          if (pEnc == NULL)          if (pEnc == NULL)
214                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
215    
216            /* Zero the Encoder Structure */
217    
218            memset(pEnc, 0, sizeof(Encoder));
219    
220          /* Fill members of Encoder structure */          /* Fill members of Encoder structure */
221    
222          pEnc->mbParam.width = pParam->width;          pEnc->mbParam.width = pParam->width;
# Line 225  Line 231 
231          pEnc->mbParam.fbase = pParam->fbase;          pEnc->mbParam.fbase = pParam->fbase;
232          pEnc->mbParam.fincr = pParam->fincr;          pEnc->mbParam.fincr = pParam->fincr;
233    
234            pEnc->mbParam.m_quant_type = H263_QUANT;
235    
236          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
237    
238          /* Fill rate control parameters */          /* Fill rate control parameters */
# Line 244  Line 252 
252    
253          /* try to allocate mb memory */          /* try to allocate mb memory */
254    
255          pEnc->current->mbs = xvid_malloc(sizeof(MACROBLOCK) * \          pEnc->current->mbs =
256                                           pEnc->mbParam.mb_width * \                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
257                                           pEnc->mbParam.mb_height,                                          pEnc->mbParam.mb_height, CACHE_LINE);
258                                           CACHE_LINE);          pEnc->reference->mbs =
259          pEnc->reference->mbs = xvid_malloc(sizeof(MACROBLOCK) * \                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
260                                             pEnc->mbParam.mb_width * \                                          pEnc->mbParam.mb_height, CACHE_LINE);
                                            pEnc->mbParam.mb_height,  
                                            CACHE_LINE);  
261    
262          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
263                  goto xvid_err_memory2;                  goto xvid_err_memory2;
264    
265          /* try to allocate image memory */          /* try to allocate image memory */
266    
267  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
268          image_null(&pEnc->sOriginal);          image_null(&pEnc->sOriginal);
269  #endif  #endif
270  #ifdef BFRAMES  
271          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
272          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
273          image_null(&pEnc->f_refhv);          image_null(&pEnc->f_refhv);
274  #endif  
275          image_null(&pEnc->current->image);          image_null(&pEnc->current->image);
276          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
277          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
# Line 274  Line 280 
280          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
281          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
282    
283  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
284          if (image_create(&pEnc->sOriginal,          if (image_create
285                           pEnc->mbParam.edged_width,                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
286                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
287                  goto xvid_err_memory3;                  goto xvid_err_memory3;
288  #endif  #endif
289  #ifdef BFRAMES  
290          if (image_create(&pEnc->f_refh,          if (image_create
291                           pEnc->mbParam.edged_width,                  (&pEnc->f_refh, pEnc->mbParam.edged_width,
292                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
293                  goto xvid_err_memory3;                  goto xvid_err_memory3;
294          if (image_create(&pEnc->f_refv,          if (image_create
295                           pEnc->mbParam.edged_width,                  (&pEnc->f_refv, pEnc->mbParam.edged_width,
296                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
297                  goto xvid_err_memory3;                  goto xvid_err_memory3;
298          if (image_create(&pEnc->f_refhv,          if (image_create
299                           pEnc->mbParam.edged_width,                  (&pEnc->f_refhv, pEnc->mbParam.edged_width,
300                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
301                  goto xvid_err_memory3;                  goto xvid_err_memory3;
302  #endif  
303          if (image_create(&pEnc->current->image,          if (image_create
304                           pEnc->mbParam.edged_width,                  (&pEnc->current->image, pEnc->mbParam.edged_width,
305                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
306                  goto xvid_err_memory3;                  goto xvid_err_memory3;
307          if (image_create(&pEnc->reference->image,          if (image_create
308                           pEnc->mbParam.edged_width,                  (&pEnc->reference->image, pEnc->mbParam.edged_width,
309                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
310                  goto xvid_err_memory3;                  goto xvid_err_memory3;
311          if (image_create(&pEnc->vInterH,          if (image_create
312                           pEnc->mbParam.edged_width,                  (&pEnc->vInterH, pEnc->mbParam.edged_width,
313                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
314                  goto xvid_err_memory3;                  goto xvid_err_memory3;
315          if (image_create(&pEnc->vInterV,          if (image_create
316                           pEnc->mbParam.edged_width,                  (&pEnc->vInterV, pEnc->mbParam.edged_width,
317                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
318                  goto xvid_err_memory3;                  goto xvid_err_memory3;
319          if (image_create(&pEnc->vInterVf,          if (image_create
320                           pEnc->mbParam.edged_width,                  (&pEnc->vInterVf, pEnc->mbParam.edged_width,
321                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
322                  goto xvid_err_memory3;                  goto xvid_err_memory3;
323          if (image_create(&pEnc->vInterHV,          if (image_create
324                           pEnc->mbParam.edged_width,                  (&pEnc->vInterHV, pEnc->mbParam.edged_width,
325                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
326                  goto xvid_err_memory3;                  goto xvid_err_memory3;
327          if (image_create(&pEnc->vInterHVf,          if (image_create
328                           pEnc->mbParam.edged_width,                  (&pEnc->vInterHVf, pEnc->mbParam.edged_width,
329                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
330                  goto xvid_err_memory3;                  goto xvid_err_memory3;
331    
332    
333    
334          /* B Frames specific init */          /* B Frames specific init */
 #ifdef BFRAMES  
335    
336            pEnc->global = pParam->global;
337          pEnc->mbParam.max_bframes = pParam->max_bframes;          pEnc->mbParam.max_bframes = pParam->max_bframes;
338          pEnc->bquant_ratio = pParam->bquant_ratio;          pEnc->bquant_ratio = pParam->bquant_ratio;
339            pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
340          pEnc->bframes = NULL;          pEnc->bframes = NULL;
341    
342          if (pEnc->mbParam.max_bframes > 0)          if (pEnc->mbParam.max_bframes > 0) {
         {  
343                  int n;                  int n;
344    
345                  pEnc->bframes = xvid_malloc(pEnc->mbParam.max_bframes * \                  pEnc->bframes =
346                                              sizeof(FRAMEINFO *),                          xvid_malloc(pEnc->mbParam.max_bframes * sizeof(FRAMEINFO *),
347                                              CACHE_LINE);                                              CACHE_LINE);
348    
349                  if (pEnc->bframes == NULL)                  if (pEnc->bframes == NULL)
# Line 347  Line 353 
353                          pEnc->bframes[n] = NULL;                          pEnc->bframes[n] = NULL;
354    
355    
356                  for (n = 0; n < pEnc->mbParam.max_bframes; n++)                  for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
357                  {                          pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
                         pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO),  
                                                        CACHE_LINE);  
358    
359                          if (pEnc->bframes[n] == NULL)                          if (pEnc->bframes[n] == NULL)
360                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
361    
362                          pEnc->bframes[n]->mbs = xvid_malloc(sizeof(MACROBLOCK) * \                          pEnc->bframes[n]->mbs =
363                                                              pEnc->mbParam.mb_width * \                                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
364                                                              pEnc->mbParam.mb_height,                                                          pEnc->mbParam.mb_height, CACHE_LINE);
                                                             CACHE_LINE);  
365    
366                          if (pEnc->bframes[n]->mbs == NULL)                          if (pEnc->bframes[n]->mbs == NULL)
367                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
368    
369                          image_null(&pEnc->bframes[n]->image);                          image_null(&pEnc->bframes[n]->image);
370    
371                          if (image_create(&pEnc->bframes[n]->image,                          if (image_create
372                                           pEnc->mbParam.edged_width,                                  (&pEnc->bframes[n]->image, pEnc->mbParam.edged_width,
373                                           pEnc->mbParam.edged_height) < 0)                                           pEnc->mbParam.edged_height) < 0)
374                                  goto xvid_err_memory4;                                  goto xvid_err_memory4;
375    
# Line 376  Line 379 
379          pEnc->bframenum_head = 0;          pEnc->bframenum_head = 0;
380          pEnc->bframenum_tail = 0;          pEnc->bframenum_tail = 0;
381          pEnc->flush_bframes = 0;          pEnc->flush_bframes = 0;
382            pEnc->bframenum_dx50bvop = -1;
383    
384          pEnc->mbParam.m_seconds = 0;          pEnc->queue = NULL;
385          pEnc->mbParam.m_ticks = 0;  
386  #endif  
387            if (pEnc->mbParam.max_bframes > 0) {
388                    int n;
389    
390                    pEnc->queue =
391                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),
392                                                    CACHE_LINE);
393    
394                    if (pEnc->queue == NULL)
395                            goto xvid_err_memory4;
396    
397                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
398                            image_null(&pEnc->queue[n]);
399    
400                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
401                            if (image_create
402                                    (&pEnc->queue[n], pEnc->mbParam.edged_width,
403                                     pEnc->mbParam.edged_height) < 0)
404                                    goto xvid_err_memory5;
405    
406                    }
407            }
408    
409            pEnc->queue_head = 0;
410            pEnc->queue_tail = 0;
411            pEnc->queue_size = 0;
412    
413            pEnc->mbParam.m_stamp = 0;
414    
415            pEnc->m_framenum = 0;
416            pEnc->current->stamp = 0;
417            pEnc->reference->stamp = 0;
418    
419          pParam->handle = (void *)pEnc;          pParam->handle = (void *)pEnc;
420    
421          if (pParam->rc_bitrate)          if (pParam->rc_bitrate) {
422          {                  RateControlInit(&pEnc->rate_control, pParam->rc_bitrate,
                 RateControlInit(&pEnc->rate_control,  
                                 pParam->rc_bitrate,  
423                                  pParam->rc_reaction_delay_factor,                                  pParam->rc_reaction_delay_factor,
424                                  pParam->rc_averaging_period,                                                  pParam->rc_averaging_period, pParam->rc_buffer,
                                 pParam->rc_buffer,  
425                                  pParam->fbase * 1000 / pParam->fincr,                                  pParam->fbase * 1000 / pParam->fincr,
426                                  pParam->max_quantizer,                                                  pParam->max_quantizer, pParam->min_quantizer);
                                 pParam->min_quantizer);  
427          }          }
428    
429          init_timer();          init_timer();
# Line 402  Line 433 
433          /*          /*
434           * We handle all XVID_ERR_MEMORY here, this makes the code lighter           * We handle all XVID_ERR_MEMORY here, this makes the code lighter
435           */           */
436  #ifdef BFRAMES  
437      xvid_err_memory5:
438    
439    
440            if (pEnc->mbParam.max_bframes > 0) {
441    
442                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
443                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
444                                                      pEnc->mbParam.edged_height);
445                    }
446                    xvid_free(pEnc->queue);
447            }
448    
449   xvid_err_memory4:   xvid_err_memory4:
         for (i=0; i<pEnc->mbParam.max_bframes; i++)  
         {  
450    
451                  if (pEnc->bframes[i] == NULL) continue;          if (pEnc->mbParam.max_bframes > 0) {
452    
453                  image_destroy(&pEnc->bframes[i]->image,                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
454                                pEnc->mbParam.edged_width,  
455                            if (pEnc->bframes[i] == NULL)
456                                    continue;
457    
458                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
459                                pEnc->mbParam.edged_height);                                pEnc->mbParam.edged_height);
460    
461                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
# Line 420  Line 465 
465          }          }
466    
467          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
468            }
 #endif  
469    
470   xvid_err_memory3:   xvid_err_memory3:
471  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
472          image_destroy(&pEnc->sOriginal,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
473                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
474  #endif  #endif
475    
476  #ifdef BFRAMES          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
         image_destroy(&pEnc->f_refh,  
                       pEnc->mbParam.edged_width,  
477                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
478          image_destroy(&pEnc->f_refv,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
479                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
480          image_destroy(&pEnc->f_refhv,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
481                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
 #endif  
482    
483          image_destroy(&pEnc->current->image,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
484                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
485          image_destroy(&pEnc->reference->image,          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
486                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
487          image_destroy(&pEnc->vInterH,          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
488                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
489          image_destroy(&pEnc->vInterV,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
490                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
491          image_destroy(&pEnc->vInterVf,          image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
492                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
493          image_destroy(&pEnc->vInterHV,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
494                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
495          image_destroy(&pEnc->vInterHVf,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
496                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
497    
498   xvid_err_memory2:   xvid_err_memory2:
# Line 492  Line 523 
523  int  int
524  encoder_destroy(Encoder * pEnc)  encoder_destroy(Encoder * pEnc)
525  {  {
526            int i;
527    
528          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
529    
530          /* B Frames specific */          /* B Frames specific */
531  #ifdef BFRAMES          if (pEnc->mbParam.max_bframes > 0) {
         int i;  
532    
533          for (i=0; i<pEnc->mbParam.max_bframes; i++)                  for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
         {  
534    
535                  if (pEnc->bframes[i] == NULL) continue;                          image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
536                                              pEnc->mbParam.edged_height);
537                    }
538                    xvid_free(pEnc->queue);
539            }
540    
541                  image_destroy(&pEnc->bframes[i]->image,  
542                                pEnc->mbParam.edged_width,          if (pEnc->mbParam.max_bframes > 0) {
543    
544                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
545    
546                            if (pEnc->bframes[i] == NULL)
547                                    continue;
548    
549                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
550                                pEnc->mbParam.edged_height);                                pEnc->mbParam.edged_height);
551    
552                  xvid_free(pEnc->bframes[i]->mbs);                  xvid_free(pEnc->bframes[i]->mbs);
553    
554                  xvid_free(pEnc->bframes[i]);                  xvid_free(pEnc->bframes[i]);
   
555          }          }
556    
557          xvid_free(pEnc->bframes);          xvid_free(pEnc->bframes);
558    
559  #endif          }
560    
561          /* All images, reference, current etc ... */          /* All images, reference, current etc ... */
562    
563          image_destroy(&pEnc->current->image,          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
564                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
565          image_destroy(&pEnc->reference->image,          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
566                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
567          image_destroy(&pEnc->vInterH,          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
568                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
569          image_destroy(&pEnc->vInterV,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
570                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
571          image_destroy(&pEnc->vInterVf,          image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
572                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
573          image_destroy(&pEnc->vInterHV,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
574                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
575          image_destroy(&pEnc->vInterHVf,          image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
576                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
577  #ifdef BFRAMES  
578          image_destroy(&pEnc->f_refh,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
579                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
580          image_destroy(&pEnc->f_refv,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
581                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
582          image_destroy(&pEnc->f_refhv,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
583                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
584  #endif  
585  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
586          image_destroy(&pEnc->sOriginal,          image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
                       pEnc->mbParam.edged_width,  
587                        pEnc->mbParam.edged_height);                        pEnc->mbParam.edged_height);
588  #endif  #endif
589    
# Line 570  Line 600 
600          return XVID_ERR_OK;          return XVID_ERR_OK;
601  }  }
602    
603    
604    static __inline void inc_frame_num(Encoder * pEnc)
605    {
606            pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
607            pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
608    }
609    
610    
611    static __inline void
612    queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
613    {
614            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
615            {
616                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
617                    return;
618            }
619    
620            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
621                                    pEnc->bframenum_head, pEnc->bframenum_tail,
622                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
623    
624    
625            start_timer();
626            if (image_input
627                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
628                     pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
629                    return;
630            stop_conv_timer();
631    
632            pEnc->queue_size++;
633            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
634    }
635    
636    static __inline void
637    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
638    {
639    
640                    pCur->ticks = (int32_t)pCur->stamp % time_base;
641                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
642    
643                    //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
644    
645    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
646                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
647                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
648                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
649                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
650                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
651    
652    */
653    }
654    
655    
656    
657    
658    
659  /*****************************************************************************  /*****************************************************************************
660   * Frame encoder entry point   * IPB frame encoder entry point
  *  
  * At this moment 2 versions coexist : one for IPB compatible encoder,  
  *                                     another one for the old IP encoder.  
661   *   *
662   * Returned values :   * Returned values :
663   *    - XVID_ERR_OK     - no errors   *    - XVID_ERR_OK     - no errors
# Line 582  Line 665 
665   *                        format   *                        format
666   ****************************************************************************/   ****************************************************************************/
667    
   
 #ifdef BFRAMES  
 /*****************************************************************************  
  * Frame encoder entry point for IPB capable encoder  
  ****************************************************************************/  
668  int  int
669  encoder_encode(Encoder * pEnc,  encoder_encode_bframes(Encoder * pEnc,
670                 XVID_ENC_FRAME * pFrame,                 XVID_ENC_FRAME * pFrame,
671                 XVID_ENC_STATS * pResult)                 XVID_ENC_STATS * pResult)
672  {  {
673          uint16_t x, y;          uint16_t x, y;
674          Bitstream bs;          Bitstream bs;
675          uint32_t bits;          uint32_t bits, mode;
676    
677  #ifdef _DEBUG          int input_valid = 1;
678    
679    #ifdef _DEBUG_PSNR
680          float psnr;          float psnr;
681          char temp[128];          char temp[128];
682  #endif  #endif
683    
684          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
685          ENC_CHECK(pFrame);          ENC_CHECK(pFrame);
686            ENC_CHECK(pFrame->image);
687    
688          start_global_timer();          start_global_timer();
689    
690          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
691    
692    ipvop_loop:
693    
694          /*          /*
695           * bframe "flush" code           * bframe "flush" code
696           */           */
697    
698          if ( (pFrame->image == NULL || pEnc->flush_bframes) &&          if ((pFrame->image == NULL || pEnc->flush_bframes)
699               (pEnc->bframenum_head < pEnc->bframenum_tail))                  && (pEnc->bframenum_head < pEnc->bframenum_tail)) {
         {  
700    
701                  if (pEnc->flush_bframes == 0)                  if (pEnc->flush_bframes == 0) {
                 {  
702                          /*                          /*
703                           * we have reached the end of stream without getting                           * we have reached the end of stream without getting
704                           * a future reference frame... so encode last final                           * a future reference frame... so encode last final
705                           * frame as a pframe                           * frame as a pframe
706                           */                           */
707    
708                          /* ToDo : remove dprintf calls */                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
709                          /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
710                            dprintf("--- PFRAME (final frame correction) --- ");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
711                          */  
712                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
713                          SWAP(pEnc->current, pEnc->reference);                          SWAP(pEnc->current, pEnc->reference);
714    
715                          SWAP(pEnc->current,                          SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
                              pEnc->bframes[pEnc->bframenum_tail]);  
716    
717                          FrameCodeP(pEnc, &bs, &bits, 1, 0);                          FrameCodeP(pEnc, &bs, &bits, 1, 0);
718    
719                          BitstreamPad(&bs);                          BitstreamPad(&bs);
720                          pFrame->length = BitstreamLength(&bs);                          pFrame->length = BitstreamLength(&bs);
                         pFrame->input_consumed = 0;  
721                          pFrame->intra = 0;                          pFrame->intra = 0;
722    
723                          return XVID_ERR_OK;                          return XVID_ERR_OK;
724                  }                  }
725    
                 /* ToDo : remove dprintf calls */  
                 /*  
                   dprintf("--- BFRAME (flush) --- ");  
                 */  
                 FrameCodeB(pEnc,  
                            pEnc->bframes[pEnc->bframenum_head],  
                            &bs,  
                            &bits);  
                 pEnc->bframenum_head++;  
726    
727                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
728                                    pEnc->bframenum_head, pEnc->bframenum_tail,
729                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
730    
731                    FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
732                    pEnc->bframenum_head++;
733    
734                  BitstreamPad(&bs);                  BitstreamPad(&bs);
735                  pFrame->length = BitstreamLength(&bs);                  pFrame->length = BitstreamLength(&bs);
                 pFrame->input_consumed = 0;  
736                  pFrame->intra = 0;                  pFrame->intra = 0;
737    
738                    if (input_valid)
739                            queue_image(pEnc, pFrame);
740    
741                  return XVID_ERR_OK;                  return XVID_ERR_OK;
742          }          }
743    
744          if (pFrame->image == NULL)          if (pEnc->bframenum_head > 0) {
745          {                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
746                  pFrame->length = 0;  
747                  pFrame->input_consumed = 1;                  if ((pEnc->global & XVID_GLOBAL_PACKED)) {
748    
749                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
750                                    pEnc->bframenum_head, pEnc->bframenum_tail,
751                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
752    
753                            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
754                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
755                            BitstreamPad(&bs);
756                            BitstreamPutBits(&bs, 0x7f, 8);
757    
758                            pFrame->length = BitstreamLength(&bs);
759                  pFrame->intra = 0;                  pFrame->intra = 0;
760    
761                            if (input_valid)
762                                    queue_image(pEnc, pFrame);
763    
764                  return XVID_ERR_OK;                  return XVID_ERR_OK;
765          }          }
766            }
767    
768    
769    bvop_loop:
770    
771          if (pEnc->bframenum_head > 0)          if (pEnc->bframenum_dx50bvop != -1)
772          {          {
773                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;  
774                    SWAP(pEnc->current, pEnc->reference);
775                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
776    
777                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
778                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
779          }          }
780    
781          pEnc->flush_bframes = 0;                  if (input_valid)
782                    {
783                            queue_image(pEnc, pFrame);
784                            input_valid = 0;
785                    }
786    
787          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          } else if (input_valid) {
          * Well there was a separation here so i put it in ANSI C  
          * comment style :-)  
          * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */  
788    
789          SWAP(pEnc->current, pEnc->reference);          SWAP(pEnc->current, pEnc->reference);
790    
791          EMMS();                  start_timer();
792                    if (image_input
793                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
794                            pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace))
795                            return XVID_ERR_FORMAT;
796                    stop_conv_timer();
797    
798                    // queue input frame, and dequue next image
799                    if (pEnc->queue_size > 0)
800                    {
801                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
802                            if (pEnc->queue_head != pEnc->queue_tail)
803                            {
804                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
805                            }
806                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
807                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
808                    }
809    
810            } else if (pEnc->queue_size > 0) {
811    
812                    SWAP(pEnc->current, pEnc->reference);
813    
814                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
815                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
816                    pEnc->queue_size--;
817    
818            } else if (BitstreamPos(&bs) == 0) {
819    
820                    DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
821                                    pEnc->bframenum_head, pEnc->bframenum_tail,
822                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
823    
824                    pFrame->intra = 0;
825    
826                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
827                    BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0); // write N_VOP
828                    BitstreamPad(&bs);
829                    pFrame->length = BitstreamLength(&bs);
830    
831                    return XVID_ERR_OK;
832    
833            } else {
834    
835                    pFrame->length = BitstreamLength(&bs);
836                    return XVID_ERR_OK;
837            }
838    
839            pEnc->flush_bframes = 0;
840    
841            emms();
842    
843            // only inc frame num, adapt quant, etc. if we havent seen it before
844            if (pEnc->bframenum_dx50bvop < 0 )
845            {
846          if (pFrame->quant == 0)          if (pFrame->quant == 0)
847                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
848          else          else
849                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
850    
851          if(pEnc->current->quant < 1)  /*              if (pEnc->current->quant < 1)
852                  pEnc->current->quant = 1;                  pEnc->current->quant = 1;
853    
854          if(pEnc->current->quant > 31)          if(pEnc->current->quant > 31)
855                  pEnc->current->quant = 31;                  pEnc->current->quant = 31;
856    */
857          pEnc->current->global_flags = pFrame->general;          pEnc->current->global_flags = pFrame->general;
858          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
859          pEnc->current->seconds = pEnc->mbParam.m_seconds;  
         pEnc->current->ticks = pEnc->mbParam.m_ticks;  
860          /* ToDo : dynamic fcode (in both directions) */          /* ToDo : dynamic fcode (in both directions) */
861          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
862          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
863    
864          start_timer();                  inc_frame_num(pEnc);
         if (image_input(&pEnc->current->image,  
                         pEnc->mbParam.width,  
                         pEnc->mbParam.height,  
                         pEnc->mbParam.edged_width,  
                         pFrame->image,  
                         pFrame->colorspace))  
                 return XVID_ERR_FORMAT;  
         stop_conv_timer();  
865    
866  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
867          image_copy(&pEnc->sOriginal,                  image_copy(&pEnc->sOriginal, &pEnc->current->image,
868                     &pEnc->current->image,                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
                    pEnc->mbParam.edged_width,  
                    pEnc->mbParam.height);  
869  #endif  #endif
870    
871          EMMS();                  emms();
872    
873                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
874                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
875                                    "%i  if:%i  st:%i:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->seconds, pEnc->current->ticks);
876                    }
877    
878          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
879           * Luminance masking           * Luminance masking
880           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
881    
882          if ((pEnc->current->global_flags & XVID_LUMIMASKING))                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
         {  
883                  int *temp_dquants =                  int *temp_dquants =
884                          (int *) xvid_malloc(pEnc->mbParam.mb_width * \                                  (int *) xvid_malloc(pEnc->mbParam.mb_width *
885                                              pEnc->mbParam.mb_height * \                                                                  pEnc->mbParam.mb_height * sizeof(int),
                                             sizeof(int),  
886                                              CACHE_LINE);                                              CACHE_LINE);
887    
888                  pEnc->current->quant =                  pEnc->current->quant =
889                          adaptive_quantization(pEnc->current->image.y,                          adaptive_quantization(pEnc->current->image.y,
890                                                pEnc->mbParam.edged_width,                                                                    pEnc->mbParam.edged_width, temp_dquants,
891                                                temp_dquants,                                                                    pEnc->current->quant, pEnc->current->quant,
                                               pEnc->current->quant,  
                                               pEnc->current->quant,  
892                                                2*pEnc->current->quant,                                                2*pEnc->current->quant,
893                                                pEnc->mbParam.mb_width,                                                pEnc->mbParam.mb_width,
894                                                pEnc->mbParam.mb_height);                                                pEnc->mbParam.mb_height);
895    
896                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
                 {  
897    
898                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
899    
900                          for (x = 0; x < pEnc->mbParam.mb_width; x++)                                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
901                          {                                          MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
902                                  MACROBLOCK *pMB =  
903                                          &pEnc->current->mbs[OFFSET(x,y)];                                          pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
                                 pMB->dquant =  
                                         iDQtab[temp_dquants[OFFSET(x,y)] + 2];  
904                          }                          }
905    
906                          #undef OFFSET                          #undef OFFSET
   
907                  }                  }
908    
909                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
910          }          }
911    
912            }
913    
914          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
915           * ivop/pvop/bvop selection           * ivop/pvop/bvop selection
916           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
917    
918    
919          if (pEnc->iFrameNum == 0 ||          if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
920              pFrame->intra   == 1 ||                  (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
921                     pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
922                    || /*image_mad(&pEnc->reference->image, &pEnc->current->image,
923                                             pEnc->mbParam.edged_width, pEnc->mbParam.width,
924                                             pEnc->mbParam.height) > 30) {*/
925                            2 == (mode = MEanalysis(&pEnc->reference->image, &pEnc->current->image,
926                                             &pEnc->mbParam, pEnc->current->mbs, pEnc->current->fcode))) {
927    
             (pFrame->intra < 0  &&  
              pEnc->iMaxKeyInterval > 0 &&  
              pEnc->iFrameNum >= pEnc->iMaxKeyInterval) ||  
   
             image_mad(&pEnc->reference->image,  
                       &pEnc->current->image,  
                       pEnc->mbParam.edged_width,  
                       pEnc->mbParam.width,  
                       pEnc->mbParam.height) > 30)  
         {  
928                  /*                  /*
929                   * This will be coded as an Intra Frame                   * This will be coded as an Intra Frame
930                   */                   */
931    
932                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
933                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
934                    dprintf("--- IFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
935                  */  
936                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
937                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
938                    }
939    
940                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
941    
942                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
943    
944                            pEnc->bframenum_tail--;
945                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
946    
947                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
948                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
949                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
950                            }
951                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
952    
953                            pFrame->intra = 0;
954    
955                    } else {
956    
957                  FrameCodeI(pEnc, &bs, &bits);                  FrameCodeI(pEnc, &bs, &bits);
958                            pFrame->intra = 1;
959    
960                            pEnc->bframenum_dx50bvop = -1;
961                    }
962    
                 pFrame->intra = 1;  
963                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
964    
965                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
966                            BitstreamPad(&bs);
967                            input_valid = 0;
968                            goto ipvop_loop;
969                    }
970    
971                  /*                  /*
972                   * NB : sequences like "IIBB" decode fine with msfdam but,                   * NB : sequences like "IIBB" decode fine with msfdam but,
973                   *      go screwy with divx 5.00                   *      go screwy with divx 5.00
974                   */                   */
975          }          } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
         else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes)  
         {  
976                  /*                  /*
977                   * This will be coded as a Predicted Frame                   * This will be coded as a Predicted Frame
978                   */                   */
979    
980                  /* ToDo : Remove dprintf calls */                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
981                  /*                                  pEnc->bframenum_head, pEnc->bframenum_tail,
982                    dprintf("--- PFRAME ---");                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
983                  */  
984                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
985                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
986                    }
987    
988                  FrameCodeP(pEnc, &bs, &bits, 1, 0);                  FrameCodeP(pEnc, &bs, &bits, 1, 0);
989                  pFrame->intra = 0;                  pFrame->intra = 0;
990                  pEnc->flush_bframes = 1;                  pEnc->flush_bframes = 1;
991    
992                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
993                            BitstreamPad(&bs);
994                            input_valid = 0;
995                            goto ipvop_loop;
996          }          }
997          else  
998          {          } else {
999                  /*                  /*
1000                   * This will be coded as a Bidirectional Frame                   * This will be coded as a Bidirectional Frame
1001                   */                   */
1002    
1003                  /* ToDo : Remove dprintf calls */                  if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1004                  /*                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1005                    dprintf("--- BFRAME (store) ---  head=%i tail=%i",                  }
                   pEnc->bframenum_head,  
                   pEnc->bframenum_tail);  
                 */  
1006    
1007                  if (pFrame->bquant < 1)                  if (pFrame->bquant < 1) {
                 {  
1008                          pEnc->current->quant =                          pEnc->current->quant =
1009                                  ((pEnc->reference->quant+pEnc->current->quant)*\                                  ((pEnc->reference->quant +
1010                                   pEnc->bquant_ratio) / 200;                                    pEnc->current->quant) * pEnc->bquant_ratio) / 200;
1011                  }                  } else {
                 else  
                 {  
1012                          pEnc->current->quant = pFrame->bquant;                          pEnc->current->quant = pFrame->bquant;
1013                  }                  }
1014                    if (pEnc->current->quant < 1)
1015                            pEnc->current->quant = 1;
1016    
1017                    if (pEnc->current->quant > 31)
1018                            pEnc->current->quant = 31;
1019    
1020    
1021                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1022                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1023                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1024    
1025    
1026    
1027                  /* store frame into bframe buffer & swap ref back to current */                  /* store frame into bframe buffer & swap ref back to current */
1028                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
# Line 852  Line 1032 
1032    
1033                  pFrame->intra = 0;                  pFrame->intra = 0;
1034                  pFrame->length = 0;                  pFrame->length = 0;
                 pFrame->input_consumed = 1;  
1035    
1036                  pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;                  input_valid = 0;
1037                  if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)                  goto bvop_loop;
                 {  
                         pEnc->mbParam.m_seconds++;  
                         pEnc->mbParam.m_ticks = 0;  
1038                  }                  }
1039    
1040                  return XVID_ERR_OK;          pEnc->iFrameNum++;
         }  
1041    
1042          BitstreamPad(&bs);          BitstreamPad(&bs);
1043          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1044    
1045          if (pResult)          if (pResult) {
         {  
1046                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1047                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits/8);                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits/8);
1048                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->sStat.kblks;
# Line 876  Line 1050 
1050                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->sStat.ublks;
1051          }          }
1052    
1053          EMMS();          emms();
1054    
1055  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1056          psnr = image_psnr(&pEnc->sOriginal,          psnr =
1057                            &pEnc->current->image,                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1058                            pEnc->mbParam.edged_width,                                     pEnc->mbParam.edged_width, pEnc->mbParam.width,
                           pEnc->mbParam.width,  
1059                            pEnc->mbParam.height);                            pEnc->mbParam.height);
1060    
1061          snprintf(temp, 127, "PSNR: %f\n", psnr);          snprintf(temp, 127, "PSNR: %f\n", psnr);
1062          DEBUG(temp);          DEBUG(temp);
1063  #endif  #endif
1064    
1065          if (pFrame->quant == 0)          if (pFrame->quant == 0) {
1066          {                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1067                  RateControlUpdate(&pEnc->rate_control,                                                    pFrame->length, pFrame->intra);
                                   pEnc->current->quant,  
                                   pFrame->length,  
                                   pFrame->intra);  
         }  
   
         pEnc->iFrameNum++;  
         pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;  
         if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)  
         {  
                 pEnc->mbParam.m_seconds++;  
                 pEnc->mbParam.m_ticks = 0;  
1068          }          }
         pFrame->input_consumed = 1;  
1069    
1070          stop_global_timer();          stop_global_timer();
1071          write_timer();          write_timer();
1072    
1073          return XVID_ERR_OK;          return XVID_ERR_OK;
1074  }  }
1075  #else  
1076    
1077    
1078  /*****************************************************************************  /*****************************************************************************
1079   * Frame encoder entry point for IP capable encoder   * "original" IP frame encoder entry point
1080     *
1081     * Returned values :
1082     *    - XVID_ERR_OK     - no errors
1083     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1084     *                        format
1085   ****************************************************************************/   ****************************************************************************/
1086    
1087  int  int
1088  encoder_encode(Encoder * pEnc,  encoder_encode(Encoder * pEnc,
1089                 XVID_ENC_FRAME * pFrame,                 XVID_ENC_FRAME * pFrame,
# Line 924  Line 1093 
1093          Bitstream bs;          Bitstream bs;
1094          uint32_t bits;          uint32_t bits;
1095          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1096  #ifdef _DEBUG  
1097    #ifdef _DEBUG_PSNR
1098          float psnr;          float psnr;
1099          uint8_t temp[128];          uint8_t temp[128];
1100  #endif  #endif
# Line 942  Line 1112 
1112          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1113          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1114    
1115            /* disable alternate scan flag if interlacing is not enabled */
1116            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1117                    !(pEnc->current->global_flags & XVID_INTERLACING))
1118            {
1119                    pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1120            }
1121    
1122          start_timer();          start_timer();
1123          if (image_input(&pEnc->current->image,          if (image_input
1124                          pEnc->mbParam.width,                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1125                          pEnc->mbParam.height,                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)
                         pEnc->mbParam.edged_width,  
                         pFrame->image,  
                         pFrame->colorspace) < 0)  
1126                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
1127          stop_conv_timer();          stop_conv_timer();
1128    
1129  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1130          image_copy(&pEnc->sOriginal,          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1131                     &pEnc->current->image,                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
                    pEnc->mbParam.edged_width,  
                    pEnc->mbParam.height);  
1132  #endif  #endif
1133    
1134          EMMS();          emms();
1135    
1136          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
1137    
1138          if (pFrame->quant == 0)          if (pFrame->quant == 0) {
         {  
1139                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control,0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control,0);
1140          }          } else {
         else  
         {  
1141                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1142          }          }
1143    
1144          if ((pEnc->current->global_flags & XVID_LUMIMASKING))          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1145          {                  int *temp_dquants =
1146                  int * temp_dquants = (int *)                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
1147                          xvid_malloc(pEnc->mbParam.mb_width * \                                                                  pEnc->mbParam.mb_height * sizeof(int),
                                     pEnc->mbParam.mb_height * \  
                                     sizeof(int),  
1148                                      CACHE_LINE);                                      CACHE_LINE);
1149    
1150                  pEnc->current->quant =                  pEnc->current->quant =
1151                          adaptive_quantization(pEnc->current->image.y,                          adaptive_quantization(pEnc->current->image.y,
1152                                                pEnc->mbParam.edged_width,                                                                    pEnc->mbParam.edged_width, temp_dquants,
1153                                                temp_dquants,                                                                    pEnc->current->quant, pEnc->current->quant,
                                               pEnc->current->quant,  
                                               pEnc->current->quant,  
1154                                                2*pEnc->current->quant,                                                2*pEnc->current->quant,
1155                                                pEnc->mbParam.mb_width,                                                pEnc->mbParam.mb_width,
1156                                                pEnc->mbParam.mb_height);                                                pEnc->mbParam.mb_height);
1157    
1158                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                  for (y = 0; y < pEnc->mbParam.mb_height; y++) {
                 {  
1159    
1160                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)                          #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
1161    
1162                          for (x = 0; x < pEnc->mbParam.mb_width; x++)                          for (x = 0; x < pEnc->mbParam.mb_width; x++) {
                         {  
1163    
1164    
1165                                  MACROBLOCK *pMB =                                  MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
1166                                          &pEnc->current->mbs[OFFSET(x,y)];  
1167                                  pMB->dquant =                                  pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
                                         iDQtab[temp_dquants[OFFSET(x,y)] + 2];  
1168                          }                          }
1169    
1170                          #undef OFFSET                          #undef OFFSET
# Line 1011  Line 1173 
1173                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
1174          }          }
1175    
1176          if (pEnc->current->global_flags & XVID_H263QUANT)          if (pEnc->current->global_flags & XVID_H263QUANT) {
         {  
1177                  if(pEnc->mbParam.m_quant_type != H263_QUANT)                  if(pEnc->mbParam.m_quant_type != H263_QUANT)
1178                          write_vol_header = 1;                          write_vol_header = 1;
1179                  pEnc->mbParam.m_quant_type = H263_QUANT;                  pEnc->mbParam.m_quant_type = H263_QUANT;
1180          }          } else if (pEnc->current->global_flags & XVID_MPEGQUANT) {
         else if (pEnc->current->global_flags & XVID_MPEGQUANT)  
         {  
1181                  int matrix1_changed, matrix2_changed;                  int matrix1_changed, matrix2_changed;
1182    
1183                  matrix1_changed = matrix2_changed = 0;                  matrix1_changed = matrix2_changed = 0;
# Line 1030  Line 1189 
1189    
1190                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
1191                          if(pFrame->quant_intra_matrix != NULL)                          if(pFrame->quant_intra_matrix != NULL)
1192                                  matrix1_changed =                                  matrix1_changed = set_intra_matrix(pFrame->quant_intra_matrix);
                                         set_intra_matrix(pFrame->quant_intra_matrix);  
1193                          if(pFrame->quant_inter_matrix != NULL)                          if(pFrame->quant_inter_matrix != NULL)
1194                                  matrix2_changed                                  matrix2_changed = set_inter_matrix(pFrame->quant_inter_matrix);
1195                                          = set_inter_matrix(pFrame->quant_inter_matrix);                  } else {
                 }  
                 else {  
1196                          matrix1_changed = set_intra_matrix(get_default_intra_matrix());                          matrix1_changed = set_intra_matrix(get_default_intra_matrix());
1197                          matrix2_changed = set_inter_matrix(get_default_inter_matrix());                          matrix2_changed = set_inter_matrix(get_default_inter_matrix());
1198                  }                  }
# Line 1044  Line 1200 
1200                          write_vol_header = matrix1_changed | matrix2_changed;                          write_vol_header = matrix1_changed | matrix2_changed;
1201          }          }
1202    
1203          if (pFrame->intra < 0)          if (pFrame->intra < 0) {
1204          {                  if ((pEnc->iFrameNum == 0)
1205                  if ((pEnc->iFrameNum == 0) ||                          || ((pEnc->iMaxKeyInterval > 0)
1206                                    && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {
1207                      ((pEnc->iMaxKeyInterval > 0) &&                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1208                       (pEnc->iFrameNum >= pEnc->iMaxKeyInterval)))                  } else {
1209                  {                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
1210                          pFrame->intra = FrameCodeI(pEnc,                  }
1211                                                     &bs,          } else {
1212                                                     &bits);                  if (pFrame->intra == 1) {
1213                  }                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1214                  else                  } else {
1215                  {                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, write_vol_header);
                         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);  
1216                  }                  }
1217    
1218          }          }
# Line 1088  Line 1222 
1222          BitstreamPad(&bs);          BitstreamPad(&bs);
1223          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1224    
1225          if (pResult)          if (pResult) {
         {  
1226                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1227                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);
1228                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->sStat.kblks;
# Line 1097  Line 1230 
1230                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->sStat.ublks;
1231          }          }
1232    
1233          EMMS();          emms();
   
         if (pFrame->quant == 0)  
         {  
                 RateControlUpdate(&pEnc->rate_control,  
                                   pEnc->current->quant,  
                                   pFrame->length,  
                                   pFrame->intra);  
         }  
1234    
1235  #ifdef _DEBUG          if (pFrame->quant == 0) {
1236          psnr = image_psnr(&pEnc->sOriginal,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1237                            &pEnc->current->image,                                                    pFrame->length, pFrame->intra);
1238                            pEnc->mbParam.edged_width,          }
1239                            pEnc->mbParam.width,  #ifdef _DEBUG_PSNR
1240            psnr =
1241                    image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1242                                       pEnc->mbParam.edged_width, pEnc->mbParam.width,
1243                            pEnc->mbParam.height);                            pEnc->mbParam.height);
1244    
1245          snprintf(temp, 127, "PSNR: %f\n", psnr);          snprintf(temp, 127, "PSNR: %f\n", psnr);
1246          DEBUG(temp);          DEBUG(temp);
1247  #endif  #endif
1248    
1249            inc_frame_num(pEnc);
1250          pEnc->iFrameNum++;          pEnc->iFrameNum++;
1251    
1252          stop_global_timer();          stop_global_timer();
# Line 1125  Line 1254 
1254    
1255          return XVID_ERR_OK;          return XVID_ERR_OK;
1256  }  }
 #endif  
1257    
1258    
1259  static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {  static __inline void
1260    CodeIntraMB(Encoder * pEnc,
1261                            MACROBLOCK * pMB)
1262    {
1263    
1264          pMB->mode = MODE_INTRA;          pMB->mode = MODE_INTRA;
1265    
# Line 1139  Line 1270 
1270          pMB->sad16 = 0;          pMB->sad16 = 0;
1271    
1272          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1273                  if(pMB->dquant != NO_CHANGE)                  if (pMB->dquant != NO_CHANGE) {
                 {  
1274                          pMB->mode = MODE_INTRA_Q;                          pMB->mode = MODE_INTRA_Q;
1275                          pEnc->current->quant += DQtab[pMB->dquant];                          pEnc->current->quant += DQtab[pMB->dquant];
1276    
1277                          if (pEnc->current->quant > 31) pEnc->current->quant = 31;                          if (pEnc->current->quant > 31)
1278                          if (pEnc->current->quant < 1) pEnc->current->quant = 1;                                  pEnc->current->quant = 31;
1279                            if (pEnc->current->quant < 1)
1280                                    pEnc->current->quant = 1;
1281                  }                  }
1282          }          }
1283    
# Line 1156  Line 1288 
1288  #define FCODEBITS       3  #define FCODEBITS       3
1289  #define MODEBITS        5  #define MODEBITS        5
1290    
1291  void HintedMESet(Encoder * pEnc, int * intra)  void
1292    HintedMESet(Encoder * pEnc,
1293                            int *intra)
1294  {  {
1295          HINTINFO * hint;          HINTINFO * hint;
1296          Bitstream bs;          Bitstream bs;
# Line 1165  Line 1299 
1299    
1300          hint = pEnc->mbParam.hint;          hint = pEnc->mbParam.hint;
1301    
1302          if (hint->rawhints)          if (hint->rawhints) {
         {  
1303                  *intra = hint->mvhint.intra;                  *intra = hint->mvhint.intra;
1304          }          } else {
         else  
         {  
1305                  BitstreamInit(&bs, hint->hintstream, hint->hintlength);                  BitstreamInit(&bs, hint->hintstream, hint->hintlength);
1306                  *intra = BitstreamGetBit(&bs);                  *intra = BitstreamGetBit(&bs);
1307          }          }
1308    
1309          if (*intra)          if (*intra) {
         {  
1310                  return;                  return;
1311          }          }
1312    
1313          pEnc->current->fcode = (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs, FCODEBITS);          pEnc->current->fcode =
1314                    (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs,
1315                                                                                                                                     FCODEBITS);
1316    
1317          length  = pEnc->current->fcode + 5;          length  = pEnc->current->fcode + 5;
1318          high    = 1 << (length - 1);          high    = 1 << (length - 1);
1319    
1320          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)          for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
1321          {                  for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
1322                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)                          MACROBLOCK *pMB =
1323                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1324                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                          MVBLOCKHINT *bhint =
1325                          MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1326                          VECTOR pred[4];                          VECTOR pred;
1327                          VECTOR tmp;                          VECTOR tmp;
                         int32_t dummy[4];  
1328                          int vec;                          int vec;
1329    
1330                          pMB->mode = (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs, MODEBITS);                          pMB->mode =
1331                                    (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs,
1332                                                                                                                                      MODEBITS);
1333    
1334                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;
1335                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;
1336    
1337                          if (pMB->mode == MODE_INTER)                          if (pMB->mode == MODE_INTER) {
1338                          {                                  tmp.x =
1339                                  tmp.x  = (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs, length);                                          (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs,
1340                                  tmp.y  = (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs, length);                                                                                                                                                    length);
1341                                    tmp.y =
1342                                            (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs,
1343                                                                                                                                                      length);
1344                                  tmp.x -= (tmp.x >= high) ? high*2 : 0;                                  tmp.x -= (tmp.x >= high) ? high*2 : 0;
1345                                  tmp.y -= (tmp.y >= high) ? high*2 : 0;                                  tmp.y -= (tmp.y >= high) ? high*2 : 0;
1346    
1347                                  get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, 0, pred, dummy);                                  pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,0);
1348    
1349                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1350                                          pMB->mvs[vec].x  = tmp.x;                                          pMB->mvs[vec].x  = tmp.x;
1351                                          pMB->mvs[vec].y  = tmp.y;                                          pMB->mvs[vec].y  = tmp.y;
1352                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1353                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1354                                  }                                  }
1355                          }                          } else if (pMB->mode == MODE_INTER4V) {
1356                          else if (pMB->mode == MODE_INTER4V)                                  for (vec = 0; vec < 4; ++vec) {
1357                          {                                          tmp.x =
1358                                  for (vec=0 ; vec<4 ; ++vec)                                                  (hint->rawhints) ? bhint->mvs[vec].
1359                                  {                                                  x : BitstreamGetBits(&bs, length);
1360                                          tmp.x  = (hint->rawhints) ? bhint->mvs[vec].x : BitstreamGetBits(&bs, length);                                          tmp.y =
1361                                          tmp.y  = (hint->rawhints) ? bhint->mvs[vec].y : BitstreamGetBits(&bs, length);                                                  (hint->rawhints) ? bhint->mvs[vec].
1362                                                    y : BitstreamGetBits(&bs, length);
1363                                          tmp.x -= (tmp.x >= high) ? high*2 : 0;                                          tmp.x -= (tmp.x >= high) ? high*2 : 0;
1364                                          tmp.y -= (tmp.y >= high) ? high*2 : 0;                                          tmp.y -= (tmp.y >= high) ? high*2 : 0;
1365    
1366                                          get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, vec, pred, dummy);                                          pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,vec);
1367    
1368                                          pMB->mvs[vec].x  = tmp.x;                                          pMB->mvs[vec].x  = tmp.x;
1369                                          pMB->mvs[vec].y  = tmp.y;                                          pMB->mvs[vec].y  = tmp.y;
1370                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1371                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
                                 }  
1372                          }                          }
1373                          else    // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
                         {  
                                 for (vec=0 ; vec<4 ; ++vec)  
1374                                  {                                  {
1375                                    for (vec = 0; vec < 4; ++vec) {
1376                                          pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;                                          pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;
1377                                  }                                  }
1378                          }                          }
1379    
1380                          if (pMB->mode == MODE_INTER4V &&                          if (pMB->mode == MODE_INTER4V &&
1381                                  (pEnc->current->global_flags & XVID_LUMIMASKING) && pMB->dquant != NO_CHANGE)                                  (pEnc->current->global_flags & XVID_LUMIMASKING)
1382                          {                                  && pMB->dquant != NO_CHANGE) {
1383                                  pMB->mode = MODE_INTRA;                                  pMB->mode = MODE_INTRA;
1384    
1385                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1386                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;
1387                                  }                                  }
1388                          }                          }
# Line 1258  Line 1391 
1391  }  }
1392    
1393    
1394  void HintedMEGet(Encoder * pEnc, int intra)  void
1395    HintedMEGet(Encoder * pEnc,
1396                            int intra)
1397  {  {
1398          HINTINFO * hint;          HINTINFO * hint;
1399          Bitstream bs;          Bitstream bs;
# Line 1267  Line 1402 
1402    
1403          hint = pEnc->mbParam.hint;          hint = pEnc->mbParam.hint;
1404    
1405          if (hint->rawhints)          if (hint->rawhints) {
         {  
1406                  hint->mvhint.intra = intra;                  hint->mvhint.intra = intra;
1407          }          } else {
         else  
         {  
1408                  BitstreamInit(&bs, hint->hintstream, 0);                  BitstreamInit(&bs, hint->hintstream, 0);
1409                  BitstreamPutBit(&bs, intra);                  BitstreamPutBit(&bs, intra);
1410          }          }
1411    
1412          if (intra)          if (intra) {
1413          {                  if (!hint->rawhints) {
                 if (!hint->rawhints)  
                 {  
1414                          BitstreamPad(&bs);                          BitstreamPad(&bs);
1415                          hint->hintlength = BitstreamLength(&bs);                          hint->hintlength = BitstreamLength(&bs);
1416                  }                  }
# Line 1290  Line 1420 
1420          length  = pEnc->current->fcode + 5;          length  = pEnc->current->fcode + 5;
1421          high    = 1 << (length - 1);          high    = 1 << (length - 1);
1422    
1423          if (hint->rawhints)          if (hint->rawhints) {
         {  
1424                  hint->mvhint.fcode = pEnc->current->fcode;                  hint->mvhint.fcode = pEnc->current->fcode;
1425          }          } else {
         else  
         {  
1426                  BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);                  BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);
1427          }          }
1428    
1429          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)          for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
1430          {                  for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
1431                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)                          MACROBLOCK *pMB =
1432                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1433                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                          MVBLOCKHINT *bhint =
1434                          MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1435                          VECTOR tmp;                          VECTOR tmp;
1436    
1437                          if (hint->rawhints)                          if (hint->rawhints) {
                         {  
1438                                  bhint->mode = pMB->mode;                                  bhint->mode = pMB->mode;
1439                          }                          } else {
                         else  
                         {  
1440                                  BitstreamPutBits(&bs, pMB->mode, MODEBITS);                                  BitstreamPutBits(&bs, pMB->mode, MODEBITS);
1441                          }                          }
1442    
1443                          if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)                          if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q) {
                         {  
1444                                  tmp.x  = pMB->mvs[0].x;                                  tmp.x  = pMB->mvs[0].x;
1445                                  tmp.y  = pMB->mvs[0].y;                                  tmp.y  = pMB->mvs[0].y;
1446                                  tmp.x += (tmp.x < 0) ? high*2 : 0;                                  tmp.x += (tmp.x < 0) ? high*2 : 0;
1447                                  tmp.y += (tmp.y < 0) ? high*2 : 0;                                  tmp.y += (tmp.y < 0) ? high*2 : 0;
1448    
1449                                  if (hint->rawhints)                                  if (hint->rawhints) {
                                 {  
1450                                          bhint->mvs[0].x = tmp.x;                                          bhint->mvs[0].x = tmp.x;
1451                                          bhint->mvs[0].y = tmp.y;                                          bhint->mvs[0].y = tmp.y;
1452                                  }                                  } else {
                                 else  
                                 {  
1453                                          BitstreamPutBits(&bs, tmp.x, length);                                          BitstreamPutBits(&bs, tmp.x, length);
1454                                          BitstreamPutBits(&bs, tmp.y, length);                                          BitstreamPutBits(&bs, tmp.y, length);
1455                                  }                                  }
1456                          }                          } else if (pMB->mode == MODE_INTER4V) {
                         else if (pMB->mode == MODE_INTER4V)  
                         {  
1457                                  int vec;                                  int vec;
1458    
1459                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1460                                          tmp.x  = pMB->mvs[vec].x;                                          tmp.x  = pMB->mvs[vec].x;
1461                                          tmp.y  = pMB->mvs[vec].y;                                          tmp.y  = pMB->mvs[vec].y;
1462                                          tmp.x += (tmp.x < 0) ? high*2 : 0;                                          tmp.x += (tmp.x < 0) ? high*2 : 0;
1463                                          tmp.y += (tmp.y < 0) ? high*2 : 0;                                          tmp.y += (tmp.y < 0) ? high*2 : 0;
1464    
1465                                          if (hint->rawhints)                                          if (hint->rawhints) {
                                         {  
1466                                                  bhint->mvs[vec].x = tmp.x;                                                  bhint->mvs[vec].x = tmp.x;
1467                                                  bhint->mvs[vec].y = tmp.y;                                                  bhint->mvs[vec].y = tmp.y;
1468                                          }                                          } else {
                                         else  
                                         {  
1469                                                  BitstreamPutBits(&bs, tmp.x, length);                                                  BitstreamPutBits(&bs, tmp.x, length);
1470                                                  BitstreamPutBits(&bs, tmp.y, length);                                                  BitstreamPutBits(&bs, tmp.y, length);
1471                                          }                                          }
# Line 1360  Line 1474 
1474                  }                  }
1475          }          }
1476    
1477          if (!hint->rawhints)          if (!hint->rawhints) {
         {  
1478                  BitstreamPad(&bs);                  BitstreamPad(&bs);
1479                  hint->hintlength = BitstreamLength(&bs);                  hint->hintlength = BitstreamLength(&bs);
1480          }          }
1481  }  }
1482    
1483    
1484  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits)  static int
1485    FrameCodeI(Encoder * pEnc,
1486                       Bitstream * bs,
1487                       uint32_t * pBits)
1488  {  {
1489    
1490          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
# Line 1382  Line 1498 
1498          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1499    
1500          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1501          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1502    #define DIVX501B481P "DivX501b481p"
1503            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1504                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1505            }
1506    
1507            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1508            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1509    
1510          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1511    
# Line 1391  Line 1514 
1514          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1515    
1516          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++)
1517                  for (x = 0; x < pEnc->mbParam.mb_width; x++)                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1518                  {                          MACROBLOCK *pMB =
1519                          MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1520    
1521                          CodeIntraMB(pEnc, pMB);                          CodeIntraMB(pEnc, pMB);
1522    
1523                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1524                                                              dct_codes, qcoeff);
1525    
1526                          start_timer();                          start_timer();
1527                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1528                          stop_prediction_timer();                          stop_prediction_timer();
1529    
1530                          start_timer();                          start_timer();
1531                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1532                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1533                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1534                                    qcoeff[5*64+0]=0;
1535                            }
1536                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1537                          stop_coding_timer();                          stop_coding_timer();
1538                  }                  }
# Line 1416  Line 1545 
1545          pEnc->sStat.iMvCount = 0;          pEnc->sStat.iMvCount = 0;
1546          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1547    
1548          if (pEnc->current->global_flags & XVID_HINTEDME_GET)          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
         {  
1549                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1550          }          }
1551    
# Line 1426  Line 1554 
1554    
1555    
1556  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1557    #define BFRAME_SKIP_THRESHHOLD 30
1558    
1559  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header)  static int
1560    FrameCodeP(Encoder * pEnc,
1561                       Bitstream * bs,
1562                       uint32_t * pBits,
1563                       bool force_inter,
1564                       bool vol_header)
1565  {  {
1566          float fSigma;          float fSigma;
1567    
# Line 1435  Line 1569 
1569          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);
1570    
1571          int iLimit;          int iLimit;
1572          uint32_t x, y;          int x, y, k;
1573          int iSearchRange;          int iSearchRange;
1574          int bIntra;          int bIntra;
1575    
# Line 1443  Line 1577 
1577          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1578    
1579          start_timer();          start_timer();
1580          image_setedges(pRef,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1581                         pEnc->mbParam.edged_width,                                     pEnc->mbParam.width, pEnc->mbParam.height);
                        pEnc->mbParam.edged_height,  
                        pEnc->mbParam.width,  
                        pEnc->mbParam.height,  
                        pEnc->current->global_flags & XVID_INTERLACING);  
1582          stop_edges_timer();          stop_edges_timer();
1583    
1584          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
# Line 1456  Line 1586 
1586          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1587    
1588          if (!force_inter)          if (!force_inter)
1589                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);                  iLimit =
1590                            (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *
1591                                       INTRA_THRESHOLD);
1592          else          else
1593                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;
1594    
1595          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1596                  start_timer();                  start_timer();
1597                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1598                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1599                                                      pEnc->mbParam.edged_height,
1600                                    pEnc->current->rounding_type);                                    pEnc->current->rounding_type);
1601                  stop_inter_timer();                  stop_inter_timer();
1602          }          }
1603    
1604          start_timer();          start_timer();
1605          if (pEnc->current->global_flags & XVID_HINTEDME_SET)          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
         {  
1606                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1607          }                  if (bIntra == 0) MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1608          else                                                                                          &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1609          {  
1610                  bIntra = MotionEstimation(          } else {
1611                          &pEnc->mbParam,  
1612                          pEnc->current,          bIntra =
1613                          pEnc->reference,                  MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1614                          &pEnc->vInterH,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
                         &pEnc->vInterV,  
                         &pEnc->vInterHV,  
1615                          iLimit);                          iLimit);
1616    
1617          }          }
1618          stop_motion_timer();          stop_motion_timer();
1619    
1620          if (bIntra == 1)          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
         {  
                 return FrameCodeI(pEnc, bs, pBits);  
         }  
1621    
1622          pEnc->current->coding_type = P_VOP;          pEnc->current->coding_type = P_VOP;
1623    
1624          if(vol_header)          if(vol_header)
1625                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1626    
1627          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1628            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1629            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1630    
1631          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1632    
1633          pEnc->sStat.iTextBits = 0;          pEnc->sStat.iTextBits = pEnc->sStat.iMvSum = pEnc->sStat.iMvCount =
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1634          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1635    
1636          for(y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1637          {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1638                  for(x = 0; x < pEnc->mbParam.mb_width; x++)                          MACROBLOCK *pMB =
1639                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
                         MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
1640    
1641                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1642    
1643                          if (!bIntra)                          if (!bIntra) {
                         {  
1644                                  start_timer();                                  start_timer();
1645                                  MBMotionCompensation(pMB,                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
1646                                                       x, y,                                                                           &pEnc->vInterH, &pEnc->vInterV,
1647                                                       &pEnc->reference->image,                                                                           &pEnc->vInterHV, &pEnc->current->image,
1648                                                       &pEnc->vInterH,                                                                           dct_codes, pEnc->mbParam.width,
                                                      &pEnc->vInterV,  
                                                      &pEnc->vInterHV,  
                                                      &pEnc->current->image,  
                                                      dct_codes,  
                                                      pEnc->mbParam.width,  
1649                                                       pEnc->mbParam.height,                                                       pEnc->mbParam.height,
1650                                                       pEnc->mbParam.edged_width,                                                       pEnc->mbParam.edged_width,
1651                                                       pEnc->current->rounding_type);                                                       pEnc->current->rounding_type);
# Line 1534  Line 1655 
1655                                          if(pMB->dquant != NO_CHANGE) {                                          if(pMB->dquant != NO_CHANGE) {
1656                                                  pMB->mode = MODE_INTER_Q;                                                  pMB->mode = MODE_INTER_Q;
1657                                                  pEnc->current->quant += DQtab[pMB->dquant];                                                  pEnc->current->quant += DQtab[pMB->dquant];
1658                                                  if (pEnc->current->quant > 31) pEnc->current->quant = 31;                                                  if (pEnc->current->quant > 31)
1659                                                  else if(pEnc->current->quant < 1) pEnc->current->quant = 1;                                                          pEnc->current->quant = 31;
1660                                                    else if (pEnc->current->quant < 1)
1661                                                            pEnc->current->quant = 1;
1662                                          }                                          }
1663                                  }                                  }
1664                                  pMB->quant = pEnc->current->quant;                                  pMB->quant = pEnc->current->quant;
1665    
1666                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1667    
1668                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                                  if (pMB->mode != MODE_NOT_CODED)
1669                          }                                          pMB->cbp =
1670                          else                                                  MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1671                          {                                                                                    dct_codes, qcoeff);
1672                            } else {
1673                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1674                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1675                                                                      dct_codes, qcoeff);
1676                          }                          }
1677    
1678                          start_timer();                          start_timer();
1679                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1680                          stop_prediction_timer();                          stop_prediction_timer();
1681    
1682                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
                         {  
1683                                  pEnc->sStat.kblks++;                                  pEnc->sStat.kblks++;
1684                            } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1685                                               pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1686                                               pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1687                                    pEnc->sStat.mblks++;
1688                            }  else {
1689                                    pEnc->sStat.ublks++;
1690                          }                          }
1691                          else if (pMB->cbp ||  
1692                                   pMB->mvs[0].x || pMB->mvs[0].y ||                          start_timer();
1693                                   pMB->mvs[1].x || pMB->mvs[1].y ||  
1694                                   pMB->mvs[2].x || pMB->mvs[2].y ||                          /* Finished processing the MB, now check if to CODE or SKIP */
1695                                   pMB->mvs[3].x || pMB->mvs[3].y)  
1696                            if ((pMB->mode == MODE_NOT_CODED) ||
1697                                    (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1698                                    pMB->mvs[0].y == 0 && pMB->dquant == NO_CHANGE)) {
1699    
1700    /* This is a candidate for SKIPping, but check intermediate B-frames first */
1701    
1702                                    int bSkip = 1;
1703                                    pMB->mode = MODE_NOT_CODED;
1704    
1705                                    for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1706                          {                          {
1707                                  pEnc->sStat.mblks++;                                          int iSAD;
1708                                            iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1709                                                                    pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1710                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1711                                            if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1712                                            {       bSkip = 0;
1713                                                    break;
1714                          }                          }
1715                          else                                  }
1716                                    if (!bSkip)
1717                          {                          {
1718                                  pEnc->sStat.ublks++;                                          VECTOR predMV;
1719                                            predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1720                                            pMB->pmvs[0].x = -predMV.x; pMB->pmvs[0].y = -predMV.y;
1721                                            pMB->mode = MODE_INTER;
1722                                            pMB->cbp = 0;
1723                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1724                          }                          }
1725                                    else MBSkip(bs);
1726    
1727                          start_timer();                          } else {
1728                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1729                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1730                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1731                                            qcoeff[5*64+0]=0;
1732                                    }
1733                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1734                            }
1735    
1736                          stop_coding_timer();                          stop_coding_timer();
1737                  }                  }
1738          }          }
1739    
1740          emms();          emms();
1741    
1742          if (pEnc->current->global_flags & XVID_HINTEDME_GET)          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
         {  
1743                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1744          }          }
1745    
# Line 1596  Line 1755 
1755          {          {
1756                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1757                  iSearchRange *= 2;                  iSearchRange *= 2;
1758          }          } else if ((fSigma < iSearchRange / 6)
         else if ((fSigma < iSearchRange / 6)  
1759                   && (pEnc->sStat.fMvPrevSigma >= 0)                   && (pEnc->sStat.fMvPrevSigma >= 0)
1760                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1761                   && (pEnc->mbParam.m_fcode >= 2))       // minimum search range 16                   && (pEnc->mbParam.m_fcode >= 2))       // minimum search range 16
# Line 1608  Line 1766 
1766    
1767          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1768    
1769    #ifdef FRAMEDROP
1770            /* frame drop code */
1771            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1772            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1773                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1774            {
1775                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1776                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1777    
1778                    BitstreamReset(bs);
1779    
1780                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1781                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1782    
1783                    // copy reference frame details into the current frame
1784                    pEnc->current->quant = pEnc->reference->quant;
1785                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1786                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1787                    pEnc->current->fcode = pEnc->reference->fcode;
1788                    pEnc->current->bcode = pEnc->reference->bcode;
1789                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1790                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1791    
1792            }
1793    #endif
1794    
1795          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1796    
1797          return 0;                                        // inter          return 0;                                        // inter
1798  }  }
1799    
1800    
1801  #ifdef BFRAMES  static __inline void
1802  static void FrameCodeB(Encoder * pEnc, FRAMEINFO * frame, Bitstream * bs, uint32_t *pBits)  FrameCodeB(Encoder * pEnc,
1803                       FRAMEINFO * frame,
1804                       Bitstream * bs,
1805                       uint32_t * pBits)
1806  {  {
1807      int16_t dct_codes[6*64];      int16_t dct_codes[6*64];
1808      int16_t qcoeff[6*64];      int16_t qcoeff[6*64];
1809      uint32_t x, y;      uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1810    
1811      IMAGE *f_ref = &pEnc->reference->image;      IMAGE *f_ref = &pEnc->reference->image;
1812          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1813    
1814    #ifdef BFRAMES_DEC_DEBUG
1815            FILE *fp;
1816            static char first=0;
1817    #define BFRAME_DEBUG    if (!first && fp){ \
1818                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1819            }
1820    
1821            if (!first){
1822                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1823            }
1824    #endif
1825    
1826          // forward          // forward
1827          image_setedges(f_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height, frame->global_flags & XVID_INTERLACING);          image_setedges(f_ref, pEnc->mbParam.edged_width,
1828                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1829                                       pEnc->mbParam.height);
1830          start_timer();          start_timer();
1831          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,
1832                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1833                                              0);
1834          stop_inter_timer();          stop_inter_timer();
1835    
1836          // backward          // backward
1837          image_setedges(b_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height, frame->global_flags & XVID_INTERLACING);          image_setedges(b_ref, pEnc->mbParam.edged_width,
1838                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1839                                       pEnc->mbParam.height);
1840      start_timer();      start_timer();
1841          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1842                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1843                                              0);
1844          stop_inter_timer();          stop_inter_timer();
1845    
1846          start_timer();          start_timer();
1847    
1848          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1849                  pEnc->reference->mbs, f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1850                  pEnc->current->mbs, b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1851                            pEnc->reference->mbs, f_ref,
1852                                                     &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1853                                                     pEnc->current->mbs, b_ref, &pEnc->vInterH,
1854                                                     &pEnc->vInterV, &pEnc->vInterHV);
1855    
1856    
1857          stop_motion_timer();          stop_motion_timer();
# Line 1654  Line 1862 
1862          }*/          }*/
1863    
1864      frame->coding_type = B_VOP;      frame->coding_type = B_VOP;
1865      BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);  
1866            set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1867            BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1868    
1869      *pBits = BitstreamPos(bs);      *pBits = BitstreamPos(bs);
1870    
# Line 1664  Line 1874 
1874          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1875    
1876    
1877      for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1878          {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1879                  // reset prediction                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1880                            int direction = pEnc->global & XVID_ALTERNATESCAN ? 2 : 0;
                 forward.x = 0;  
                 forward.y = 0;  
                 backward.x = 0;  
                 backward.y = 0;  
   
                 for (x = 0; x < pEnc->mbParam.mb_width; x++)  
                 {  
                         MACROBLOCK * f_mb = &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];  
                         MACROBLOCK * b_mb = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
                         MACROBLOCK * mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];  
1881    
1882                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
1883                          if (mb->mode == MODE_NOT_CODED)                          if (mb->mode == MODE_NOT_CODED) {
1884                          {                                  //mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0;
                                 mb->mvs[0].x = 0;  
                                 mb->mvs[0].y = 0;  
1885                                  continue;                                  continue;
1886                          }                          }
1887    
1888                            if (mb->mode != MODE_DIRECT_NONE_MV) {
1889                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1890                                          f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1891                                          b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1892                                                                             &pEnc->vInterV, &pEnc->vInterHV,
1893                                          dct_codes);                                          dct_codes);
1894    
1895                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1896                          mb->quant = frame->quant;                          mb->quant = frame->quant;
                         mb->cbp = MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes, qcoeff);  
                         //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);  
   
1897    
1898                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT) &&                                  mb->cbp =
1899                                  mb->cbp == 0 &&                                          MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);
                                 mb->mvs[0].x == 0 &&  
                                 mb->mvs[0].y == 0)  
                         {  
                                 mb->mode = 5;  // skipped  
                         }  
1900    
1901                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1902                          {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
1903                                  mb->pmvs[0].x = mb->mvs[0].x - forward.x;                                          mb->mode = MODE_DIRECT_NONE_MV; // skipped
                                 mb->pmvs[0].y = mb->mvs[0].y - forward.y;  
                                 forward.x = mb->mvs[0].x;  
                                 forward.y = mb->mvs[0].y;  
1904                          }                          }
   
                         if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_BACKWARD)  
                         {  
                                 mb->b_pmvs[0].x = mb->b_mvs[0].x - backward.x;  
                                 mb->b_pmvs[0].y = mb->b_mvs[0].y - backward.y;  
                                 backward.x = mb->b_mvs[0].x;  
                                 backward.y = mb->b_mvs[0].y;  
1905                          }                          }
1906    
1907  //                      printf("[%i %i] M=%i CBP=%i MVX=%i MVY=%i %i,%i  %i,%i\n", x, y, pMB->mode, pMB->cbp, pMB->mvs[0].x, bmb->pmvs[0].x, bmb->pmvs[0].y, forward.x, forward.y);  #ifdef BFRAMES_DEC_DEBUG
1908            BFRAME_DEBUG
1909    #endif
1910                          start_timer();                          start_timer();
1911                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs, &pEnc->sStat);                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1912                                                     &pEnc->sStat, direction);
1913                          stop_coding_timer();                          stop_coding_timer();
1914                  }                  }
1915          }          }
# Line 1734  Line 1919 
1919          // TODO: dynamic fcode/bcode ???          // TODO: dynamic fcode/bcode ???
1920    
1921          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1922    
1923    #ifdef BFRAMES_DEC_DEBUG
1924            if (!first){
1925                    first=1;
1926                    if (fp)
1927                            fclose(fp);
1928  }  }
1929  #endif  #endif
1930    }
1931    
1932    
1933    /*      in case internal output is needed somewhere... */
1934    /*      {
1935            FILE *filehandle;
1936            filehandle=fopen("last-b.pgm","wb");
1937            if (filehandle)
1938            {
1939                    fprintf(filehandle,"P5\n\n");           //
1940                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
1941                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
1942                    fclose(filehandle);
1943                    }
1944            }
1945    */

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.76.2.7

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