[svn] / branches / dev-api-3 / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /branches/dev-api-3/xvidcore/src/encoder.c

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

trunk/xvidcore/src/encoder.c revision 145, Sun Apr 28 21:55:06 2002 UTC branches/dev-api-3/xvidcore/src/encoder.c revision 643, Tue Nov 12 14:44:53 2002 UTC
# Line 1  Line 1 
1  /**************************************************************************  /*****************************************************************************
2   *   *
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  -  Encoder main module  -   *  -  Encoder main module  -
# Line 26  Line 26 
26   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
27   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
28   *   *
29   ***************************************************************************/   ****************************************************************************/
30    
31  /****************************************************************************  /*****************************************************************************
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;
39     *             MinChen <chenm001@163.com>
40   *  14.04.2002 added FrameCodeB()   *  14.04.2002 added FrameCodeB()
41   *   *
42   *  $Id: encoder.c,v 1.29 2002-04-28 21:55:06 edgomez Exp $   *  $Id: encoder.c,v 1.76.2.18 2002-11-12 14:44:53 syskin Exp $
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    #include "image/font.h"
58    #include "motion/sad.h"
59    #include "motion/motion.h"
60  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
61  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
62  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
# Line 58  Line 68 
68  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
69  #include "utils/mem_align.h"  #include "utils/mem_align.h"
70    
71    /*****************************************************************************
72     * Local macros
73     ****************************************************************************/
74    
75  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT
76  #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }  #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }
77    
78    /*****************************************************************************
79     * Local function prototypes
80     ****************************************************************************/
81    
82    static int FrameCodeI(Encoder * pEnc,
83                                              Bitstream * bs,
84                                              uint32_t * pBits);
85    
86    static int FrameCodeP(Encoder * pEnc,
87                                              Bitstream * bs,
88                                              uint32_t * pBits,
89                                              bool force_inter,
90                                              bool vol_header);
91    
92    static void FrameCodeB(Encoder * pEnc,
93                                               FRAMEINFO * frame,
94                                               Bitstream * bs,
95                                               uint32_t * pBits);
96    
97    /*****************************************************************************
98     * Local data
99     ****************************************************************************/
100    
101  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits);  static int DQtab[4] = {
 static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header);  
   
 static int DQtab[4] =  
 {  
102          -1, -2, 1, 2          -1, -2, 1, 2
103  };  };
104    
105  static int iDQtab[5] =  static int iDQtab[5] = {
 {  
106          1, 0, NO_CHANGE, 2, 3          1, 0, NO_CHANGE, 2, 3
107  };  };
108    
109    
110  void static image_null(IMAGE * image)  /*****************************************************************************
111  {   * Encoder creation
112          image->y = image->u = image->v = NULL;   *
113  }   * This function creates an Encoder instance, it allocates all necessary
114     * image buffers (reference, current and bframes) and initialize the internal
115     * xvid encoder paremeters according to the XVID_ENC_PARAM input parameter.
116     *
117     * The code seems to be very long but is very basic, mainly memory allocation
118     * and cleaning code.
119     *
120     * Returned values :
121     *    - XVID_ERR_OK     - no errors
122     *    - XVID_ERR_MEMORY - the libc could not allocate memory, the function
123     *                        cleans the structure before exiting.
124     *                        pParam->handle is also set to NULL.
125     *
126     ****************************************************************************/
127    
128  int encoder_create(XVID_ENC_PARAM * pParam)  int
129    encoder_create(XVID_ENC_PARAM * pParam)
130  {  {
131          Encoder *pEnc;          Encoder *pEnc;
132          uint32_t i;          int i;
133    
134          pParam->handle = NULL;          pParam->handle = NULL;
135    
# Line 96  Line 140 
140          ENC_CHECK(!(pParam->width % 2));          ENC_CHECK(!(pParam->width % 2));
141          ENC_CHECK(!(pParam->height % 2));          ENC_CHECK(!(pParam->height % 2));
142    
143          if (pParam->fincr <= 0 || pParam->fbase <= 0)          /* Fps */
144          {  
145            if (pParam->fincr <= 0 || pParam->fbase <= 0) {
146                  pParam->fincr = 1;                  pParam->fincr = 1;
147                  pParam->fbase = 25;                  pParam->fbase = 25;
148          }          }
149    
150          // simplify the "fincr/fbase" fraction          /*
151          // (neccessary, since windows supplies us with huge numbers)           * Simplify the "fincr/fbase" fraction
152             * (neccessary, since windows supplies us with huge numbers)
153             */
154    
155          i = pParam->fincr;          i = pParam->fincr;
156          while (i > 1)          while (i > 1) {
157          {                  if (pParam->fincr % i == 0 && pParam->fbase % i == 0) {
                 if (pParam->fincr % i == 0 && pParam->fbase % i == 0)  
                 {  
158                          pParam->fincr /= i;                          pParam->fincr /= i;
159                          pParam->fbase /= i;                          pParam->fbase /= i;
160                          i = pParam->fincr;                          i = pParam->fincr;
# Line 118  Line 163 
163                  i--;                  i--;
164          }          }
165    
166          if (pParam->fbase > 65535)          if (pParam->fbase > 65535) {
         {  
167                  float div = (float)pParam->fbase / 65535;                  float div = (float)pParam->fbase / 65535;
168    
169                  pParam->fbase = (int)(pParam->fbase / div);                  pParam->fbase = (int)(pParam->fbase / div);
170                  pParam->fincr = (int)(pParam->fincr / div);                  pParam->fincr = (int)(pParam->fincr / div);
171          }          }
172    
173            /* Bitrate allocator defaults */
174    
175          if (pParam->rc_bitrate <= 0)          if (pParam->rc_bitrate <= 0)
176                  pParam->rc_bitrate = 900000;                  pParam->rc_bitrate = 900000;
177    
# Line 137  Line 184 
184          if (pParam->rc_buffer <= 0)          if (pParam->rc_buffer <= 0)
185                  pParam->rc_buffer = 100;                  pParam->rc_buffer = 100;
186    
187            /* Max and min quantizers */
188    
189          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))
190                  pParam->min_quantizer = 1;                  pParam->min_quantizer = 1;
191    
192          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))
193                  pParam->max_quantizer = 31;                  pParam->max_quantizer = 31;
194    
         if (pParam->max_key_interval == 0)              /* 1 keyframe each 10 seconds */  
                 pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;  
   
