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

Diff of /xvidcore/src/encoder.c

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

revision 1.16, Fri Mar 29 07:08:09 2002 UTC revision 1.39, Sun Jun 9 13:16:26 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     *  08.05.2002 fix some problem in DEBUG mode;
36     *             MinChen <chenm001@163.com>
37     *  14.04.2002 added FrameCodeB()
38     *
39     *  $Id$
40     *
41     ***************************************************************************/
42    
43  #include <stdlib.h>  #include <stdlib.h>
44  #include <stdio.h>  #include <stdio.h>
45  #include <math.h>  #include <math.h>
# Line 7  Line 49 
49  #include "global.h"  #include "global.h"
50  #include "utils/timer.h"  #include "utils/timer.h"
51  #include "image/image.h"  #include "image/image.h"
52    #include "motion/motion.h"
53  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
54  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
55  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
# Line 19  Line 62 
62  #include "utils/mem_align.h"  #include "utils/mem_align.h"
63    
64  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT
65    #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }
66    
67    static int FrameCodeI(Encoder * pEnc,
68  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits);                        Bitstream * bs,
69  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header);                        uint32_t *pBits);
70    
71    static int FrameCodeP(Encoder * pEnc,
72                          Bitstream * bs,
73                          uint32_t *pBits,
74                          bool force_inter,
75                          bool vol_header);
76    
77    #ifdef BFRAMES
78    static void FrameCodeB(Encoder * pEnc,
79                           FRAMEINFO * frame,
80                           Bitstream * bs,
81                           uint32_t *pBits);
82    #endif
83    
84  static int DQtab[4] =  static int DQtab[4] =
85  {  {
# Line 35  Line 92 
92  };  };
93    
94    
95    void static image_null(IMAGE * image)
96    {
97            image->y = image->u = image->v = NULL;
98    }
99    
100    
101  int encoder_create(XVID_ENC_PARAM * pParam)  int encoder_create(XVID_ENC_PARAM * pParam)
102  {  {
103          Encoder *pEnc;          Encoder *pEnc;
# Line 49  Line 112 
112          ENC_CHECK(!(pParam->width % 2));          ENC_CHECK(!(pParam->width % 2));
113          ENC_CHECK(!(pParam->height % 2));          ENC_CHECK(!(pParam->height % 2));
114    
115            /* Fps */
116    
117          if (pParam->fincr <= 0 || pParam->fbase <= 0)          if (pParam->fincr <= 0 || pParam->fbase <= 0)
118          {          {
119                  pParam->fincr = 1;                  pParam->fincr = 1;
120                  pParam->fbase = 25;                  pParam->fbase = 25;
121          }          }
122    
123          // simplify the "fincr/fbase" fraction          /*
124          // (neccessary, since windows supplies us with huge numbers)           * Simplify the "fincr/fbase" fraction
125             * (neccessary, since windows supplies us with huge numbers)
126             */
127    
128          i = pParam->fincr;          i = pParam->fincr;
129          while (i > 1)          while (i > 1)
# Line 78  Line 145 
145                  pParam->fincr = (int)(pParam->fincr / div);                  pParam->fincr = (int)(pParam->fincr / div);
146          }          }
147    
148          if (pParam->bitrate <= 0)          /* Bitrate allocator defaults */
                 pParam->bitrate = 900000;  
149    
150          if (pParam->rc_buffersize <= 0)          if (pParam->rc_bitrate <= 0)
151                  pParam->rc_buffersize = 16;                  pParam->rc_bitrate = 900000;
152    
153            if (pParam->rc_reaction_delay_factor <= 0)
154                    pParam->rc_reaction_delay_factor = 16;
155    
156            if (pParam->rc_averaging_period <= 0)
157                    pParam->rc_averaging_period = 100;
158    
159            if (pParam->rc_buffer <= 0)
160                    pParam->rc_buffer = 100;
161    
162            /* Max and min quantizers */
163    
164          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))
165                  pParam->min_quantizer = 1;                  pParam->min_quantizer = 1;
# Line 90  Line 167 
167          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))
168                  pParam->max_quantizer = 31;                  pParam->max_quantizer = 31;
169    
         if (pParam->max_key_interval == 0)              /* 1 keyframe each 10 seconds */  
                 pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;  
   
170          if (pParam->max_quantizer < pParam->min_quantizer)          if (pParam->max_quantizer < pParam->min_quantizer)
171                  pParam->max_quantizer = pParam->min_quantizer;                  pParam->max_quantizer = pParam->min_quantizer;
172    
173          if ((pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE)) == NULL)          /* 1 keyframe each 10 seconds */
174    
175            if (pParam->max_key_interval == 0)
176                    pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
177    
178    
179            pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
180            if (pEnc == NULL)
181                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
182    
183          /* Fill members of Encoder structure */          /* Fill members of Encoder structure */
# Line 110  Line 191 
191          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;
192          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;
193    
194            pEnc->mbParam.fbase = pParam->fbase;
195            pEnc->mbParam.fincr = pParam->fincr;
196    
197          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
198    
199          /* Fill rate control parameters */          /* Fill rate control parameters */
200    
201          pEnc->mbParam.quant = 4;          pEnc->bitrate = pParam->rc_bitrate;
   
         pEnc->bitrate = pParam->bitrate;  
