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

Diff of /trunk/xvidcore/src/encoder.c

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

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

Legend:
Removed from v.138  
changed lines
  Added in v.358

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