195          if (pParam->max_quantizer < pParam->min_quantizer)          if (pParam->max_quantizer < pParam->min_quantizer)
196                  pParam->max_quantizer = pParam->min_quantizer;                  pParam->max_quantizer = pParam->min_quantizer;
197    
198          if ((pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE)) == NULL)          /* 1 keyframe each 10 seconds */
199    
200            if (pParam->max_key_interval <= 0)
201                    pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
202    
203            pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
204            if (pEnc == NULL)
205                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
206    
207            /* Zero the Encoder Structure */
208    
209            memset(pEnc, 0, sizeof(Encoder));
210    
211          /* Fill members of Encoder structure */          /* Fill members of Encoder structure */
212    
213          pEnc->mbParam.width = pParam->width;          pEnc->mbParam.width = pParam->width;
# Line 163  Line 219 
219          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;
220          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;
221    
222            pEnc->mbParam.fbase = pParam->fbase;
223            pEnc->mbParam.fincr = pParam->fincr;
224    
225            pEnc->mbParam.m_quant_type = H263_QUANT;
226    
227          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
228    
229          /* Fill rate control parameters */          /* Fill rate control parameters */
# Line 174  Line 235 
235    
236          /* try to allocate frame memory */          /* try to allocate frame memory */
237    
238          pEnc->current = NULL;          pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
239          pEnc->reference = NULL;          pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
240          if ( (pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE)) == NULL ||  
241                   (pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE)) == NULL)          if (pEnc->current == NULL || pEnc->reference == NULL)
242          {                  goto xvid_err_memory1;
243                  if (pEnc->current) xvid_free(pEnc->current);  
244            /* try to allocate mb memory */
245    
246            pEnc->current->mbs =
247                    xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
248                                            pEnc->mbParam.mb_height, CACHE_LINE);
249            pEnc->reference->mbs =
250                    xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
251                                            pEnc->mbParam.mb_height, CACHE_LINE);
252    
253            if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
254                    goto xvid_err_memory2;
255    
256            /* try to allocate image memory */
257    
258    #ifdef _DEBUG_PSNR
259            image_null(&pEnc->sOriginal);
260    #endif
261    
262            image_null(&pEnc->f_refh);
263            image_null(&pEnc->f_refv);
264            image_null(&pEnc->f_refhv);
265    
266            image_null(&pEnc->current->image);
267            image_null(&pEnc->reference->image);
268            image_null(&pEnc->vInterH);
269            image_null(&pEnc->vInterV);
270            image_null(&pEnc->vInterVf);
271            image_null(&pEnc->vInterHV);
272            image_null(&pEnc->vInterHVf);
273    
274    #ifdef _DEBUG_PSNR
275            if (image_create
276                    (&pEnc->sOriginal, pEnc->mbParam.edged_width,
277                     pEnc->mbParam.edged_height) < 0)
278                    goto xvid_err_memory3;
279    #endif
280    
281            if (image_create
282                    (&pEnc->f_refh, pEnc->mbParam.edged_width,
283                     pEnc->mbParam.edged_height) < 0)
284                    goto xvid_err_memory3;
285            if (image_create
286                    (&pEnc->f_refv, pEnc->mbParam.edged_width,
287                     pEnc->mbParam.edged_height) < 0)
288                    goto xvid_err_memory3;
289            if (image_create
290                    (&pEnc->f_refhv, pEnc->mbParam.edged_width,
291                     pEnc->mbParam.edged_height) < 0)
292                    goto xvid_err_memory3;
293    
294            if (image_create
295                    (&pEnc->current->image, pEnc->mbParam.edged_width,
296                     pEnc->mbParam.edged_height) < 0)
297                    goto xvid_err_memory3;
298            if (image_create
299                    (&pEnc->reference->image, pEnc->mbParam.edged_width,
300                     pEnc->mbParam.edged_height) < 0)
301                    goto xvid_err_memory3;
302            if (image_create
303                    (&pEnc->vInterH, pEnc->mbParam.edged_width,
304                     pEnc->mbParam.edged_height) < 0)
305                    goto xvid_err_memory3;
306            if (image_create
307                    (&pEnc->vInterV, pEnc->mbParam.edged_width,
308                     pEnc->mbParam.edged_height) < 0)
309                    goto xvid_err_memory3;
310            if (image_create
311                    (&pEnc->vInterVf, pEnc->mbParam.edged_width,
312                     pEnc->mbParam.edged_height) < 0)
313                    goto xvid_err_memory3;
314            if (image_create
315                    (&pEnc->vInterHV, pEnc->mbParam.edged_width,
316                     pEnc->mbParam.edged_height) < 0)
317                    goto xvid_err_memory3;
318            if (image_create
319                    (&pEnc->vInterHVf, pEnc->mbParam.edged_width,
320                     pEnc->mbParam.edged_height) < 0)
321                    goto xvid_err_memory3;
322    
323    
324    
325            /* B Frames specific init */
326    
327            pEnc->global = pParam->global;
328            pEnc->mbParam.max_bframes = pParam->max_bframes;
329            pEnc->bquant_ratio = pParam->bquant_ratio;
330            pEnc->frame_drop_ratio = pParam->frame_drop_ratio;
331            pEnc->bframes = NULL;
332    
333            if (pEnc->mbParam.max_bframes > 0) {
334                    int n;
335    
336                    pEnc->bframes =
337                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(FRAMEINFO *),
338                                                    CACHE_LINE);
339    
340                    if (pEnc->bframes == NULL)
341                            goto xvid_err_memory3;
342    
343                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
344                            pEnc->bframes[n] = NULL;
345    
346    
347                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
348                            pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
349    
350                            if (pEnc->bframes[n] == NULL)
351                                    goto xvid_err_memory4;
352    
353                            pEnc->bframes[n]->mbs =
354                                    xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
355                                                            pEnc->mbParam.mb_height, CACHE_LINE);
356    
357                            if (pEnc->bframes[n]->mbs == NULL)
358                                    goto xvid_err_memory4;
359    
360                            image_null(&pEnc->bframes[n]->image);
361    
362                            if (image_create
363                                    (&pEnc->bframes[n]->image, pEnc->mbParam.edged_width,
364                                     pEnc->mbParam.edged_height) < 0)
365                                    goto xvid_err_memory4;
366    
367                    }
368            }
369    
370            pEnc->bframenum_head = 0;
371            pEnc->bframenum_tail = 0;
372            pEnc->flush_bframes = 0;
373            pEnc->bframenum_dx50bvop = -1;
374    
375            pEnc->queue = NULL;
376    
377    
378            if (pEnc->mbParam.max_bframes > 0) {
379                    int n;
380    
381                    pEnc->queue =
382                            xvid_malloc(pEnc->mbParam.max_bframes * sizeof(IMAGE),
383                                                    CACHE_LINE);
384    
385                    if (pEnc->queue == NULL)
386                            goto xvid_err_memory4;
387    
388                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
389                            image_null(&pEnc->queue[n]);
390    
391                    for (n = 0; n < pEnc->mbParam.max_bframes; n++) {
392                            if (image_create
393                                    (&pEnc->queue[n], pEnc->mbParam.edged_width,
394                                     pEnc->mbParam.edged_height) < 0)
395                                    goto xvid_err_memory5;
396    
397                    }
398            }
399    
400            pEnc->queue_head = 0;
401            pEnc->queue_tail = 0;
402            pEnc->queue_size = 0;
403    
404            pEnc->mbParam.m_stamp = 0;
405    
406            pEnc->m_framenum = 0;
407            pEnc->current->stamp = 0;
408            pEnc->reference->stamp = 0;
409    
410            pParam->handle = (void *) pEnc;
411    
412            if (pParam->rc_bitrate) {
413                    RateControlInit(&pEnc->rate_control, pParam->rc_bitrate,
414                                                    pParam->rc_reaction_delay_factor,
415                                                    pParam->rc_averaging_period, pParam->rc_buffer,
416                                                    pParam->fbase * 1000 / pParam->fincr,
417                                                    pParam->max_quantizer, pParam->min_quantizer);
418            }
419    
420            init_timer();
421    
422            return XVID_ERR_OK;
423    
424            /*
425             * We handle all XVID_ERR_MEMORY here, this makes the code lighter
426             */
427    
428      xvid_err_memory5:
429    
430    
431            if (pEnc->mbParam.max_bframes > 0) {
432    
433                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
434                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
435                                                      pEnc->mbParam.edged_height);
436                    }
437                    xvid_free(pEnc->queue);
438            }
439    
440      xvid_err_memory4:
441    
442            if (pEnc->mbParam.max_bframes > 0) {
443    
444                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
445    
446                            if (pEnc->bframes[i] == NULL)
447                                    continue;
448    
449                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
450                                                      pEnc->mbParam.edged_height);
451    
452                            xvid_free(pEnc->bframes[i]->mbs);
453    
454                            xvid_free(pEnc->bframes[i]);
455    
456                    }
457    
458                    xvid_free(pEnc->bframes);
459            }
460    
461      xvid_err_memory3:
462    #ifdef _DEBUG_PSNR
463            image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
464                                      pEnc->mbParam.edged_height);
465    #endif
466    
467            image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
468                                      pEnc->mbParam.edged_height);
469            image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
470                                      pEnc->mbParam.edged_height);
471            image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
472                                      pEnc->mbParam.edged_height);
473    
474            image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
475                                      pEnc->mbParam.edged_height);
476            image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
477                                      pEnc->mbParam.edged_height);
478            image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
479                                      pEnc->mbParam.edged_height);
480            image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
481                                      pEnc->mbParam.edged_height);
482            image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
483                                      pEnc->mbParam.edged_height);
484            image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
485                                      pEnc->mbParam.edged_height);
486            image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
487                                      pEnc->mbParam.edged_height);
488    
489      xvid_err_memory2:
490            xvid_free(pEnc->current->mbs);
491            xvid_free(pEnc->reference->mbs);
492    
493      xvid_err_memory1:
494            xvid_free(pEnc->current);
495            xvid_free(pEnc->reference);
496                  xvid_free(pEnc);                  xvid_free(pEnc);
497    
498            pParam->handle = NULL;
499    
500                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
501          }          }
502    
503          /* try to allocate mb memory */  /*****************************************************************************
504     * Encoder destruction
505     *
506     * This function destroy the entire encoder structure created by a previous
507     * successful encoder_create call.
508     *
509     * Returned values (for now only one returned value) :
510     *    - XVID_ERR_OK     - no errors
511     *
512     ****************************************************************************/
513    
514    int
515    encoder_destroy(Encoder * pEnc)
516    {
517            int i;
518    
519            ENC_CHECK(pEnc);
520    
521            /* B Frames specific */
522            if (pEnc->mbParam.max_bframes > 0) {
523    
524                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
525    
526                            image_destroy(&pEnc->queue[i], pEnc->mbParam.edged_width,
527                                              pEnc->mbParam.edged_height);
528                    }
529                    xvid_free(pEnc->queue);
530            }
531    
532    
533            if (pEnc->mbParam.max_bframes > 0) {
534    
535                    for (i = 0; i < pEnc->mbParam.max_bframes; i++) {
536    
537                            if (pEnc->bframes[i] == NULL)
538                                    continue;
539    
540                            image_destroy(&pEnc->bframes[i]->image, pEnc->mbParam.edged_width,
541                                              pEnc->mbParam.edged_height);
542    
543                            xvid_free(pEnc->bframes[i]->mbs);
544    
545                            xvid_free(pEnc->bframes[i]);
546                    }
547    
548                    xvid_free(pEnc->bframes);
549    
550            }
551    
552            /* All images, reference, current etc ... */
553    
554            image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
555                                      pEnc->mbParam.edged_height);
556            image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
557                                      pEnc->mbParam.edged_height);
558            image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
559                                      pEnc->mbParam.edged_height);
560            image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
561                                      pEnc->mbParam.edged_height);
562            image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,
563                                      pEnc->mbParam.edged_height);
564            image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
565                                      pEnc->mbParam.edged_height);
566            image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,
567                                      pEnc->mbParam.edged_height);
568    
569            image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
570                                      pEnc->mbParam.edged_height);
571            image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
572                                      pEnc->mbParam.edged_height);
573            image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
574                                      pEnc->mbParam.edged_height);
575    
576    #ifdef _DEBUG_PSNR
577            image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
578                                      pEnc->mbParam.edged_height);
579    #endif
580    
581            /* Encoder structure */
582    
583            xvid_free(pEnc->current->mbs);
584            xvid_free(pEnc->current);
585    
586            xvid_free(pEnc->reference->mbs);
587            xvid_free(pEnc->reference);
588    
589            xvid_free(pEnc);
590    
591            return XVID_ERR_OK;
592    }
593    
594    
595    static __inline void inc_frame_num(Encoder * pEnc)
596    {
597            pEnc->current->stamp = pEnc->mbParam.m_stamp;   // first frame is zero
598            pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;
599    }
600    
601    
602    static __inline void
603    queue_image(Encoder * pEnc, XVID_ENC_FRAME * pFrame)
604    {
605            if (pEnc->queue_size >= pEnc->mbParam.max_bframes)
606            {
607                    DPRINTF(DPRINTF_DEBUG,"FATAL: QUEUE FULL");
608                    return;
609            }
610    
611            DPRINTF(DPRINTF_DEBUG,"*** QUEUE bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
612                                    pEnc->bframenum_head, pEnc->bframenum_tail,
613                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
614    
615    
616            start_timer();
617            if (image_input
618                    (&pEnc->queue[pEnc->queue_tail], pEnc->mbParam.width, pEnc->mbParam.height,
619                     pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
620                    return;
621            stop_conv_timer();
622    
623            pEnc->queue_size++;
624            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
625    }
626    
627    static __inline void
628    set_timecodes(FRAMEINFO* pCur,FRAMEINFO *pRef, int32_t time_base)
629    {
630    
631                    pCur->ticks = (int32_t)pCur->stamp % time_base;
632                    pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
633    
634                    //HEAVY DEBUG OUTPUT    remove when timecodes prove to be stable
635    
636    /*              fprintf(stderr,"WriteVop:   %d - %d \n",
637                            ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
638                    fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
639                            pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
640                    fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
641                            pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
642    
643    */
644    }
645    
646    
647    
648    
649    
650    /*****************************************************************************
651     * IPB frame encoder entry point
652     *
653     * Returned values :
654     *    - XVID_ERR_OK     - no errors
655     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
656     *                        format
657     ****************************************************************************/
658    
659    int
660    encoder_encode_bframes(Encoder * pEnc,
661                               XVID_ENC_FRAME * pFrame,
662                               XVID_ENC_STATS * pResult)
663    {
664            uint16_t x, y;
665            Bitstream bs;
666            uint32_t bits, mode;
667    
668            int input_valid = 1;
669            int bframes_count = 0;
670    
671    #ifdef _DEBUG_PSNR
672            float psnr;
673            char temp[128];
674    #endif
675    
676            ENC_CHECK(pEnc);
677            ENC_CHECK(pFrame);
678            ENC_CHECK(pFrame->image);
679    
680            start_global_timer();
681    
682            BitstreamInit(&bs, pFrame->bitstream, 0);
683    
684    ipvop_loop:
685    
686            /*
687             * bframe "flush" code
688             */
689    
690            if ((pFrame->image == NULL || pEnc->flush_bframes)
691                    && (pEnc->bframenum_head < pEnc->bframenum_tail)) {
692    
693                    if (pEnc->flush_bframes == 0) {
694                            /*
695                             * we have reached the end of stream without getting
696                             * a future reference frame... so encode last final
697                             * frame as a pframe
698                             */
699    
700                            DPRINTF(DPRINTF_DEBUG,"*** BFRAME (final frame) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
701                                    pEnc->bframenum_head, pEnc->bframenum_tail,
702                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
703    
704                            pEnc->bframenum_tail--;
705                            SWAP(pEnc->current, pEnc->reference);
706    
707                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
708    
709                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
710                            bframes_count = 0;
711    
712                            BitstreamPad(&bs);
713                            pFrame->length = BitstreamLength(&bs);
714                            pFrame->intra = 0;
715    
716                            emms();
717    
718                            return XVID_ERR_OK;
719                    }
720    
721    
722                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
723                                    pEnc->bframenum_head, pEnc->bframenum_tail,
724                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
725    
726                    FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs, &bits);
727                    pEnc->bframenum_head++;
728    
729                    BitstreamPad(&bs);
730                    pFrame->length = BitstreamLength(&bs);
731                    pFrame->intra = 0;
732    
733                    if (input_valid)
734                            queue_image(pEnc, pFrame);
735    
736                    emms();
737    
738                    return XVID_ERR_OK;
739            }
740    
741            if (pEnc->bframenum_head > 0) {
742                    pEnc->bframenum_head = pEnc->bframenum_tail = 0;
743    
744                    /* write an empty marker to the bitstream.
745    
746                       for divx5 decoder compatibility, this marker must consist
747                       of a not-coded p-vop, with a time_base of zero, and time_increment
748                       indentical to the future-referece frame.
749                    */
750    
751                    if ((pEnc->global & XVID_GLOBAL_PACKED)) {
752                            int tmp;
753    
754                            DPRINTF(DPRINTF_DEBUG,"*** EMPTY bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
755                                    pEnc->bframenum_head, pEnc->bframenum_tail,
756                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
757    
758                            BitstreamPad(&bs);
759    
760                            tmp = pEnc->current->seconds;
761                            pEnc->current->seconds = 0; /* force time_base = 0 */
762                            BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);
763                            pEnc->current->seconds = tmp;
764    
765                            pFrame->length = BitstreamLength(&bs);
766                            pFrame->intra = 0;
767    
768                            if (input_valid)
769                                    queue_image(pEnc, pFrame);
770    
771                            emms();
772    
773                            return XVID_ERR_OK;
774                    }
775            }
776    
777    
778    bvop_loop:
779    
780            if (pEnc->bframenum_dx50bvop != -1)
781            {
782    
783                    SWAP(pEnc->current, pEnc->reference);
784                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
785    
786                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
787                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 IVOP");
788                    }
789    
790                    if (input_valid)
791                    {
792                            queue_image(pEnc, pFrame);
793                            input_valid = 0;
794                    }
795    
796            } else if (input_valid) {
797    
798                    SWAP(pEnc->current, pEnc->reference);
799    
800                    start_timer();
801                    if (image_input
802                            (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
803                            pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING))
804                    {
805                            emms();
806                            return XVID_ERR_FORMAT;
807                    }
808                    stop_conv_timer();
809    
810                    // queue input frame, and dequue next image
811                    if (pEnc->queue_size > 0)
812                    {
813                            image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_tail]);
814                            if (pEnc->queue_head != pEnc->queue_tail)
815                            {
816                                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
817                            }
818                            pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
819                            pEnc->queue_tail =  (pEnc->queue_tail + 1) % pEnc->mbParam.max_bframes;
820                    }
821    
822            } else if (pEnc->queue_size > 0) {
823    
824                    SWAP(pEnc->current, pEnc->reference);
825    
826                    image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head]);
827                    pEnc->queue_head =  (pEnc->queue_head + 1) % pEnc->mbParam.max_bframes;
828                    pEnc->queue_size--;
829    
830            } else {
831    
832                    /* if nothing was encoded, write an 'ignore this frame' flag
833                       to the bitstream */
834    
835                    if (BitstreamPos(&bs) == 0) {
836    
837                            DPRINTF(DPRINTF_DEBUG,"*** SKIP bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
838                                    pEnc->bframenum_head, pEnc->bframenum_tail,
839                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
840    
841                            BitstreamPutBits(&bs, 0x7f, 8);
842                            pFrame->intra = 0;
843                    }
844    
845                    pFrame->length = BitstreamLength(&bs);
846                    emms();
847                    return XVID_ERR_OK;
848            }
849    
850            pEnc->flush_bframes = 0;
851    
852            emms();
853    
854            // only inc frame num, adapt quant, etc. if we havent seen it before
855            if (pEnc->bframenum_dx50bvop < 0 )
856            {
857                    if (pFrame->quant == 0)
858                            pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
859                    else
860                            pEnc->current->quant = pFrame->quant;
861    
862    /*              if (pEnc->current->quant < 1)
863                            pEnc->current->quant = 1;
864    
865                    if (pEnc->current->quant > 31)
866                            pEnc->current->quant = 31;
867    */
868                    pEnc->current->global_flags = pFrame->general;
869                    pEnc->current->motion_flags = pFrame->motion;
870    
871                    /* ToDo : dynamic fcode (in both directions) */
872                    pEnc->current->fcode = pEnc->mbParam.m_fcode;
873                    pEnc->current->bcode = pEnc->mbParam.m_fcode;
874    
875                    inc_frame_num(pEnc);
876    
877    #ifdef _DEBUG_PSNR
878                    image_copy(&pEnc->sOriginal, &pEnc->current->image,
879                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
880    #endif
881    
882                    emms();
883    
884                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
885                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
886                                    "%i  if:%i  st:%i", pEnc->m_framenum++, pEnc->iFrameNum, pEnc->current->stamp);
887                    }
888    
889            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
890             * Luminance masking
891             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
892    
893                    if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
894                            int *temp_dquants =
895                                    (int *) xvid_malloc(pEnc->mbParam.mb_width *
896                                                                    pEnc->mbParam.mb_height * sizeof(int),
897                                                                    CACHE_LINE);
898    
899                            pEnc->current->quant =
900                                    adaptive_quantization(pEnc->current->image.y,
901                                                                      pEnc->mbParam.edged_width, temp_dquants,
902                                                                      pEnc->current->quant, pEnc->current->quant,
903                                                                      2 * pEnc->current->quant,
904                                                                      pEnc->mbParam.mb_width,
905                                                                      pEnc->mbParam.mb_height);
906    
907                            for (y = 0; y < pEnc->mbParam.mb_height; y++) {
908    
909    #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
910    
911                                    for (x = 0; x < pEnc->mbParam.mb_width; x++) {
912                                            MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
913    
914                                            pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
915                                    }
916    
917    #undef OFFSET
918                            }
919    
920                            xvid_free(temp_dquants);
921                    }
922    
923            }
924    
925            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
926             * ivop/pvop/bvop selection
927             * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
928    
929    
930            if (pEnc->iFrameNum == 0 || pFrame->intra == 1 || pEnc->bframenum_dx50bvop >= 0 ||
931                    (pFrame->intra < 0 && pEnc->iMaxKeyInterval > 0 &&
932                     pEnc->iFrameNum >= pEnc->iMaxKeyInterval)
933                    || 2 == (mode = MEanalysis(&pEnc->reference->image, pEnc->current,
934                                                                            &pEnc->mbParam, pEnc->iMaxKeyInterval,
935                                                                            (pFrame->intra < 0) ? pEnc->iFrameNum : 0,
936                                                                            bframes_count++))) {
937    
938                    /*
939                     * This will be coded as an Intra Frame
940                     */
941    
942                    DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
943                                    pEnc->bframenum_head, pEnc->bframenum_tail,
944                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
945    
946                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
947                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
948                    }
949    
950                    // when we reach an iframe in DX50BVOP mode, encode the last bframe as a pframe
951    
952                    if ((pEnc->global & XVID_GLOBAL_DX50BVOP) && pEnc->bframenum_tail > 0) {
953    
954                            pEnc->bframenum_tail--;
955                            pEnc->bframenum_dx50bvop = pEnc->bframenum_tail;
956    
957                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_dx50bvop]);
958                            if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
959                                    image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
960                            }
961                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
962                            bframes_count = 0;
963    
964                            pFrame->intra = 0;
965    
966                    } else {
967    
968                            FrameCodeI(pEnc, &bs, &bits);
969                            bframes_count = 0;
970                            pFrame->intra = 1;
971    
972                            pEnc->bframenum_dx50bvop = -1;
973                    }
974    
975                    pEnc->flush_bframes = 1;
976    
977                    if ((pEnc->global & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
978                            BitstreamPadAlways(&bs);
979                            input_valid = 0;
980                            goto ipvop_loop;
981                    }
982    
983                    /*
984                     * NB : sequences like "IIBB" decode fine with msfdam but,
985                     *      go screwy with divx 5.00
986                     */
987            } else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes || mode != 0) {
988                    /*
989                     * This will be coded as a Predicted Frame
990                     */
991    
992                    DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
993                                    pEnc->bframenum_head, pEnc->bframenum_tail,
994                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
995    
996                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
997                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
998                    }
999    
1000                    FrameCodeP(pEnc, &bs, &bits, 1, 0);
1001                    bframes_count = 0;
1002                    pFrame->intra = 0;
1003                    pEnc->flush_bframes = 1;
1004    
1005                    if ((pEnc->global & XVID_GLOBAL_PACKED) && (pEnc->bframenum_tail > 0)) {
1006                            BitstreamPadAlways(&bs);
1007                            input_valid = 0;
1008                            goto ipvop_loop;
1009                    }
1010    
1011            } else {
1012                    /*
1013                     * This will be coded as a Bidirectional Frame
1014                     */
1015    
1016                    if ((pEnc->global & XVID_GLOBAL_DEBUG)) {
1017                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1018                    }
1019    
1020                    if (pFrame->bquant < 1) {
1021                            pEnc->current->quant =
1022                                    ((pEnc->reference->quant +
1023                                      pEnc->current->quant) * pEnc->bquant_ratio) / 200;
1024                    } else {
1025                            pEnc->current->quant = pFrame->bquant;
1026                    }
1027                    if (pEnc->current->quant < 1)
1028                            pEnc->current->quant = 1;
1029    
1030          pEnc->current->mbs = NULL;                  if (pEnc->current->quant > 31)
1031          pEnc->reference->mbs = NULL;                          pEnc->current->quant = 31;
1032    
 #ifdef _DEBUG  
 #ifdef WIN32  
 OutputDebugString("malloc mbs");  
 #endif  
 #endif  
1033    
1034          if ((pEnc->current->mbs = xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height, CACHE_LINE)) == NULL ||                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",
1035                  (pEnc->reference->mbs = xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height, CACHE_LINE)) == NULL)                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1036          {                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
                 if (pEnc->current->mbs) xvid_free(pEnc->current->mbs);  
                 xvid_free(pEnc->current);  
                 xvid_free(pEnc->reference);  
                 xvid_free(pEnc);  
         }  