202    
203          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
204          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->iMaxKeyInterval = pParam->max_key_interval;
205    
206          if (image_create(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          /* try to allocate frame memory */
207    
208            pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
209            pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
210    
211            if ( pEnc->current == NULL || pEnc->reference == NULL)
212                    goto xvid_err_memory1;
213    
214            /* try to allocate mb memory */
215    
216            pEnc->current->mbs = xvid_malloc(sizeof(MACROBLOCK) * \
217                                             pEnc->mbParam.mb_width * \
218                                             pEnc->mbParam.mb_height,
219                                             CACHE_LINE);
220            pEnc->reference->mbs = xvid_malloc(sizeof(MACROBLOCK) * \
221                                               pEnc->mbParam.mb_width * \
222                                               pEnc->mbParam.mb_height,
223                                               CACHE_LINE);
224    
225            if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
226                    goto xvid_err_memory2;
227    
228            /* try to allocate image memory */
229    
230    #ifdef _DEBUG
231            image_null(&pEnc->sOriginal);
232    #endif
233    #ifdef BFRAMES
234            image_null(&pEnc->f_refh);
235            image_null(&pEnc->f_refv);
236            image_null(&pEnc->f_refhv);
237    #endif
238            image_null(&pEnc->current->image);
239            image_null(&pEnc->reference->image);
240            image_null(&pEnc->vInterH);
241            image_null(&pEnc->vInterV);
242            image_null(&pEnc->vInterVf);
243            image_null(&pEnc->vInterHV);
244            image_null(&pEnc->vInterHVf);
245    
246    #ifdef _DEBUG
247            if (image_create(&pEnc->sOriginal,
248                             pEnc->mbParam.edged_width,
249                             pEnc->mbParam.edged_height) < 0)
250                    goto xvid_err_memory3;
251    #endif
252    #ifdef BFRAMES
253            if (image_create(&pEnc->f_refh,
254                             pEnc->mbParam.edged_width,
255                             pEnc->mbParam.edged_height) < 0)
256                    goto xvid_err_memory3;
257            if (image_create(&pEnc->f_refv,
258                             pEnc->mbParam.edged_width,
259                             pEnc->mbParam.edged_height) < 0)
260                    goto xvid_err_memory3;
261            if (image_create(&pEnc->f_refhv,
262                             pEnc->mbParam.edged_width,
263                             pEnc->mbParam.edged_height) < 0)
264                    goto xvid_err_memory3;
265    #endif
266            if (image_create(&pEnc->current->image,
267                             pEnc->mbParam.edged_width,
268                             pEnc->mbParam.edged_height) < 0)
269                    goto xvid_err_memory3;
270            if (image_create(&pEnc->reference->image,
271                             pEnc->mbParam.edged_width,
272                             pEnc->mbParam.edged_height) < 0)
273                    goto xvid_err_memory3;
274            if (image_create(&pEnc->vInterH,
275                             pEnc->mbParam.edged_width,
276                             pEnc->mbParam.edged_height) < 0)
277                    goto xvid_err_memory3;
278            if (image_create(&pEnc->vInterV,
279                             pEnc->mbParam.edged_width,
280                             pEnc->mbParam.edged_height) < 0)
281                    goto xvid_err_memory3;
282            if (image_create(&pEnc->vInterVf,
283                             pEnc->mbParam.edged_width,
284                             pEnc->mbParam.edged_height) < 0)
285                    goto xvid_err_memory3;
286            if (image_create(&pEnc->vInterHV,
287                             pEnc->mbParam.edged_width,
288                             pEnc->mbParam.edged_height) < 0)
289                    goto xvid_err_memory3;
290            if (image_create(&pEnc->vInterHVf,
291                             pEnc->mbParam.edged_width,
292                             pEnc->mbParam.edged_height) < 0)
293                    goto xvid_err_memory3;
294    
295    
296    
297            /* B Frames specific init */
298    #ifdef BFRAMES
299    
300            pEnc->mbParam.max_bframes = pParam->max_bframes;
301            pEnc->bquant_ratio = pParam->bquant_ratio;
302            pEnc->bframes = NULL;
303    
304            if (pEnc->mbParam.max_bframes > 0)
305          {          {
306                  xvid_free(pEnc);                  int n;
307                  return XVID_ERR_MEMORY;  
308                    pEnc->bframes = xvid_malloc(pEnc->mbParam.max_bframes * \
309                                                sizeof(FRAMEINFO *),
310                                                CACHE_LINE);
311    
312                    if (pEnc->bframes == NULL)
313                            goto xvid_err_memory3;
314    
315                    for (n=0; n<pEnc->mbParam.max_bframes; n++)
316                            pEnc->bframes[n] = NULL;
317    
318    
319                    for (n = 0; n < pEnc->mbParam.max_bframes; n++)
320                    {
321                            pEnc->bframes[n] = xvid_malloc(sizeof(FRAMEINFO),
322                                                           CACHE_LINE);
323    
324                            if (pEnc->bframes[n] == NULL)
325                                    goto xvid_err_memory4;
326    
327                            pEnc->bframes[n]->mbs = xvid_malloc(sizeof(MACROBLOCK) * \
328                                                                pEnc->mbParam.mb_width * \
329                                                                pEnc->mbParam.mb_height,
330                                                                CACHE_LINE);
331    
332                            if (pEnc->bframes[n]->mbs == NULL)
333                                    goto xvid_err_memory4;
334    
335                            image_null(&pEnc->bframes[n]->image);
336    
337                            if (image_create(&pEnc->bframes[n]->image,
338                                             pEnc->mbParam.edged_width,
339                                             pEnc->mbParam.edged_height) < 0)
340                                    goto xvid_err_memory4;
341    
342          }          }
343            }
344    
345            pEnc->bframenum_head = 0;
346            pEnc->bframenum_tail = 0;
347            pEnc->flush_bframes = 0;
348    
349          if (image_create(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          pEnc->mbParam.m_seconds = 0;
350            pEnc->mbParam.m_ticks = 0;
351    #endif
352    
353            pParam->handle = (void *)pEnc;
354    
355            if (pParam->rc_bitrate)
356          {          {
357                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  RateControlInit(&pEnc->rate_control,
358                  xvid_free(pEnc);                                  pParam->rc_bitrate,
359                  return XVID_ERR_MEMORY;                                  pParam->rc_reaction_delay_factor,
360                                    pParam->rc_averaging_period,
361                                    pParam->rc_buffer,
362                                    pParam->fbase * 1000 / pParam->fincr,
363                                    pParam->max_quantizer,
364                                    pParam->min_quantizer);
365          }          }
366    
367          if (image_create(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          init_timer();
368    
369            return XVID_ERR_OK;
370    
371            /*
372             * We handle all XVID_ERR_MEMORY here, this makes the code lighter
373             *
374             * ToDo?: We could avoid that piece of code if encoder_destroy could
375             *        handle different destroy levels
376             */
377    #ifdef BFRAMES
378     xvid_err_memory4:
379            for (i=0; i<pEnc->mbParam.max_bframes; i++)
380          {          {
381                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
382                  image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  if (pEnc->bframes[i] == NULL) continue;
383    
384                    image_destroy(&pEnc->bframes[i]->image,
385                                  pEnc->mbParam.edged_width,
386                                  pEnc->mbParam.edged_height);
387    
388                    xvid_free(pEnc->bframes[i]->mbs);
389    
390                    xvid_free(pEnc->bframes[i]);
391    
392            }
393    
394            xvid_free(pEnc->bframes);
395    
396    #endif
397    
398     xvid_err_memory3:
399    #ifdef _DEBUG
400            image_destroy(&pEnc->sOriginal,
401                          pEnc->mbParam.edged_width,
402                          pEnc->mbParam.edged_height);
403    #endif
404    
405    #ifdef BFRAMES
406            image_destroy(&pEnc->f_refh,
407                          pEnc->mbParam.edged_width,
408                          pEnc->mbParam.edged_height);
409            image_destroy(&pEnc->f_refv,
410                          pEnc->mbParam.edged_width,
411                          pEnc->mbParam.edged_height);
412            image_destroy(&pEnc->f_refhv,
413                          pEnc->mbParam.edged_width,
414                          pEnc->mbParam.edged_height);
415    #endif
416    
417            image_destroy(&pEnc->current->image,
418                          pEnc->mbParam.edged_width,
419                          pEnc->mbParam.edged_height);
420            image_destroy(&pEnc->reference->image,
421                          pEnc->mbParam.edged_width,
422                          pEnc->mbParam.edged_height);
423            image_destroy(&pEnc->vInterH,
424                          pEnc->mbParam.edged_width,
425                          pEnc->mbParam.edged_height);
426            image_destroy(&pEnc->vInterV,
427                          pEnc->mbParam.edged_width,
428                          pEnc->mbParam.edged_height);
429            image_destroy(&pEnc->vInterVf,
430                          pEnc->mbParam.edged_width,
431                          pEnc->mbParam.edged_height);
432            image_destroy(&pEnc->vInterHV,
433                          pEnc->mbParam.edged_width,
434                          pEnc->mbParam.edged_height);
435            image_destroy(&pEnc->vInterHVf,
436                          pEnc->mbParam.edged_width,
437                          pEnc->mbParam.edged_height);
438    
439     xvid_err_memory2:
440            xvid_free(pEnc->current->mbs);
441            xvid_free(pEnc->reference->mbs);
442    
443     xvid_err_memory1:
444            xvid_free(pEnc->current);
445            xvid_free(pEnc->reference);
446                  xvid_free(pEnc);                  xvid_free(pEnc);
447    
448                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
449          }          }
450    
451          if (image_create(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)  int encoder_destroy(Encoder * pEnc)
452    {
453            ENC_CHECK(pEnc);
454    
455            /* B Frames specific */
456    #ifdef BFRAMES
457            int i;
458    
459            for (i=0; i<pEnc->mbParam.max_bframes; i++)
460          {          {
461                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
462                  image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  if (pEnc->bframes[i] == NULL) continue;
463                  image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
464                    image_destroy(&pEnc->bframes[i]->image,
465                                  pEnc->mbParam.edged_width,
466                                  pEnc->mbParam.edged_height);
467    
468                    xvid_free(pEnc->bframes[i]->mbs);
469    
470                    xvid_free(pEnc->bframes[i]);
471    
472            }
473    
474            xvid_free(pEnc->bframes);
475    
476    #endif
477    
478            /* All images, reference, current etc ... */
479    
480            image_destroy(&pEnc->current->image,
481                          pEnc->mbParam.edged_width,
482                          pEnc->mbParam.edged_height);
483            image_destroy(&pEnc->reference->image,
484                          pEnc->mbParam.edged_width,
485                          pEnc->mbParam.edged_height);
486            image_destroy(&pEnc->vInterH,
487                          pEnc->mbParam.edged_width,
488                          pEnc->mbParam.edged_height);
489            image_destroy(&pEnc->vInterV,
490                          pEnc->mbParam.edged_width,
491                          pEnc->mbParam.edged_height);
492            image_destroy(&pEnc->vInterVf,
493                          pEnc->mbParam.edged_width,
494                          pEnc->mbParam.edged_height);
495            image_destroy(&pEnc->vInterHV,
496                          pEnc->mbParam.edged_width,
497                          pEnc->mbParam.edged_height);
498            image_destroy(&pEnc->vInterHVf,
499                          pEnc->mbParam.edged_width,
500                          pEnc->mbParam.edged_height);
501    #ifdef BFRAMES
502            image_destroy(&pEnc->f_refh,
503                          pEnc->mbParam.edged_width,
504                          pEnc->mbParam.edged_height);
505            image_destroy(&pEnc->f_refv,
506                          pEnc->mbParam.edged_width,
507                          pEnc->mbParam.edged_height);
508            image_destroy(&pEnc->f_refhv,
509                          pEnc->mbParam.edged_width,
510                          pEnc->mbParam.edged_height);
511    #endif
512    #ifdef _DEBUG
513            image_destroy(&pEnc->sOriginal,
514                          pEnc->mbParam.edged_width,
515                          pEnc->mbParam.edged_height);
516    #endif
517    
518            /* Encoder structure */
519    
520            xvid_free(pEnc->current->mbs);
521            xvid_free(pEnc->current);
522    
523            xvid_free(pEnc->reference->mbs);
524            xvid_free(pEnc->reference);
525    
526                  xvid_free(pEnc);                  xvid_free(pEnc);
527                  return XVID_ERR_MEMORY;  
528            return XVID_ERR_OK;
529          }          }
530    
531          if (image_create(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)  
532    
533    // ==================================================================
534    #ifdef BFRAMES
535    int encoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult)
536          {          {
537                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          uint16_t x, y;
538                  image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          Bitstream bs;
539                  image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          uint32_t bits;
540                  image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
541                  xvid_free(pEnc);  #ifdef _DEBUG
542                  return XVID_ERR_MEMORY;          float psnr;
543            char temp[128];
544    #endif
545    
546            ENC_CHECK(pEnc);
547            ENC_CHECK(pFrame);
548    
549            start_global_timer();
550    
551            BitstreamInit(&bs, pFrame->bitstream, 0);
552    
553    // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
554    // bframe "flush" code
555    // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
556    
557            if ((pFrame->image == NULL || pEnc->flush_bframes) &&
558                    pEnc->bframenum_head < pEnc->bframenum_tail)
559            {
560    
561                    if (pEnc->flush_bframes == 0)
562                    {
563                            // we have reached end of stream without getting a future reference
564                            // .. so encode last final frame a pframe
565                            //dprintf("--- PFRAME (final frame correction) --- ");
566                            pEnc->bframenum_tail--;
567                            SWAP(pEnc->current, pEnc->reference);
568    
569                            SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
570    
571                            FrameCodeP(pEnc, &bs, &bits, 1, 0);
572    
573                            BitstreamPad(&bs);
574                            pFrame->length = BitstreamLength(&bs);
575                            pFrame->input_consumed = 0;
576                            pFrame->intra = 0;
577                            return XVID_ERR_OK;
578          }          }
579    
580          pEnc->pMBs = xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height, CACHE_LINE);                  //dprintf("--- BFRAME (flush) --- ");
581          if (pEnc->pMBs == NULL)                  FrameCodeB(pEnc,
582                            pEnc->bframes[pEnc->bframenum_head],
583                             &bs, &bits);
584                    pEnc->bframenum_head++;
585    
586    
587                    BitstreamPad(&bs);
588                    pFrame->length = BitstreamLength(&bs);
589                    pFrame->input_consumed = 0;
590                    pFrame->intra = 0;
591                    return XVID_ERR_OK;
592            }
593    
594            if (pFrame->image == NULL)
595          {          {
596                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  pFrame->length = 0;
597                  image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  pFrame->input_consumed = 1;
598                  image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  pFrame->intra = 0;
599                  image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  return XVID_ERR_OK;
                 image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 xvid_free(pEnc);  
                 return XVID_ERR_MEMORY;  
600          }          }
601    
602          // init macroblock array          if (pEnc->bframenum_head > 0)
         for (i = 0; i < pEnc->mbParam.mb_width * pEnc->mbParam.mb_height; i++)  
603          {          {
604                  pEnc->pMBs[i].dquant = NO_CHANGE;                  pEnc->bframenum_head = pEnc->bframenum_tail = 0;
605          }          }
606    
607          pParam->handle = (void *)pEnc;          pEnc->flush_bframes = 0;
608    
609          if (pParam->bitrate)  // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
610    
611            SWAP(pEnc->current, pEnc->reference);
612    
613            pEnc->current->quant = (pFrame->quant == 0) ? RateControlGetQ(&pEnc->rate_control, 0) : pFrame->quant;
614    
615            if(pEnc->current->quant < 1)
616                    pEnc->current->quant = 1;
617    
618            if(pEnc->current->quant > 31)
619                    pEnc->current->quant = 31;
620    
621            pEnc->current->global_flags = pFrame->general;
622            pEnc->current->motion_flags = pFrame->motion;
623            pEnc->current->seconds = pEnc->mbParam.m_seconds;
624            pEnc->current->ticks = pEnc->mbParam.m_ticks;
625            //@@@ TODO: dyanmic fcode (in both directions)
626            pEnc->current->fcode = pEnc->mbParam.m_fcode;
627            pEnc->current->bcode = pEnc->mbParam.m_fcode;
628    
629            start_timer();
630            if (image_input(&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width,
631                            pFrame->image, pFrame->colorspace))
632          {          {
633                  RateControlInit(pParam->bitrate, pParam->rc_buffersize, pParam->fbase * 100 / pParam->fincr,                  return XVID_ERR_FORMAT;
                                 pParam->max_quantizer, pParam->min_quantizer);  
634          }          }
635            stop_conv_timer();
636    
637          create_vlc_tables();  #ifdef _DEBUG
638          init_timer();          image_copy(&pEnc->sOriginal, &pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
639    #endif
640    
641          return XVID_ERR_OK;  
642    // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
643    // lumi masking
644    // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
645    
646            if ((pEnc->current->global_flags & XVID_LUMIMASKING))
647            {
648                    int * temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);
649    
650                    pEnc->current->quant = adaptive_quantization(pEnc->current->image.y,
651                                                                pEnc->mbParam.edged_width,  // stride
652                                                                temp_dquants,
653                                                                pEnc->current->quant,
654                                                                pEnc->current->quant,       // min_quant
655                                                                2*pEnc->current->quant,     // max_quant
656                                                                pEnc->mbParam.mb_width,
657                                                                pEnc->mbParam.mb_height);
658    
659                    for (y = 0; y < pEnc->mbParam.mb_height; y++)
660                            for (x = 0; x < pEnc->mbParam.mb_width; x++)
661                            {
662                                    MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
663                                    pMB->dquant = iDQtab[(temp_dquants[y * pEnc->mbParam.mb_width + x] + 2)];
664                            }
665                    xvid_free(temp_dquants);
666  }  }
667    
668    
669  int encoder_destroy(Encoder * pEnc)  // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
670    // ivop/pvop/bvop selection
671    // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
672    
673            if (pEnc->iFrameNum == 0 ||
674                    pFrame->intra == 1 ||
675                    (pFrame->intra < 0 && (pEnc->iMaxKeyInterval > 0 && pEnc->iFrameNum >= pEnc->iMaxKeyInterval)) ||
676                    image_mad(&pEnc->reference->image, &pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.width, pEnc->mbParam.height) > 30)
677  {  {
678          ENC_CHECK(pEnc);                  //dprintf("--- IFRAME ---");
         ENC_CHECK(pEnc->sCurrent.y);  
         ENC_CHECK(pEnc->sReference.y);  
679    
680          xvid_free(pEnc->pMBs);                  FrameCodeI(pEnc, &bs, &bits);
681          image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
682          image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  pFrame->intra = 1;
683          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  pEnc->flush_bframes = 1;
684          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
685          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  /* note: sequences like "IIBB" decode fine with msfdam but,
686          xvid_free(pEnc);                     go screwy with divx5.00 */
687            }
688            else if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes)
689            {
690                    //dprintf("--- PFRAME ---");
691    
692                    FrameCodeP(pEnc, &bs, &bits, 1, 0);
693                    pFrame->intra = 0;
694                    pEnc->flush_bframes = 1;
695            }
696            else
697            {
698                    //dprintf("--- BFRAME (store) ---  head=%i tail=%i", pEnc->bframenum_head, pEnc->bframenum_tail);
699    
700                    if (pFrame->bquant < 1)
701                    {
702                            pEnc->current->quant = ((pEnc->reference->quant + pEnc->current->quant) * pEnc->bquant_ratio) / 200;
703                    }
704                    else
705                    {
706                            pEnc->current->quant = pFrame->bquant;
707                    }
708    
709                    // store frame into bframe buffer & swap ref back to current
710                    SWAP(pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
711                    SWAP(pEnc->current, pEnc->reference);
712    
713                    pEnc->bframenum_tail++;
714    
715          destroy_vlc_tables();                  pFrame->intra = 0;
716                    pFrame->length = 0;
717                    pFrame->input_consumed = 1;
718    
719                    pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
720                    if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)
721                    {
722                            pEnc->mbParam.m_seconds++;
723                            pEnc->mbParam.m_ticks = 0;
724                    }
725          return XVID_ERR_OK;          return XVID_ERR_OK;
726  }  }
727    
728            BitstreamPad(&bs);
729            pFrame->length = BitstreamLength(&bs);
730    
731            if (pResult)
732            {
733                    pResult->quant = pEnc->current->quant;
734                    pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);
735                    pResult->kblks = pEnc->sStat.kblks;
736                    pResult->mblks = pEnc->sStat.mblks;
737                    pResult->ublks = pEnc->sStat.ublks;
738            }
739    
740    #ifdef _DEBUG
741            psnr = image_psnr(&pEnc->sOriginal, &pEnc->current->image, pEnc->mbParam.edged_width,
742                                    pEnc->mbParam.width, pEnc->mbParam.height);
743    
744            sprintf(temp, "PSNR: %f\n", psnr);
745            DEBUG(temp);
746    #endif
747    
748            if (pFrame->quant == 0)
749            {
750                    RateControlUpdate(&pEnc->rate_control,
751                                      pEnc->current->quant,
752                                      pFrame->length,
753                                      pFrame->intra);
754            }
755    
756            pEnc->iFrameNum++;
757            pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
758            if (pEnc->mbParam.m_ticks > pEnc->mbParam.fbase)
759            {
760                    pEnc->mbParam.m_seconds++;
761                    pEnc->mbParam.m_ticks = 0;
762            }
763            pFrame->input_consumed = 1;
764    
765            stop_global_timer();
766            write_timer();
767    
768            return XVID_ERR_OK;
769    }
770    // ==================================================================
771    #else
772  int encoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult)  int encoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult)
773  {  {
774          uint16_t x, y;          uint16_t x, y;
775          Bitstream bs;          Bitstream bs;
776          uint32_t bits;          uint32_t bits;
777          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
778    #ifdef _DEBUG
779            float psnr;
780            uint8_t temp[100];
781    #endif
782    
783          start_global_timer();          start_global_timer();
784    
# Line 227  Line 787 
787          ENC_CHECK(pFrame->bitstream);          ENC_CHECK(pFrame->bitstream);
788          ENC_CHECK(pFrame->image);          ENC_CHECK(pFrame->image);
789    
790          pEnc->mbParam.global_flags = pFrame->general;          SWAP(pEnc->current, pEnc->reference);
791          pEnc->mbParam.motion_flags = pFrame->motion;  
792            pEnc->current->global_flags = pFrame->general;
793            pEnc->current->motion_flags = pFrame->motion;
794            pEnc->mbParam.hint = &pFrame->hint;
795    
796          start_timer();          start_timer();
797          if (image_input(&pEnc->sCurrent, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width,          if (image_input(&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width,
798                          pFrame->image, pFrame->colorspace))                          pFrame->image, pFrame->colorspace))
799          {          {
800                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
801          }          }
802          stop_conv_timer();          stop_conv_timer();
803    
804    #ifdef _DEBUG
805            image_copy(&pEnc->sOriginal, &pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height);
806    #endif
807    
808          EMMS();          EMMS();
809    
810          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
811    
812          if (pFrame->quant == 0)          if (pFrame->quant == 0)
813          {          {
814                  pEnc->mbParam.quant = RateControlGetQ(0);                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control,0);
815          }          }
816          else          else
817          {          {
818                  pEnc->mbParam.quant = pFrame->quant;                  pEnc->current->quant = pFrame->quant;
819          }          }
820    
821          if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0)          if ((pEnc->current->global_flags & XVID_LUMIMASKING))
822          {          {
823                  int * temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);                  int * temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);
824    
825                  pEnc->mbParam.quant = adaptive_quantization(pEnc->sCurrent.y,                  pEnc->current->quant = adaptive_quantization(pEnc->current->image.y,
826                                                              pEnc->mbParam.width,                                                              pEnc->mbParam.edged_width,  // stride
827                                                              temp_dquants,                                                              temp_dquants,
828                                                              pEnc->mbParam.quant,                                                              pEnc->current->quant,
829                                                              pEnc->mbParam.quant,                                                              pEnc->current->quant,       // min_quant
830                                                              2*pEnc->mbParam.quant,                                                              2*pEnc->current->quant,     // max_quant
831                                                              pEnc->mbParam.mb_width,                                                              pEnc->mbParam.mb_width,
832                                                              pEnc->mbParam.mb_height);                                                              pEnc->mbParam.mb_height);
833    
834                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                  for (y = 0; y < pEnc->mbParam.mb_height; y++)
835                          for (x = 0; x < pEnc->mbParam.mb_width; x++)                          for (x = 0; x < pEnc->mbParam.mb_width; x++)
836                          {                          {
837                                  MACROBLOCK *pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];                                  MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
838                                  pMB->dquant = iDQtab[(temp_dquants[y * pEnc->mbParam.mb_width + x] + 2)];                                  pMB->dquant = iDQtab[(temp_dquants[y * pEnc->mbParam.mb_width + x] + 2)];
839                          }                          }
840                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
841          }          }
842    
843          if(pEnc->mbParam.global_flags & XVID_H263QUANT) {          if (pEnc->current->global_flags & XVID_H263QUANT) {
844                  if(pEnc->mbParam.quant_type != H263_QUANT)                  if(pEnc->mbParam.m_quant_type != H263_QUANT)
845                          write_vol_header = 1;                          write_vol_header = 1;
846                  pEnc->mbParam.quant_type = H263_QUANT;                  pEnc->mbParam.m_quant_type = H263_QUANT;
847          }          }
848          else if(pEnc->mbParam.global_flags & XVID_MPEGQUANT) {          else if(pEnc->current->global_flags & XVID_MPEGQUANT) {
849                  int ret1, ret2;                  int ret1, ret2;
850    
851                  ret1 = ret2 = 0;                  ret1 = ret2 = 0;
852    
853                  if(pEnc->mbParam.quant_type != MPEG4_QUANT)                  if(pEnc->mbParam.m_quant_type != MPEG4_QUANT)
854                          write_vol_header = 1;                          write_vol_header = 1;
855    
856                  pEnc->mbParam.quant_type = MPEG4_QUANT;                  pEnc->mbParam.m_quant_type = MPEG4_QUANT;
857    
858                  if ((pEnc->mbParam.global_flags & XVID_CUSTOM_QMATRIX) > 0) {                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
859                          if(pFrame->quant_intra_matrix != NULL)                          if(pFrame->quant_intra_matrix != NULL)
860                                  ret1 = set_intra_matrix(pFrame->quant_intra_matrix);                                  ret1 = set_intra_matrix(pFrame->quant_intra_matrix);
861                          if(pFrame->quant_inter_matrix != NULL)                          if(pFrame->quant_inter_matrix != NULL)
# Line 326  Line 893 
893    
894          if (pResult)          if (pResult)
895          {          {
896                  pResult->quant = pEnc->mbParam.quant;                  pResult->quant = pEnc->current->quant;
897                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);
898                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->sStat.kblks;
899                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->sStat.mblks;
# Line 337  Line 904 
904    
905          if (pFrame->quant == 0)          if (pFrame->quant == 0)
906          {          {
907                  RateControlUpdate(pEnc->mbParam.quant, pFrame->length, pFrame->intra);                  RateControlUpdate(&pEnc->rate_control,
908                                      pEnc->current->quant,
909                                      pFrame->length,
910                                      pFrame->intra);
911          }          }
912    
913    #ifdef _DEBUG
914            psnr = image_psnr(&pEnc->sOriginal, &pEnc->current->image, pEnc->mbParam.edged_width,
915                                    pEnc->mbParam.width, pEnc->mbParam.height);
916    
917            sprintf(temp, "PSNR: %f\n", psnr);
918            DEBUG(temp);
919    #endif
920    
921          pEnc->iFrameNum++;          pEnc->iFrameNum++;
         image_swap(&pEnc->sCurrent, &pEnc->sReference);  
922    
923          stop_global_timer();          stop_global_timer();
924          write_timer();          write_timer();
925    
926          return XVID_ERR_OK;          return XVID_ERR_OK;
927  }  }
928    #endif
929    
930    
931  static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {  static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {
932    
933          pMB->mode = MODE_INTRA;          pMB->mode = MODE_INTRA;
934    
935          if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0) {          /* zero mv statistics */
936            pMB->mvs[0].x = pMB->mvs[1].x = pMB->mvs[2].x = pMB->mvs[3].x = 0;
937            pMB->mvs[0].y = pMB->mvs[1].y = pMB->mvs[2].y = pMB->mvs[3].y = 0;
938            pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;
939            pMB->sad16 = 0;
940    
941            if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
942                  if(pMB->dquant != NO_CHANGE)                  if(pMB->dquant != NO_CHANGE)
943                  {                  {
944                          pMB->mode = MODE_INTRA_Q;                          pMB->mode = MODE_INTRA_Q;
945                          pEnc->mbParam.quant += DQtab[pMB->dquant];                          pEnc->current->quant += DQtab[pMB->dquant];
946    
947                            if (pEnc->current->quant > 31) pEnc->current->quant = 31;
948                            if (pEnc->current->quant < 1) pEnc->current->quant = 1;
949                    }
950            }
951    
952            pMB->quant = pEnc->current->quant;
953    }
954    
955    
956    #define FCODEBITS       3
957    #define MODEBITS        5
958    
959    void HintedMESet(Encoder * pEnc, int * intra)
960    {
961            HINTINFO * hint;
962            Bitstream bs;
963            int length, high;
964            uint32_t x, y;
965    
966            hint = pEnc->mbParam.hint;
967    
968            if (hint->rawhints)
969            {
970                    *intra = hint->mvhint.intra;
971            }
972            else
973            {
974                    BitstreamInit(&bs, hint->hintstream, hint->hintlength);
975                    *intra = BitstreamGetBit(&bs);
976            }
977    
978            if (*intra)
979            {
980                    return;
981            }
982    
983            pEnc->current->fcode = (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs, FCODEBITS);
984    
985            length  = pEnc->current->fcode + 5;
986            high    = 1 << (length - 1);
987    
988            for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)
989            {
990                    for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)
991                    {
992                            MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
993                            MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
994                            VECTOR pred[4];
995                            VECTOR tmp;
996                            int32_t dummy[4];
997                            int vec;
998    
999                            pMB->mode = (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs, MODEBITS);
1000    
1001                            pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;
1002                            pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;
1003    
1004                          if (pEnc->mbParam.quant > 31) pEnc->mbParam.quant = 31;                          if (pMB->mode == MODE_INTER)
1005                          if (pEnc->mbParam.quant < 1) pEnc->mbParam.quant = 1;                          {
1006                                    tmp.x  = (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs, length);
1007                                    tmp.y  = (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs, length);
1008                                    tmp.x -= (tmp.x >= high) ? high*2 : 0;
1009                                    tmp.y -= (tmp.y >= high) ? high*2 : 0;
1010    
1011                                    get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, 0, pred, dummy);
1012    
1013                                    for (vec=0 ; vec<4 ; ++vec)
1014                                    {
1015                                            pMB->mvs[vec].x  = tmp.x;
1016                                            pMB->mvs[vec].y  = tmp.y;
1017                                            pMB->pmvs[vec].x = pMB->mvs[0].x - pred[0].x;
1018                                            pMB->pmvs[vec].y = pMB->mvs[0].y - pred[0].y;
1019                                    }
1020                            }
1021                            else if (pMB->mode == MODE_INTER4V)
1022                            {
1023                                    for (vec=0 ; vec<4 ; ++vec)
1024                                    {
1025                                            tmp.x  = (hint->rawhints) ? bhint->mvs[vec].x : BitstreamGetBits(&bs, length);
1026                                            tmp.y  = (hint->rawhints) ? bhint->mvs[vec].y : BitstreamGetBits(&bs, length);
1027                                            tmp.x -= (tmp.x >= high) ? high*2 : 0;
1028                                            tmp.y -= (tmp.y >= high) ? high*2 : 0;
1029    
1030                                            get_pmvdata(pEnc->current->mbs, x, y, pEnc->mbParam.mb_width, vec, pred, dummy);
1031    
1032                                            pMB->mvs[vec].x  = tmp.x;
1033                                            pMB->mvs[vec].y  = tmp.y;
1034                                            pMB->pmvs[vec].x = pMB->mvs[vec].x - pred[0].x;
1035                                            pMB->pmvs[vec].y = pMB->mvs[vec].y - pred[0].y;
1036                                    }
1037                            }
1038                            else    // intra / stuffing / not_coded
1039                            {
1040                                    for (vec=0 ; vec<4 ; ++vec)
1041                                    {
1042                                            pMB->mvs[vec].x  = pMB->mvs[vec].y  = 0;
1043                                    }
1044                            }
1045    
1046                            if (pMB->mode == MODE_INTER4V &&
1047                                    (pEnc->current->global_flags & XVID_LUMIMASKING) && pMB->dquant != NO_CHANGE)
1048                            {
1049                                    pMB->mode = MODE_INTRA;
1050    
1051                                    for (vec=0 ; vec<4 ; ++vec)
1052                                    {
1053                                            pMB->mvs[vec].x = pMB->mvs[vec].y = 0;
1054                                    }
1055                            }
1056                    }
1057            }
1058    }
1059    
1060    
1061    void HintedMEGet(Encoder * pEnc, int intra)
1062    {
1063            HINTINFO * hint;
1064            Bitstream bs;
1065            uint32_t x, y;
1066            int length, high;
1067    
1068            hint = pEnc->mbParam.hint;
1069    
1070            if (hint->rawhints)
1071            {
1072                    hint->mvhint.intra = intra;
1073                  }                  }
1074            else
1075            {
1076                    BitstreamInit(&bs, hint->hintstream, 0);
1077                    BitstreamPutBit(&bs, intra);
1078          }          }
1079    
1080          pMB->quant = pEnc->mbParam.quant;          if (intra)
1081            {
1082                    if (!hint->rawhints)
1083                    {
1084                            BitstreamPad(&bs);
1085                            hint->hintlength = BitstreamLength(&bs);
1086                    }
1087                    return;
1088            }
1089    
1090            length  = pEnc->current->fcode + 5;
1091            high    = 1 << (length - 1);
1092    
1093            if (hint->rawhints)
1094            {
1095                    hint->mvhint.fcode = pEnc->current->fcode;
1096            }
1097            else
1098            {
1099                    BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);
1100            }
1101    
1102            for (y=0 ; y<pEnc->mbParam.mb_height ; ++y)
1103            {
1104                    for (x=0 ; x<pEnc->mbParam.mb_width ; ++x)
1105                    {
1106                            MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1107                            MVBLOCKHINT * bhint = &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
1108                            VECTOR tmp;
1109    
1110                            if (hint->rawhints)
1111                            {
1112                                    bhint->mode = pMB->mode;
1113                            }
1114                            else
1115                            {
1116                                    BitstreamPutBits(&bs, pMB->mode, MODEBITS);
1117                            }
1118    
1119                            if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q)
1120                            {
1121                                    tmp.x  = pMB->mvs[0].x;
1122                                    tmp.y  = pMB->mvs[0].y;
1123                                    tmp.x += (tmp.x < 0) ? high*2 : 0;
1124                                    tmp.y += (tmp.y < 0) ? high*2 : 0;
1125    
1126                                    if (hint->rawhints)
1127                                    {
1128                                            bhint->mvs[0].x = tmp.x;
1129                                            bhint->mvs[0].y = tmp.y;
1130                                    }
1131                                    else
1132                                    {
1133                                            BitstreamPutBits(&bs, tmp.x, length);
1134                                            BitstreamPutBits(&bs, tmp.y, length);
1135                                    }
1136                            }
1137                            else if (pMB->mode == MODE_INTER4V)
1138                            {
1139                                    int vec;
1140    
1141                                    for (vec=0 ; vec<4 ; ++vec)
1142                                    {
1143                                            tmp.x  = pMB->mvs[vec].x;
1144                                            tmp.y  = pMB->mvs[vec].y;
1145                                            tmp.x += (tmp.x < 0) ? high*2 : 0;
1146                                            tmp.y += (tmp.y < 0) ? high*2 : 0;
1147    
1148                                            if (hint->rawhints)
1149                                            {
1150                                                    bhint->mvs[vec].x = tmp.x;
1151                                                    bhint->mvs[vec].y = tmp.y;
1152                                            }
1153                                            else
1154                                            {
1155                                                    BitstreamPutBits(&bs, tmp.x, length);
1156                                                    BitstreamPutBits(&bs, tmp.y, length);
1157                                            }
1158                                    }
1159                            }
1160                    }
1161            }
1162    
1163            if (!hint->rawhints)
1164            {
1165                    BitstreamPad(&bs);
1166                    hint->hintlength = BitstreamLength(&bs);
1167            }
1168  }  }
1169    
1170    
# Line 378  Line 1177 
1177          uint16_t x, y;          uint16_t x, y;
1178    
1179          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
1180          pEnc->mbParam.rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1181          pEnc->mbParam.coding_type = I_VOP;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1182            pEnc->current->coding_type = I_VOP;
1183    
1184          BitstreamWriteVolHeader(bs, &pEnc->mbParam);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1185          BitstreamWriteVopHeader(bs, &pEnc->mbParam);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);
1186    
1187          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1188    
# Line 393  Line 1193 
1193          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++)
1194                  for (x = 0; x < pEnc->mbParam.mb_width; x++)                  for (x = 0; x < pEnc->mbParam.mb_width; x++)
1195                  {                  {
1196                          MACROBLOCK *pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK *pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1197    
1198                          CodeIntraMB(pEnc, pMB);                          CodeIntraMB(pEnc, pMB);
1199    
1200                          MBTransQuantIntra(&pEnc->mbParam, pMB, x, y, dct_codes, qcoeff, &pEnc->sCurrent);                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);
1201    
1202                          start_timer();                          start_timer();
1203                          MBPrediction(&pEnc->mbParam, x, y, pEnc->mbParam.mb_width, qcoeff, pEnc->pMBs);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1204                          stop_prediction_timer();                          stop_prediction_timer();
1205    
1206                          start_timer();                          start_timer();
1207                          MBCoding(&pEnc->mbParam, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1208                          stop_coding_timer();                          stop_coding_timer();
1209                  }                  }
1210    
# Line 414  Line 1214 
1214          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
1215          pEnc->sStat.iMvSum = 0;          pEnc->sStat.iMvSum = 0;
1216          pEnc->sStat.iMvCount = 0;          pEnc->sStat.iMvCount = 0;
1217          pEnc->mbParam.fixed_code = 2;          pEnc->mbParam.m_fcode = 2;
1218    
1219            if (pEnc->current->global_flags & XVID_HINTEDME_GET)
1220            {
1221                    HintedMEGet(pEnc, 1);
1222            }
1223    
1224          return 1;                                        // intra          return 1;                                        // intra
1225  }  }
# Line 432  Line 1237 
1237          int iLimit;          int iLimit;
1238          uint32_t x, y;          uint32_t x, y;
1239          int iSearchRange;          int iSearchRange;
1240          bool bIntra;          int bIntra;
1241    
1242          IMAGE *pCurrent = &pEnc->sCurrent;          /* IMAGE *pCurrent = &pEnc->current->image; */
1243          IMAGE *pRef = &pEnc->sReference;          IMAGE *pRef = &pEnc->reference->image;
1244    
1245          start_timer();          start_timer();
1246          image_setedges(pRef,          image_setedges(pRef,
# Line 443  Line 1248 
1248                         pEnc->mbParam.edged_height,                         pEnc->mbParam.edged_height,
1249                         pEnc->mbParam.width,                         pEnc->mbParam.width,
1250                         pEnc->mbParam.height,                         pEnc->mbParam.height,
1251                         pEnc->mbParam.global_flags & XVID_INTERLACING);                         pEnc->current->global_flags & XVID_INTERLACING);
1252          stop_edges_timer();          stop_edges_timer();
1253    
1254          pEnc->mbParam.rounding_type = 1 - pEnc->mbParam.rounding_type;          pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
1255            pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1256            pEnc->current->fcode = pEnc->mbParam.m_fcode;
1257    
1258          if (!force_inter)          if (!force_inter)
1259                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);
1260          else          else
1261                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;
1262    
1263          if ((pEnc->mbParam.global_flags & XVID_HALFPEL) > 0) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
1264                  start_timer();                  start_timer();
1265                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1266                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1267                                    pEnc->mbParam.rounding_type);                                    pEnc->current->rounding_type);
1268                  stop_inter_timer();                  stop_inter_timer();
1269          }          }
1270    
1271          start_timer();          start_timer();
1272          bIntra = MotionEstimation(pEnc->pMBs, &pEnc->mbParam, &pEnc->sReference,          if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1273                                    &pEnc->vInterH, &pEnc->vInterV,          {
1274                                    &pEnc->vInterHV, &pEnc->sCurrent, iLimit);                  HintedMESet(pEnc, &bIntra);
1275            }
1276            else
1277            {
1278                    bIntra = MotionEstimation(
1279                            &pEnc->mbParam,
1280                            pEnc->current,
1281                            pEnc->reference,
1282                            &pEnc->vInterH,
1283                            &pEnc->vInterV,
1284                            &pEnc->vInterHV,
1285                            iLimit);
1286            }
1287          stop_motion_timer();          stop_motion_timer();
1288    
1289          if (bIntra == 1)          if (bIntra == 1)
1290            {
1291                  return FrameCodeI(pEnc, bs, pBits);                  return FrameCodeI(pEnc, bs, pBits);
1292            }
1293    
1294          pEnc->mbParam.coding_type = P_VOP;          pEnc->current->coding_type = P_VOP;
1295    
1296          if(vol_header)          if(vol_header)
1297                  BitstreamWriteVolHeader(bs, &pEnc->mbParam);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1298    
1299          BitstreamWriteVopHeader(bs, &pEnc->mbParam);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current);
1300    
1301          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
1302    
# Line 488  Line 1309 
1309          {          {
1310                  for(x = 0; x < pEnc->mbParam.mb_width; x++)                  for(x = 0; x < pEnc->mbParam.mb_width; x++)
1311                  {                  {
1312                          MACROBLOCK * pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * pMB = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1313    
1314                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
1315    
# Line 497  Line 1318 
1318                                  start_timer();                                  start_timer();
1319                                  MBMotionCompensation(pMB,                                  MBMotionCompensation(pMB,
1320                                                       x, y,                                                       x, y,
1321                                                       &pEnc->sReference,                                                       &pEnc->reference->image,
1322                                                       &pEnc->vInterH,                                                       &pEnc->vInterH,
1323                                                       &pEnc->vInterV,                                                       &pEnc->vInterV,
1324                                                       &pEnc->vInterHV,                                                       &pEnc->vInterHV,
1325                                                       &pEnc->sCurrent,                                                       &pEnc->current->image,
1326                                                       dct_codes,                                                       dct_codes,
1327                                                       pEnc->mbParam.width,                                                       pEnc->mbParam.width,
1328                                                       pEnc->mbParam.height,                                                       pEnc->mbParam.height,
1329                                                       pEnc->mbParam.edged_width,                                                       pEnc->mbParam.edged_width,
1330                                                       pEnc->mbParam.rounding_type);                                                       pEnc->current->rounding_type);
1331                                  stop_comp_timer();                                  stop_comp_timer();
1332    
1333                                  if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0) {                                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
1334                                          if(pMB->dquant != NO_CHANGE) {                                          if(pMB->dquant != NO_CHANGE) {
1335                                                  pMB->mode = MODE_INTER_Q;                                                  pMB->mode = MODE_INTER_Q;
1336                                                  pEnc->mbParam.quant += DQtab[pMB->dquant];                                                  pEnc->current->quant += DQtab[pMB->dquant];
1337                                                  if (pEnc->mbParam.quant > 31) pEnc->mbParam.quant = 31;                                                  if (pEnc->current->quant > 31) pEnc->current->quant = 31;
1338                                                  else if(pEnc->mbParam.quant < 1) pEnc->mbParam.quant = 1;                                                  else if(pEnc->current->quant < 1) pEnc->current->quant = 1;
1339                                          }                                          }
1340                                  }                                  }
1341                                  pMB->quant = pEnc->mbParam.quant;                                  pMB->quant = pEnc->current->quant;
1342    
1343                                  pMB->field_pred = 0;                                  pMB->field_pred = 0;
1344    
1345                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, pMB, x, y, dct_codes, qcoeff, pCurrent);                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);
1346                          }                          }
1347                          else                          else
1348                          {                          {
1349                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1350                                  MBTransQuantIntra(&pEnc->mbParam, pMB, x, y, dct_codes, qcoeff, pCurrent);                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y, dct_codes, qcoeff);
1351                          }                          }
1352    
1353                          start_timer();                          start_timer();
1354                          MBPrediction(&pEnc->mbParam, x, y, pEnc->mbParam.mb_width, qcoeff, pEnc->pMBs);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1355                          stop_prediction_timer();                          stop_prediction_timer();
1356    
1357                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)
# Line 551  Line 1372 
1372                          }                          }
1373    
1374                          start_timer();                          start_timer();
1375                          MBCoding(&pEnc->mbParam, pMB, qcoeff, bs, &pEnc->sStat);                          MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1376                          stop_coding_timer();                          stop_coding_timer();
1377                  }                  }
1378          }          }
1379    
1380          emms();          emms();
1381    
1382            if (pEnc->current->global_flags & XVID_HINTEDME_GET)
1383            {
1384                    HintedMEGet(pEnc, 0);
1385            }
1386    
1387          if (pEnc->sStat.iMvCount == 0)          if (pEnc->sStat.iMvCount == 0)
1388                  pEnc->sStat.iMvCount = 1;                  pEnc->sStat.iMvCount = 1;
1389    
1390          fSigma = (float)sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float)sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);
1391    
1392          iSearchRange = 1 << (3 + pEnc->mbParam.fixed_code);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1393    
1394          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1395              && (pEnc->mbParam.fixed_code <= 3)) // maximum search range 128              && (pEnc->mbParam.m_fcode <= 3))    // maximum search range 128
1396          {          {
1397                  pEnc->mbParam.fixed_code++;                  pEnc->mbParam.m_fcode++;
1398                  iSearchRange *= 2;                  iSearchRange *= 2;
1399          }          }
1400          else if ((fSigma < iSearchRange / 6)          else if ((fSigma < iSearchRange / 6)
1401                   && (pEnc->sStat.fMvPrevSigma >= 0)                   && (pEnc->sStat.fMvPrevSigma >= 0)
1402                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1403                   && (pEnc->mbParam.fixed_code >= 2))    // minimum search range 16                   && (pEnc->mbParam.m_fcode >= 2))       // minimum search range 16
1404          {          {
1405                  pEnc->mbParam.fixed_code--;                  pEnc->mbParam.m_fcode--;
1406                  iSearchRange /= 2;                  iSearchRange /= 2;
1407          }          }
1408    
# Line 586  Line 1412 
1412    
1413          return 0;                                        // inter          return 0;                                        // inter
1414  }  }
1415    
1416    
1417    #ifdef BFRAMES
1418    static void FrameCodeB(Encoder * pEnc, FRAMEINFO * frame, Bitstream * bs, uint32_t *pBits)
1419    {
1420        int16_t dct_codes[6*64];
1421        int16_t qcoeff[6*64];
1422        uint32_t x, y;
1423            VECTOR forward;
1424            VECTOR backward;
1425    
1426        IMAGE *f_ref = &pEnc->reference->image;
1427            IMAGE *b_ref = &pEnc->current->image;
1428    
1429            // forward
1430            image_setedges(f_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height, frame->global_flags & XVID_INTERLACING);
1431            start_timer();
1432            image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1433                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);
1434            stop_inter_timer();
1435    
1436            // backward
1437            image_setedges(b_ref, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height, frame->global_flags & XVID_INTERLACING);
1438        start_timer();
1439            image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1440                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, 0);
1441            stop_inter_timer();
1442    
1443            start_timer();
1444            MotionEstimationBVOP(&pEnc->mbParam, frame,
1445                    pEnc->reference->mbs, f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1446                    pEnc->current->mbs, b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV);
1447    
1448    
1449            stop_motion_timer();
1450    
1451            /*if (test_quant_type(&pEnc->mbParam, pEnc->current))
1452            {
1453                    BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);
1454            }*/
1455    
1456        frame->coding_type = B_VOP;
1457        BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame);
1458    
1459        *pBits = BitstreamPos(bs);
1460    
1461        pEnc->sStat.iTextBits = 0;
1462        pEnc->sStat.iMvSum = 0;
1463        pEnc->sStat.iMvCount = 0;
1464            pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
1465    
1466    
1467        for (y = 0; y < pEnc->mbParam.mb_height; y++)
1468            {
1469                    // reset prediction
1470    
1471                    forward.x = 0;
1472                    forward.y = 0;
1473                    backward.x = 0;
1474                    backward.y = 0;
1475    
1476                    for (x = 0; x < pEnc->mbParam.mb_width; x++)
1477                    {
1478                            MACROBLOCK * f_mb = &pEnc->reference->mbs[x + y * pEnc->mbParam.mb_width];
1479                            MACROBLOCK * b_mb = &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
1480                            MACROBLOCK * mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1481    
1482                            // decoder ignores mb when refence block is INTER(0,0), CBP=0
1483                            if (mb->mode == MODE_NOT_CODED)
1484                            {
1485                                    mb->mvs[0].x = 0;
1486                                    mb->mvs[0].y = 0;
1487                                    continue;
1488                            }
1489    
1490                            MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1491                                            f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1492                                            b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1493                                            dct_codes);
1494    
1495                            mb->quant = frame->quant;
1496                            mb->cbp = MBTransQuantInter(&pEnc->mbParam, frame, mb, x, y, dct_codes, qcoeff);
1497                            //mb->cbp = MBTransQuantBVOP(&pEnc->mbParam, x, y, dct_codes, qcoeff, &frame->image, frame->quant);
1498    
1499    
1500                            if ((mb->mode == MODE_INTERPOLATE || mb->mode == MODE_DIRECT) &&
1501                                    mb->cbp == 0 &&
1502                                    mb->mvs[0].x == 0 &&
1503                                    mb->mvs[0].y == 0)
1504                            {
1505                                    mb->mode = 5;  // skipped
1506                            }
1507    
1508                            if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_FORWARD)
1509                            {
1510                                    mb->pmvs[0].x = mb->mvs[0].x - forward.x;
1511                                    mb->pmvs[0].y = mb->mvs[0].y - forward.y;
1512                                    forward.x = mb->mvs[0].x;
1513                                    forward.y = mb->mvs[0].y;
1514                            }
1515    
1516                            if (mb->mode == MODE_INTERPOLATE || mb->mode == MODE_BACKWARD)
1517                            {
1518                                    mb->b_pmvs[0].x = mb->b_mvs[0].x - backward.x;
1519                                    mb->b_pmvs[0].y = mb->b_mvs[0].y - backward.y;
1520                                    backward.x = mb->b_mvs[0].x;
1521                                    backward.y = mb->b_mvs[0].y;
1522                            }
1523    
1524    //                      printf("[%i %i] M=%i CBP=%i MVX=%i MVY=%i %i,%i  %i,%i\n", x, y, pMB->mode, pMB->cbp, pMB->mvs[0].x, bmb->pmvs[0].x, bmb->pmvs[0].y, forward.x, forward.y);
1525    
1526                            start_timer();
1527                            MBCodingBVOP(mb, qcoeff, frame->fcode, frame->bcode, bs, &pEnc->sStat);
1528                            stop_coding_timer();
1529                    }
1530            }
1531    
1532            emms();
1533    
1534            // TODO: dynamic fcode/bcode ???
1535    
1536            *pBits = BitstreamPos(bs) - *pBits;
1537    }
1538    #endif

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.39

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