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

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

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