1037    
         /* try to allocate image memory */  
1038    
 #ifdef _DEBUG  
         image_null(&pEnc->sOriginal);  
 #endif  
         image_null(&pEnc->current->image);  
         image_null(&pEnc->reference->image);  
         image_null(&pEnc->vInterH);  
         image_null(&pEnc->vInterV);  
         image_null(&pEnc->vInterVf);  
         image_null(&pEnc->vInterHV);  
         image_null(&pEnc->vInterHVf);  
1039    
1040  #ifdef _DEBUG                  /* store frame into bframe buffer & swap ref back to current */
1041  #ifdef WIN32                  SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1042  OutputDebugString("malloc images");                  SWAP(pEnc->current, pEnc->reference);
 #endif  
 #endif  
         if (  
 #ifdef _DEBUG  
                 image_create(&pEnc->sOriginal, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0 ||  
 #endif  
                 image_create(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0 ||  
                 image_create(&pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0 ||  
                 image_create(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0 ||  
                 image_create(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0 ||  
                 image_create(&pEnc->vInterVf, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0 ||  
                 image_create(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0 ||  
                 image_create(&pEnc->vInterHVf, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)  
         {  
 #ifdef _DEBUG  
                 image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
 #endif  
                 image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
1043    
1044                  xvid_free(pEnc->current);                  pEnc->bframenum_tail++;
                 xvid_free(pEnc->reference);  
                 xvid_free(pEnc);  
                 return XVID_ERR_MEMORY;  
         }  
1045    
1046          pParam->handle = (void *)pEnc;                  pFrame->intra = 0;
1047                    pFrame->length = 0;
1048    
1049          if (pParam->rc_bitrate)                  input_valid = 0;
1050          {                  goto bvop_loop;
                 RateControlInit(pParam->rc_bitrate, pParam->rc_reaction_delay_factor,  
                         pParam->rc_averaging_period, pParam->rc_buffer, pParam->fbase * 1000 / pParam->fincr,  
                         pParam->max_quantizer, pParam->min_quantizer);  
1051          }          }
1052    
1053          init_timer();          pEnc->iFrameNum++;
1054    
1055          return XVID_ERR_OK;          BitstreamPad(&bs);
1056            pFrame->length = BitstreamLength(&bs);
1057    
1058            if (pResult) {
1059                    pResult->quant = pEnc->current->quant;
1060                    pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);
1061                    pResult->kblks = pEnc->sStat.kblks;
1062                    pResult->mblks = pEnc->sStat.mblks;
1063                    pResult->ublks = pEnc->sStat.ublks;
1064  }  }
1065    
1066            emms();
1067    
1068  int encoder_destroy(Encoder * pEnc)  #ifdef _DEBUG_PSNR
1069  {          psnr =
1070          ENC_CHECK(pEnc);                  image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1071                                       pEnc->mbParam.edged_width, pEnc->mbParam.width,
1072                                       pEnc->mbParam.height);
1073    
1074          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          snprintf(temp, 127, "PSNR: %f\n", psnr);
1075          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          DEBUG(temp);
         image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
         image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
         image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
         image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
         image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
 #ifdef _DEBUG  
                 image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
1076  #endif  #endif
         xvid_free(pEnc->current->mbs);  
         xvid_free(pEnc->current);  
1077    
1078          xvid_free(pEnc->reference->mbs);          if (pFrame->quant == 0) {
1079          xvid_free(pEnc->reference);                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1080                                                      pFrame->length, pFrame->intra);
1081            }
1082    
1083          xvid_free(pEnc);          stop_global_timer();
1084            write_timer();
1085    
1086            emms();
1087          return XVID_ERR_OK;          return XVID_ERR_OK;
1088  }  }
1089    
1090  int encoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult)  
1091    
1092    /*****************************************************************************
1093     * "original" IP frame encoder entry point
1094     *
1095     * Returned values :
1096     *    - XVID_ERR_OK     - no errors
1097     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
1098     *                        format
1099     ****************************************************************************/
1100    
1101    int
1102    encoder_encode(Encoder * pEnc,
1103                               XVID_ENC_FRAME * pFrame,
1104                               XVID_ENC_STATS * pResult)
1105  {  {
1106          uint16_t x, y;          uint16_t x, y;
1107          Bitstream bs;          Bitstream bs;
1108          uint32_t bits;          uint32_t bits;
1109          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
1110  #ifdef _DEBUG  
1111    #ifdef _DEBUG_PSNR
1112          float psnr;          float psnr;
1113          uint8_t temp[100];          uint8_t temp[128];
1114  #endif  #endif
1115    
1116          start_global_timer();          start_global_timer();
# Line 314  Line 1126 
1126          pEnc->current->motion_flags = pFrame->motion;          pEnc->current->motion_flags = pFrame->motion;
1127          pEnc->mbParam.hint = &pFrame->hint;          pEnc->mbParam.hint = &pFrame->hint;
1128    
1129          start_timer();          inc_frame_num(pEnc);
1130          if (image_input(&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width,  
1131                          pFrame->image, pFrame->colorspace))          /* disable alternate scan flag if interlacing is not enabled */
1132            if ((pEnc->current->global_flags & XVID_ALTERNATESCAN) &&
1133                    !(pEnc->current->global_flags & XVID_INTERLACING))
1134          {          {
1135                  return XVID_ERR_FORMAT;                  pEnc->current->global_flags -= XVID_ALTERNATESCAN;
1136          }          }
1137    
1138            start_timer();
1139            if (image_input
1140                    (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
1141                     pEnc->mbParam.edged_width, pFrame->image, pFrame->stride, pFrame->colorspace, pFrame->general & XVID_INTERLACING) < 0)
1142                    return XVID_ERR_FORMAT;
1143          stop_conv_timer();          stop_conv_timer();
1144    
1145  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
1146          image_copy(&pEnc->sOriginal, &pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.height);          image_copy(&pEnc->sOriginal, &pEnc->current->image,
1147                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
1148  #endif  #endif
1149    
1150          EMMS();          emms();
1151    
1152          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
1153    
1154          if (pFrame->quant == 0)          if (pFrame->quant == 0) {
1155          {                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
1156                  pEnc->current->quant = RateControlGetQ(0);          } else {
         }  
         else  
         {  
1157                  pEnc->current->quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
1158          }          }
1159    
1160          if ((pEnc->current->global_flags & XVID_LUMIMASKING))          if ((pEnc->current->global_flags & XVID_QUARTERPEL))
1161          {                  pEnc->mbParam.m_quarterpel = 1;
1162                  int * temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);          else
1163                    pEnc->mbParam.m_quarterpel = 0;
1164    
1165                  pEnc->current->quant = adaptive_quantization(pEnc->current->image.y,          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1166                                                              pEnc->mbParam.edged_width,  // stride                  int *temp_dquants =
1167                                                              temp_dquants,                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
1168                                                              pEnc->current->quant,                                                                  pEnc->mbParam.mb_height * sizeof(int),
1169                                                              pEnc->current->quant,       // min_quant                                                                  CACHE_LINE);
1170                                                              2*pEnc->current->quant,     // max_quant  
1171                    pEnc->current->quant =
1172                            adaptive_quantization(pEnc->current->image.y,
1173                                                                      pEnc->mbParam.edged_width, temp_dquants,
1174                                                                      pEnc->current->quant, pEnc->current->quant,
1175                                                                      2 * pEnc->current->quant,
1176                                                              pEnc->mbParam.mb_width,                                                              pEnc->mbParam.mb_width,
1177                                                              pEnc->mbParam.mb_height);                                                              pEnc->mbParam.mb_height);
1178    
1179                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                  for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1180                          for (x = 0; x < pEnc->mbParam.mb_width; x++)  
1181                          {  #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
1182                                  MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
1183                                  pMB->dquant = iDQtab[(temp_dquants[y * pEnc->mbParam.mb_width + x] + 2)];                          for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1184    
1185    
1186                                    MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
1187    
1188                                    pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
1189                            }
1190    
1191    #undef OFFSET
1192                          }                          }
1193    
1194                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
1195          }          }
1196    
# Line 365  Line 1198 
1198                  if(pEnc->mbParam.m_quant_type != H263_QUANT)                  if(pEnc->mbParam.m_quant_type != H263_QUANT)
1199                          write_vol_header = 1;                          write_vol_header = 1;
1200                  pEnc->mbParam.m_quant_type = H263_QUANT;                  pEnc->mbParam.m_quant_type = H263_QUANT;
1201          }          } else if (pEnc->current->global_flags & XVID_MPEGQUANT) {
1202          else if(pEnc->current->global_flags & XVID_MPEGQUANT) {                  int matrix1_changed, matrix2_changed;
                 int ret1, ret2;  
1203    
1204                  ret1 = ret2 = 0;                  matrix1_changed = matrix2_changed = 0;
1205    
1206                  if(pEnc->mbParam.m_quant_type != MPEG4_QUANT)                  if(pEnc->mbParam.m_quant_type != MPEG4_QUANT)
1207                          write_vol_header = 1;                          write_vol_header = 1;
# Line 378  Line 1210 
1210    
1211                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
1212                          if(pFrame->quant_intra_matrix != NULL)                          if(pFrame->quant_intra_matrix != NULL)
1213                                  ret1 = set_intra_matrix(pFrame->quant_intra_matrix);                                  matrix1_changed = set_intra_matrix(pFrame->quant_intra_matrix);
1214                          if(pFrame->quant_inter_matrix != NULL)                          if(pFrame->quant_inter_matrix != NULL)
1215                                  ret2 = set_inter_matrix(pFrame->quant_inter_matrix);                                  matrix2_changed = set_inter_matrix(pFrame->quant_inter_matrix);
1216                  }                  } else {
1217                  else {                          matrix1_changed = set_intra_matrix(get_default_intra_matrix());
1218                          ret1 = set_intra_matrix(get_default_intra_matrix());                          matrix2_changed = set_inter_matrix(get_default_inter_matrix());
                         ret2 = set_inter_matrix(get_default_inter_matrix());  
1219                  }                  }
1220                  if(write_vol_header == 0)                  if(write_vol_header == 0)
1221                          write_vol_header = ret1 | ret2;                          write_vol_header = matrix1_changed | matrix2_changed;
1222          }          }
1223    
1224          if (pFrame->intra < 0)          if (pFrame->intra < 0) {
1225          {                  if ((pEnc->iFrameNum == 0)
1226                  if ((pEnc->iFrameNum == 0) || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->iMaxKeyInterval > 0)
1227                                                 && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval)))                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {
   
1228                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1229                  else                  } else {
1230                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
1231          }          }
1232          else          } else {
1233          {                  if (pFrame->intra == 1) {
                 if (pFrame->intra == 1)  
1234                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
1235                  else                  } else {
1236                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, write_vol_header);
1237          }          }
1238    
1239            }
1240    
1241          BitstreamPutBits(&bs, 0xFFFF, 16);          BitstreamPutBits(&bs, 0xFFFF, 16);
1242          BitstreamPutBits(&bs, 0xFFFF, 16);          BitstreamPutBits(&bs, 0xFFFF, 16);
1243          BitstreamPad(&bs);          BitstreamPad(&bs);
1244          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
1245    
1246          if (pResult)          if (pResult) {
         {  
1247                  pResult->quant = pEnc->current->quant;                  pResult->quant = pEnc->current->quant;
1248                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);
1249                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->sStat.kblks;
# Line 421  Line 1251 
1251                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->sStat.ublks;
1252          }          }
1253    
1254          EMMS();          emms();
   
         if (pFrame->quant == 0)  
         {  
                 RateControlUpdate(pEnc->current->quant, pFrame->length, pFrame->intra);  
         }  
