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

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

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

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

Legend:
Removed from v.108  
changed lines
  Added in v.671

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