1255    
1256  #ifdef _DEBUG          if (pFrame->quant == 0) {
1257          psnr = image_psnr(&pEnc->sOriginal, &pEnc->current->image, pEnc->mbParam.edged_width,                  RateControlUpdate(&pEnc->rate_control, pEnc->current->quant,
1258                                  pEnc->mbParam.width, pEnc->mbParam.height);                                                    pFrame->length, pFrame->intra);
1259            }
1260    #ifdef _DEBUG_PSNR
1261            psnr =
1262                    image_psnr(&pEnc->sOriginal, &pEnc->current->image,
1263                                       pEnc->mbParam.edged_width, pEnc->mbParam.width,
1264                                       pEnc->mbParam.height);
1265    
1266          sprintf(temp, "PSNR: %f\n", psnr);          snprintf(temp, 127, "PSNR: %f\n", psnr);
1267          DEBUG(temp);          DEBUG(temp);
1268  #endif  #endif
1269    
# Line 445  Line 1276 
1276  }  }
1277    
1278    
1279  static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {  static __inline void
1280    CodeIntraMB(Encoder * pEnc,
1281                            MACROBLOCK * pMB)
1282    {
1283    
1284          pMB->mode = MODE_INTRA;          pMB->mode = MODE_INTRA;
1285    
# Line 456  Line 1290 
1290          pMB->sad16 = 0;          pMB->sad16 = 0;
1291    
1292          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1293                  if(pMB->dquant != NO_CHANGE)                  if (pMB->dquant != NO_CHANGE) {
                 {  
1294                          pMB->mode = MODE_INTRA_Q;                          pMB->mode = MODE_INTRA_Q;
1295                          pEnc->current->quant += DQtab[pMB->dquant];                          pEnc->current->quant += DQtab[pMB->dquant];
1296    
1297                          if (pEnc->current->quant > 31) pEnc->current->quant = 31;                          if (pEnc->current->quant > 31)
1298                          if (pEnc->current->quant < 1) pEnc->current->quant = 1;                                  pEnc->current->quant = 31;
1299                            if (pEnc->current->quant < 1)
1300                                    pEnc->current->quant = 1;
1301                  }                  }
1302          }          }
1303    
# Line 473  Line 1308 
1308  #define FCODEBITS       3  #define FCODEBITS       3
1309  #define MODEBITS        5  #define MODEBITS        5
1310    
1311  void HintedMESet(Encoder * pEnc, int * intra)  void
1312    HintedMESet(Encoder * pEnc,
1313                            int *intra)
1314  {  {
1315          HINTINFO * hint;          HINTINFO * hint;
1316          Bitstream bs;          Bitstream bs;
# Line 482  Line 1319 
1319    
1320          hint = pEnc->mbParam.hint;          hint = pEnc->mbParam.hint;
1321    
1322          if (hint->rawhints)          if (hint->rawhints) {
         {  
1323                  *intra = hint->mvhint.intra;                  *intra = hint->mvhint.intra;
1324          }          } else {
         else  
         {  
1325                  BitstreamInit(&bs, hint->hintstream, hint->hintlength);                  BitstreamInit(&bs, hint->hintstream, hint->hintlength);
1326                  *intra = BitstreamGetBit(&bs);                  *intra = BitstreamGetBit(&bs);
1327          }          }
1328    
1329          if (*intra)          if (*intra) {
         {  
1330                  return;                  return;
1331          }          }
1332    
1333          pEnc->current->fcode = (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs, FCODEBITS);          pEnc->current->fcode =
1334                    (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs,
1335                                                                                                                                     FCODEBITS);
1336    
1337          length  = pEnc->current->fcode + 5;          length  = pEnc->current->fcode + 5;
1338          high    = 1 << (length - 1);          high    = 1 << (length - 1);
1339    
1340          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)          for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
1341          {                  for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
1342                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)                          MACROBLOCK *pMB =
1343                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1344                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                          MVBLOCKHINT *bhint =
1345                          MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1346                          VECTOR pred[4];                          VECTOR pred;
1347                          VECTOR tmp;                          VECTOR tmp;
                         uint32_t dummy[4];  
1348                          int vec;                          int vec;
1349    
1350                          pMB->mode = (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs, MODEBITS);                          pMB->mode =
1351                                    (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs,
1352                                                                                                                                      MODEBITS);
1353    
1354                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;
1355                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;                          pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;
1356    
1357                          if (pMB->mode == MODE_INTER)                          if (pMB->mode == MODE_INTER) {
1358                          {                                  tmp.x =
1359                                  tmp.x  = (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs, length);                                          (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs,
1360                                  tmp.y  = (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs, length);                                                                                                                                                    length);
1361                                    tmp.y =
1362                                            (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs,
1363                                                                                                                                                      length);
1364                                  tmp.x -= (tmp.x >= high) ? high*2 : 0;                                  tmp.x -= (tmp.x >= high) ? high*2 : 0;
1365                                  tmp.y -= (tmp.y >= high) ? high*2 : 0;                                  tmp.y -= (tmp.y >= high) ? high*2 : 0;
1366    
1367                                  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);
1368    
1369                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1370                                          pMB->mvs[vec].x  = tmp.x;                                          pMB->mvs[vec].x  = tmp.x;
1371                                          pMB->mvs[vec].y  = tmp.y;                                          pMB->mvs[vec].y  = tmp.y;
1372                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
1373                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
1374                                  }                                  }
1375                          }                          } else if (pMB->mode == MODE_INTER4V) {
1376                          else if (pMB->mode == MODE_INTER4V)                                  for (vec = 0; vec < 4; ++vec) {
1377                          {                                          tmp.x =
1378                                  for (vec=0 ; vec<4 ; ++vec)                                                  (hint->rawhints) ? bhint->mvs[vec].
1379                                  {                                                  x : BitstreamGetBits(&bs, length);
1380                                          tmp.x  = (hint->rawhints) ? bhint->mvs[vec].x : BitstreamGetBits(&bs, length);                                          tmp.y =
1381                                          tmp.y  = (hint->rawhints) ? bhint->mvs[vec].y : BitstreamGetBits(&bs, length);                                                  (hint->rawhints) ? bhint->mvs[vec].
1382                                                    y : BitstreamGetBits(&bs, length);
1383                                          tmp.x -= (tmp.x >= high) ? high*2 : 0;                                          tmp.x -= (tmp.x >= high) ? high*2 : 0;
1384                                          tmp.y -= (tmp.y >= high) ? high*2 : 0;                                          tmp.y -= (tmp.y >= high) ? high*2 : 0;
1385    
1386                                          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);
1387    
1388                                          pMB->mvs[vec].x  = tmp.x;                                          pMB->mvs[vec].x  = tmp.x;
1389                                          pMB->mvs[vec].y  = tmp.y;                                          pMB->mvs[vec].y  = tmp.y;
1390                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;                                          pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
1391                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;                                          pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
                                 }  
1392                          }                          }
1393                          else    // intra / stuffing / not_coded                          } else                          // intra / stuffing / not_coded
                         {  
                                 for (vec=0 ; vec<4 ; ++vec)  
1394                                  {                                  {
1395                                    for (vec = 0; vec < 4; ++vec) {
1396                                          pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;                                          pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;
1397                                  }                                  }
1398                          }                          }
1399    
1400                          if (pMB->mode == MODE_INTER4V &&                          if (pMB->mode == MODE_INTER4V &&
1401                                  (pEnc->current->global_flags & XVID_LUMIMASKING) && pMB->dquant != NO_CHANGE)                                  (pEnc->current->global_flags & XVID_LUMIMASKING)
1402                          {                                  && pMB->dquant != NO_CHANGE) {
1403                                  pMB->mode = MODE_INTRA;                                  pMB->mode = MODE_INTRA;
1404    
1405                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1406                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;                                          pMB->mvs[vec].x = pMB->mvs[vec].y = 0;
1407                                  }                                  }
1408                          }                          }
# Line 575  Line 1411 
1411  }  }
1412    
1413    
1414  void HintedMEGet(Encoder * pEnc, int intra)  void
1415    HintedMEGet(Encoder * pEnc,
1416                            int intra)
1417  {  {
1418          HINTINFO * hint;          HINTINFO * hint;
1419          Bitstream bs;          Bitstream bs;
# Line 584  Line 1422 
1422    
1423          hint = pEnc->mbParam.hint;          hint = pEnc->mbParam.hint;
1424    
1425          if (hint->rawhints)          if (hint->rawhints) {
         {  
1426                  hint->mvhint.intra = intra;                  hint->mvhint.intra = intra;
1427          }          } else {
         else  
         {  
1428                  BitstreamInit(&bs, hint->hintstream, 0);                  BitstreamInit(&bs, hint->hintstream, 0);
1429                  BitstreamPutBit(&bs, intra);                  BitstreamPutBit(&bs, intra);
1430          }          }
1431    
1432          if (intra)          if (intra) {
1433          {                  if (!hint->rawhints) {
                 if (!hint->rawhints)  
                 {  
1434                          BitstreamPad(&bs);                          BitstreamPad(&bs);
1435                          hint->hintlength = BitstreamLength(&bs);                          hint->hintlength = BitstreamLength(&bs);
1436                  }                  }
# Line 607  Line 1440 
1440          length  = pEnc->current->fcode + 5;          length  = pEnc->current->fcode + 5;
1441          high    = 1 << (length - 1);          high    = 1 << (length - 1);
1442    
1443          if (hint->rawhints)          if (hint->rawhints) {
         {  
1444                  hint->mvhint.fcode = pEnc->current->fcode;                  hint->mvhint.fcode = pEnc->current->fcode;
1445          }          } else {
         else  
         {  
1446                  BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);                  BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);
1447          }          }
1448    
1449          for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)          for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
1450          {                  for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
1451                  for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)                          MACROBLOCK *pMB =
1452                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1453                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                          MVBLOCKHINT *bhint =
1454                          MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];                                  &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1455                          VECTOR tmp;                          VECTOR tmp;
1456    
1457                          if (hint->rawhints)                          if (hint->rawhints) {
                         {  
1458                                  bhint->mode = pMB->mode;                                  bhint->mode = pMB->mode;
1459                          }                          } else {
                         else  
                         {  
1460                                  BitstreamPutBits(&bs, pMB->mode, MODEBITS);                                  BitstreamPutBits(&bs, pMB->mode, MODEBITS);
1461                          }                          }
1462    
1463                          if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)                          if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q) {
                         {  
1464                                  tmp.x  = pMB->mvs[0].x;                                  tmp.x  = pMB->mvs[0].x;
1465                                  tmp.y  = pMB->mvs[0].y;                                  tmp.y  = pMB->mvs[0].y;
1466                                  tmp.x += (tmp.x < 0) ? high*2 : 0;                                  tmp.x += (tmp.x < 0) ? high*2 : 0;
1467                                  tmp.y += (tmp.y < 0) ? high*2 : 0;                                  tmp.y += (tmp.y < 0) ? high*2 : 0;
1468    
1469                                  if (hint->rawhints)                                  if (hint->rawhints) {
                                 {  
1470                                          bhint->mvs[0].x = tmp.x;                                          bhint->mvs[0].x = tmp.x;
1471                                          bhint->mvs[0].y = tmp.y;                                          bhint->mvs[0].y = tmp.y;
1472                                  }                                  } else {
                                 else  
                                 {  
1473                                          BitstreamPutBits(&bs, tmp.x, length);                                          BitstreamPutBits(&bs, tmp.x, length);
1474                                          BitstreamPutBits(&bs, tmp.y, length);                                          BitstreamPutBits(&bs, tmp.y, length);
1475                                  }                                  }
1476                          }                          } else if (pMB->mode == MODE_INTER4V) {
                         else if (pMB->mode == MODE_INTER4V)  
                         {  
1477                                  int vec;                                  int vec;
1478    
1479                                  for (vec=0 ; vec<4 ; ++vec)                                  for (vec = 0; vec < 4; ++vec) {
                                 {  
1480                                          tmp.x  = pMB->mvs[vec].x;                                          tmp.x  = pMB->mvs[vec].x;
1481                                          tmp.y  = pMB->mvs[vec].y;                                          tmp.y  = pMB->mvs[vec].y;
1482                                          tmp.x += (tmp.x < 0) ? high*2 : 0;                                          tmp.x += (tmp.x < 0) ? high*2 : 0;
1483                                          tmp.y += (tmp.y < 0) ? high*2 : 0;                                          tmp.y += (tmp.y < 0) ? high*2 : 0;
1484    
1485                                          if (hint->rawhints)                                          if (hint->rawhints) {
                                         {  
1486                                                  bhint->mvs[vec].x = tmp.x;                                                  bhint->mvs[vec].x = tmp.x;
1487                                                  bhint->mvs[vec].y = tmp.y;                                                  bhint->mvs[vec].y = tmp.y;
1488                                          }                                          } else {
                                         else  
                                         {  
1489                                                  BitstreamPutBits(&bs, tmp.x, length);                                                  BitstreamPutBits(&bs, tmp.x, length);
1490                                                  BitstreamPutBits(&bs, tmp.y, length);                                                  BitstreamPutBits(&bs, tmp.y, length);
1491                                          }                                          }
# Line 677  Line 1494 
1494                  }                  }
1495          }          }
1496    
1497          if (!hint->rawhints)          if (!hint->rawhints) {
         {  
1498                  BitstreamPad(&bs);                  BitstreamPad(&bs);
1499                  hint->hintlength = BitstreamLength(&bs);                  hint->hintlength = BitstreamLength(&bs);
1500          }          }
1501  }  }
1502    
1503    
1504  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits)  static int
1505    FrameCodeI(Encoder * pEnc,
1506                       Bitstream * bs,
1507                       uint32_t * pBits)
1508  {  {
1509    
1510          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
# Line 696  Line 1515 
1515          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1516          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1517          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1518            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1519          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1520    
1521          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1522          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1523    #define DIVX501B481P "DivX501b481p"
1524            if ((pEnc->global & XVID_GLOBAL_PACKED)) {
1525                    BitstreamWriteUserData(bs, DIVX501B481P, strlen(DIVX501B481P));
1526            }
1527    
1528    #define XVID_ID "XviD" XVID_BS_VERSION
1529            BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));
1530    
1531            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1532            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1533    
1534          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1535    
# Line 708  Line 1538 
1538          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1539    
1540          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++)
1541                  for (x = 0; x < pEnc->mbParam.mb_width; x++)                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1542                  {                          MACROBLOCK *pMB =
1543                          MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1544    
1545                          CodeIntraMB(pEnc, pMB);                          CodeIntraMB(pEnc, pMB);
1546    
1547                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1548                                                              dct_codes, qcoeff);
1549    
1550                          start_timer();                          start_timer();
1551                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1552                          stop_prediction_timer();                          stop_prediction_timer();
1553    
1554                          start_timer();                          start_timer();
1555                            if (pEnc->current->global_flags & XVID_GREYSCALE)
1556                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1557                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1558                                    qcoeff[5*64+0]=0;
1559                            }
1560                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1561                          stop_coding_timer();                          stop_coding_timer();
1562                  }                  }
# Line 733  Line 1569 
1569          pEnc->sStat.iMvCount = 0;          pEnc->sStat.iMvCount = 0;
1570          pEnc->mbParam.m_fcode = 2;          pEnc->mbParam.m_fcode = 2;
1571    
1572          if (pEnc->current->global_flags & XVID_HINTEDME_GET)          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
         {  
1573                  HintedMEGet(pEnc, 1);                  HintedMEGet(pEnc, 1);
1574          }          }
1575    
# Line 743  Line 1578 
1578    
1579    
1580  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
1581    #define BFRAME_SKIP_THRESHHOLD 30
1582    
1583  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header)  static int
1584    FrameCodeP(Encoder * pEnc,
1585                       Bitstream * bs,
1586                       uint32_t * pBits,
1587                       bool force_inter,
1588                       bool vol_header)
1589  {  {
1590          float fSigma;          float fSigma;
1591    
# Line 752  Line 1593 
1593          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(qcoeff,    6, 64, int16_t, CACHE_LINE);
1594    
1595          int iLimit;          int iLimit;
1596          uint32_t x, y;          int x, y, k;
1597          int iSearchRange;          int iSearchRange;
1598          int bIntra;          int bIntra, skip_possible;
1599    
1600          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1601          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1602    
1603          start_timer();          start_timer();
1604          image_setedges(pRef,          image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1605                         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);  
1606          stop_edges_timer();          stop_edges_timer();
1607    
1608          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1609          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1610            pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;
1611          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1612    
1613          if (!force_inter)          if (!force_inter)
1614                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);                  iLimit =
1615                            (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *
1616                                       INTRA_THRESHOLD);
1617          else          else
1618                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;
1619    
1620          if ((pEnc->current->global_flags & XVID_HALFPEL)) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1621                  start_timer();                  start_timer();
1622                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1623                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1624                                                      pEnc->mbParam.edged_height,
1625                                                      pEnc->mbParam.m_quarterpel,
1626                                    pEnc->current->rounding_type);                                    pEnc->current->rounding_type);
1627                  stop_inter_timer();                  stop_inter_timer();
1628          }          }
1629    
1630            if (pEnc->current->global_flags & XVID_GMC) {
1631    //              printf("Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1632                    DPRINTF(DPRINTF_HEADER, "Global Motion = %d %d quarterpel=%d\n", pEnc->current->GMC_MV.x, pEnc->current->GMC_MV.y,pEnc->current->quarterpel);
1633                    pEnc->current->coding_type = S_VOP;
1634            } else
1635                    pEnc->current->coding_type = P_VOP;
1636    
1637          start_timer();          start_timer();
1638          if (pEnc->current->global_flags & XVID_HINTEDME_SET)          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
         {  
1639                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
1640            if (bIntra == 0) {
1641                            pEnc->current->fcode = FindFcode(&pEnc->mbParam, pEnc->current);
1642                            MotionEstimationHinted(&pEnc->mbParam, pEnc->current, pEnc->reference,
1643                                                                                            &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1644          }          }
1645          else  
1646          {          } else {
1647                  bIntra = MotionEstimation(  
1648                          &pEnc->mbParam,                  bIntra =
1649                          pEnc->current,                          MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
1650                          pEnc->reference,                           &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
                         &pEnc->vInterH,  
                         &pEnc->vInterV,  
                         &pEnc->vInterHV,  
1651                          iLimit);                          iLimit);
1652          }          }
1653          stop_motion_timer();          stop_motion_timer();
1654    
1655          if (bIntra == 1)          if (bIntra == 1) return FrameCodeI(pEnc, bs, pBits);
1656          {  
1657                  return FrameCodeI(pEnc, bs, pBits);          if ( (pEnc->current->GMC_MV.x == 0) && (pEnc->current->GMC_MV.y == 0) )
1658          }                          pEnc->current->coding_type = P_VOP;             /* no global motion -> no GMC */
1659    
         pEnc->current->coding_type = P_VOP;  
1660    
1661          if(vol_header)          if(vol_header)
1662                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1663    
1664          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);  
1665            set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1666            BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
1667    
1668          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1669    
1670          pEnc->sStat.iTextBits = 0;          pEnc->sStat.iTextBits = pEnc->sStat.iMvSum = pEnc->sStat.iMvCount =
         pEnc->sStat.iMvSum = 0;  
         pEnc->sStat.iMvCount = 0;  
1671          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1672    
1673          for(y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1674          {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1675                  for(x = 0; x < pEnc->mbParam.mb_width; x++)                          MACROBLOCK *pMB =
1676                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
                         MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];  
1677    
1678                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1679    
1680                          if (!bIntra)                          if (!bIntra) {
                         {  
1681                                  start_timer();                                  start_timer();
1682                                  MBMotionCompensation(pMB,                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
1683                                                       x, y,                                                                           &pEnc->vInterH, &pEnc->vInterV,
1684                                                       &pEnc->reference->image,                                                                           &pEnc->vInterHV, &pEnc->current->image,
1685                                                       &pEnc->vInterH,                                                                           dct_codes, pEnc->mbParam.width,
                                                      &pEnc->vInterV,  
                                                      &pEnc->vInterHV,  
                                                      &pEnc->current->image,  
                                                      dct_codes,  
                                                      pEnc->mbParam.width,  
1686                                                       pEnc->mbParam.height,                                                       pEnc->mbParam.height,
1687                                                       pEnc->mbParam.edged_width,                                                       pEnc->mbParam.edged_width,
1688                                                                             pEnc->mbParam.m_quarterpel,
1689                                                       pEnc->current->rounding_type);                                                       pEnc->current->rounding_type);
1690                                  stop_comp_timer();                                  stop_comp_timer();
1691    
# Line 851  Line 1693 
1693                                          if(pMB->dquant != NO_CHANGE) {                                          if(pMB->dquant != NO_CHANGE) {
1694                                                  pMB->mode = MODE_INTER_Q;                                                  pMB->mode = MODE_INTER_Q;
1695                                                  pEnc->current->quant += DQtab[pMB->dquant];                                                  pEnc->current->quant += DQtab[pMB->dquant];
1696                                                  if (pEnc->current->quant > 31) pEnc->current->quant = 31;                                                  if (pEnc->current->quant > 31)
1697                                                  else if(pEnc->current->quant < 1) pEnc->current->quant = 1;                                                          pEnc->current->quant = 31;
1698                                                    else if (pEnc->current->quant < 1)
1699                                                            pEnc->current->quant = 1;
1700                                          }                                          }
1701                                  }                                  }
1702                                  pMB->quant = pEnc->current->quant;                                  pMB->quant = pEnc->current->quant;
1703    
1704                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1705    
1706                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                                  if (pMB->mode != MODE_NOT_CODED)
1707                          }                                          pMB->cbp =
1708                          else                                                  MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1709                          {                                                                                    dct_codes, qcoeff);
1710                            } else {
1711                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1712                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1713                                                                      dct_codes, qcoeff);
1714                          }                          }
1715    
1716                          start_timer();                          start_timer();
1717                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1718                          stop_prediction_timer();                          stop_prediction_timer();
1719    
1720                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
                         {  
1721                                  pEnc->sStat.kblks++;                                  pEnc->sStat.kblks++;
1722                            } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1723                                               pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1724                                               pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
1725                                    pEnc->sStat.mblks++;
1726                            }  else {
1727                                    pEnc->sStat.ublks++;
1728                            }
1729    
1730                            start_timer();
1731    
1732                            /* Finished processing the MB, now check if to CODE or SKIP */
1733    
1734                            skip_possible = (pMB->cbp == 0) & (pMB->mode == MODE_INTER) &
1735                                                            (pMB->dquant == NO_CHANGE);
1736    
1737                            if(pEnc->mbParam.m_quarterpel)
1738                            {       skip_possible &= (pMB->qmvs[0].x == pEnc->current->GMC_MV.x) & (pMB->qmvs[0].y == pEnc->current->GMC_MV.y);
1739                            }
1740                            else
1741                            {       skip_possible &= (pMB->mvs[0].x == pEnc->current->GMC_MV.x) & (pMB->mvs[0].y == pEnc->current->GMC_MV.y);
1742                            }
1743    
1744                            if ( (pMB->mode == MODE_NOT_CODED) || (skip_possible)) {
1745    
1746    /* This is a candidate for SKIPping, but for P-VOPs check intermediate B-frames first */
1747                                    int bSkip = 1;
1748    
1749                                    if (pEnc->current->coding_type == P_VOP)        /* special rule for P-VOP's SKIP */
1750                                            for (k=pEnc->bframenum_head; k< pEnc->bframenum_tail; k++)
1751                                            {
1752                                                    int iSAD;
1753                                                    iSAD = sad16(pEnc->reference->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1754                                                                            pEnc->bframes[k]->image.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1755                                                                    pEnc->mbParam.edged_width,BFRAME_SKIP_THRESHHOLD);
1756                                                    if (iSAD >= BFRAME_SKIP_THRESHHOLD * pMB->quant)
1757                                                    {       bSkip = 0;
1758                                                            break;
1759                          }                          }
1760                          else if (pMB->cbp ||                                          }
1761                                   pMB->mvs[0].x || pMB->mvs[0].y ||  
1762                                   pMB->mvs[1].x || pMB->mvs[1].y ||                                  if (!bSkip)
                                  pMB->mvs[2].x || pMB->mvs[2].y ||  
                                  pMB->mvs[3].x || pMB->mvs[3].y)  
1763                          {                          {
1764                                  pEnc->sStat.mblks++;                                          VECTOR predMV;
1765                                            if(pEnc->mbParam.m_quarterpel) {
1766                                                    predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1767                                                    pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;  /* with GMC, qmvs doesn't have to be (0,0)! */
1768                                                    pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
1769                                            }
1770                                            else {
1771                                                    predMV = get_pmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1772                                                    pMB->pmvs[0].x = pMB->mvs[0].x - predMV.x; /* with GMC, mvs doesn't have to be (0,0)! */
1773                                                    pMB->pmvs[0].y = pMB->mvs[0].y - predMV.y;
1774                                            }
1775                                            pMB->mode = MODE_INTER;
1776                                            pMB->cbp = 0;
1777                                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1778                          }                          }
1779                          else                          else
1780                          {                          {
1781                                  pEnc->sStat.ublks++;                                          pMB->mode = MODE_NOT_CODED;
1782                                            MBSkip(bs);
1783                          }                          }
1784    
1785                          start_timer();                          } else {
1786                                    if (pEnc->current->global_flags & XVID_GREYSCALE)
1787                                    {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1788                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1789                                            qcoeff[5*64+0]=0;
1790                                    }
1791                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1792                            }
1793    
1794                          stop_coding_timer();                          stop_coding_timer();
1795                  }                  }
1796          }          }
1797    
1798          emms();          emms();
1799    
1800          if (pEnc->current->global_flags & XVID_HINTEDME_GET)          if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
         {  
1801                  HintedMEGet(pEnc, 0);                  HintedMEGet(pEnc, 0);
1802          }          }
1803    
# Line 909  Line 1809 
1809          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1810    
1811          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1812              && (pEnc->mbParam.m_fcode <= 3))    // maximum search range 128                  && (pEnc->mbParam.m_fcode <= (3 + pEnc->mbParam.m_quarterpel))) // maximum search range 128
1813          {          {
1814                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1815                  iSearchRange *= 2;                  iSearchRange *= 2;
1816          }          } else if ((fSigma < iSearchRange / 6)
         else if ((fSigma < iSearchRange / 6)  
1817                   && (pEnc->sStat.fMvPrevSigma >= 0)                   && (pEnc->sStat.fMvPrevSigma >= 0)
1818                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1819                   && (pEnc->mbParam.m_fcode >= 2))       // minimum search range 16                          && (pEnc->mbParam.m_fcode >= (2 + pEnc->mbParam.m_quarterpel))) // minimum search range 16
1820          {          {
1821                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1822                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 925  Line 1824 
1824    
1825          pEnc->sStat.fMvPrevSigma = fSigma;          pEnc->sStat.fMvPrevSigma = fSigma;
1826    
1827    #ifdef FRAMEDROP
1828            /* frame drop code */
1829            // DPRINTF(DPRINTF_DEBUG, "kmu %i %i %i", pEnc->sStat.kblks, pEnc->sStat.mblks, pEnc->sStat.ublks);
1830            if (pEnc->sStat.kblks + pEnc->sStat.mblks <
1831                    (pEnc->frame_drop_ratio * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height) / 100)
1832            {
1833                    pEnc->sStat.kblks = pEnc->sStat.mblks = 0;
1834                    pEnc->sStat.ublks = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height;
1835    
1836                    BitstreamReset(bs);
1837    
1838                    set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1839                    BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 0);
1840    
1841                    // copy reference frame details into the current frame
1842                    pEnc->current->quant = pEnc->reference->quant;
1843                    pEnc->current->motion_flags = pEnc->reference->motion_flags;
1844                    pEnc->current->rounding_type = pEnc->reference->rounding_type;
1845                    pEnc->current->quarterpel =  pEnc->reference->quarterpel;
1846                    pEnc->current->fcode = pEnc->reference->fcode;
1847                    pEnc->current->bcode = pEnc->reference->bcode;
1848                    image_copy(&pEnc->current->image, &pEnc->reference->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
1849                    memcpy(pEnc->current->mbs, pEnc->reference->mbs, sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height);
1850    
1851            }
1852    #endif
1853    
1854          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1855    
1856          return 0;                                        // inter          return 0;                                        // inter
1857  }  }
1858    
1859    
1860  #if 0  static __inline void
1861    FrameCodeB(Encoder * pEnc,
1862  static void FrameCodeB(Encoder * pEnc, FRAMEINFO * frame, Bitstream * bs, uint32_t *pBits)                     FRAMEINFO * frame,
1863                       Bitstream * bs,
1864                       uint32_t * pBits)
1865  {  {
1866          int16_t dct_codes[6][64];          int16_t dct_codes[6 * 64];
1867          int16_t qcoeff[6][64];          int16_t qcoeff[6 * 64];
1868          uint32_t x, y;          uint32_t x, y;
         VECTOR forward;  
         VECTOR backward;  
1869    
1870          IMAGE *f_ref = &pEnc->reference->image;          IMAGE *f_ref = &pEnc->reference->image;
1871          IMAGE *b_ref = &pEnc->current->image;          IMAGE *b_ref = &pEnc->current->image;
1872    
1873          /* forward  */  #ifdef BFRAMES_DEC_DEBUG
1874          image_setedges(f_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height);          FILE *fp;
1875            static char first=0;
1876    #define BFRAME_DEBUG    if (!first && fp){ \
1877                    fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1878            }
1879    
1880            if (!first){
1881                    fp=fopen("C:\\XVIDDBGE.TXT","w");
1882            }
1883    #endif
1884    
1885            frame->quarterpel =  pEnc->mbParam.m_quarterpel;
1886    
1887            // forward
1888            image_setedges(f_ref, pEnc->mbParam.edged_width,
1889                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1890                                       pEnc->mbParam.height);
1891          start_timer();          start_timer();
1892          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,
1893                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1894                                              pEnc->mbParam.m_quarterpel, 0);
1895          stop_inter_timer();          stop_inter_timer();
1896    
1897          /* backward */          // backward
1898          image_setedges(b_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height);          image_setedges(b_ref, pEnc->mbParam.edged_width,
1899                                       pEnc->mbParam.edged_height, pEnc->mbParam.width,
1900                                       pEnc->mbParam.height);
1901          start_timer();          start_timer();
1902          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1903                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1904                                              pEnc->mbParam.m_quarterpel, 0);
1905          stop_inter_timer();          stop_inter_timer();
1906    
1907          start_timer();          start_timer();
1908    
1909          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1910                               pEnc->reference->mbs, f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                  ((int32_t)(pEnc->current->stamp - frame->stamp)),                               // time_bp
1911                               pEnc->current->mbs, b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);                  ((int32_t)(pEnc->current->stamp - pEnc->reference->stamp)),     // time_pp
1912                            pEnc->reference->mbs, f_ref,
1913                                                     &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1914                                                     pEnc->current, b_ref, &pEnc->vInterH,
1915                                                     &pEnc->vInterV, &pEnc->vInterHV);
1916    
1917    
1918          stop_motion_timer();          stop_motion_timer();
1919    
1920          if (test_quant_type(&pEnc->mbParam, pEnc->current))          /*if (test_quant_type(&pEnc->mbParam, pEnc->current))
1921          {          {
1922                  BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);                  BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);
1923          }             } */
1924    
1925          frame->coding_type = B_VOP;          frame->coding_type = B_VOP;
1926          BitstreamWriteVopHeader(bs, B_VOP, frame->tick, 0,  
1927                                  frame->quant, frame->fcode, frame->bcode);          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1928            BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);
1929    
1930          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1931    
# Line 982  Line 1935 
1935          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1936    
1937    
1938          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1939          {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1940                  // reset prediction                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1941                            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];  
1942    
1943                          // decoder ignores mb when refence block is INTER(0,0), CBP=0                          // decoder ignores mb when refence block is INTER(0,0), CBP=0
1944                          if (mb->mode == MODE_NOT_CODED)                          if (mb->mode == MODE_NOT_CODED) {
1945                          {                                  //mb->mvs[0].x = mb->mvs[0].y = mb->cbp = 0;
                                 mb->mvs[0].x = 0;  
                                 mb->mvs[0].y = 0;  
1946                                  continue;                                  continue;
1947                          }                          }
1948    
1949                            if (mb->mode != MODE_DIRECT_NONE_MV) {
1950                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                          MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1951                                                   f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1952                                                   b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
1953                                                                             &pEnc->vInterV, &pEnc->vInterHV,
1954                                                   dct_codes);                                                   dct_codes);
1955    
1956                                    if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1957                          mb->quant = frame->quant;                          mb->quant = frame->quant;
                         mb->cbp = MBTransQuantInter(&pEnc->mbParam, frame, x, y, dct_codes, qcoeff);  
                         //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);  
   
1958    
1959                          if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT) &&                                  mb->cbp =
1960                              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  
                         }  
1961    
1962                          if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1963                          {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
1964                                  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;  
1965                          }                          }
   
                         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;  
1966                          }                          }
1967    
1968                          /*  #ifdef BFRAMES_DEC_DEBUG
1969                            printf("[%i %i] M=%i CBP=%i MVX=%i MVY=%i %i,%i  %i,%i\n",          BFRAME_DEBUG
1970                                 x,  #endif
                                y,  
                                pMB->mode,  
                                pMB->cbp,  
                                pMB->mvs[0].x,  
                                bmb->pmvs[0].x,  
                                bmb->pmvs[0].y,  
                                forward.x,  
                                forward.y);  
                         */  
   
1971                          start_timer();                          start_timer();
1972                          MBCodingBVOP(frame, mb, qcoeff, bs, &pEnc->sStat);                          MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs,
1973                                                     &pEnc->sStat, direction);
1974                          stop_coding_timer();                          stop_coding_timer();
1975                  }                  }
1976          }          }
# Line 1064  Line 1981 
1981    
1982          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1983    
1984    #ifdef BFRAMES_DEC_DEBUG
1985            if (!first){
1986                    first=1;
1987                    if (fp)
1988                            fclose(fp);
1989  }  }
   
1990  #endif  #endif
1991    }
1992    
1993    
1994    /*      in case internal output is needed somewhere... */
1995    /*      {
1996            FILE *filehandle;
1997            filehandle=fopen("last-b.pgm","wb");
1998            if (filehandle)
1999            {
2000                    fprintf(filehandle,"P5\n\n");           //
2001                    fprintf(filehandle,"%d %d 255\n",pEnc->mbParam.edged_width,pEnc->mbParam.edged_height);
2002                    fwrite(frame->image.y,pEnc->mbParam.edged_width,pEnc->mbParam.edged_height,filehandle);
2003                    fclose(filehandle);
2004                    }
2005            }
2006    */

Legend:
Removed from v.145  
changed lines
  Added in v.643

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