[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.8, Wed Mar 20 14:02:54 2002 UTC revision 1.87, Sat Nov 16 23:38:16 2002 UTC
# Line 1  Line 1 
1    /*****************************************************************************
2     *
3     *  XVID MPEG-4 VIDEO CODEC
4     *  - Encoder main module -
5     *
6     *  Copyright(C) 2002 Michael Militzer <isibaar@xvid.org>
7     *               2002 Peter Ross <pross@xvid.org>
8     *               2002 Daniel Smith <danielsmith@astroboymail.com>
9     *
10     *  This file is part of XviD, a free MPEG-4 video encoder/decoder
11     *
12     *  XviD is free software; you can redistribute it and/or modify it
13     *  under the terms of the GNU General Public License as published by
14     *  the Free Software Foundation; either version 2 of the License, or
15     *  (at your option) any later version.
16     *
17     *  This program is distributed in the hope that it will be useful,
18     *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20     *  GNU General Public License for more details.
21     *
22     *  You should have received a copy of the GNU General Public License
23     *  along with this program; if not, write to the Free Software
24     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
25     *
26     *  Under section 8 of the GNU General Public License, the copyright
27     *  holders of XVID explicitly forbid distribution in the following
28     *  countries:
29     *
30     *    - Japan
31     *    - United States of America
32     *
33     *  Linking XviD statically or dynamically with other modules is making a
34     *  combined work based on XviD.  Thus, the terms and conditions of the
35     *  GNU General Public License cover the whole combination.
36     *
37     *  As a special exception, the copyright holders of XviD give you
38     *  permission to link XviD with independent modules that communicate with
39     *  XviD solely through the VFW1.1 and DShow interfaces, regardless of the
40     *  license terms of these independent modules, and to copy and distribute
41     *  the resulting combined work under terms of your choice, provided that
42     *  every copy of the combined work is accompanied by a complete copy of
43     *  the source code of XviD (the version of XviD used to produce the
44     *  combined work), being distributed under the terms of the GNU General
45     *  Public License plus this exception.  An independent module is a module
46     *  which is not derived from or based on XviD.
47     *
48     *  Note that people who make modified versions of XviD are not obligated
49     *  to grant this special exception for their modified versions; it is
50     *  their choice whether to do so.  The GNU General Public License gives
51     *  permission to release a modified version without this exception; this
52     *  exception also makes it possible to release a modified version which
53     *  carries forward this exception.
54     *
55     * $Id$
56     *
57     ****************************************************************************/
58    
59  #include <stdlib.h>  #include <stdlib.h>
60  #include <stdio.h>  #include <stdio.h>
61  #include <math.h>  #include <math.h>
62    #include <string.h>
63    
64  #include "encoder.h"  #include "encoder.h"
65  #include "prediction/mbprediction.h"  #include "prediction/mbprediction.h"
66  #include "global.h"  #include "global.h"
67  #include "utils/timer.h"  #include "utils/timer.h"
68  #include "image/image.h"  #include "image/image.h"
69    #include "motion/motion.h"
70  #include "bitstream/cbp.h"  #include "bitstream/cbp.h"
71  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
72  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
# Line 18  Line 78 
78  #include "quant/quant_matrix.h"  #include "quant/quant_matrix.h"
79  #include "utils/mem_align.h"  #include "utils/mem_align.h"
80    
81  #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT  #ifdef _SMP
82    #include "motion/smp_motion_est.h"
83    #endif
84    /*****************************************************************************
85     * Local macros
86     ****************************************************************************/
87    
88    #define ENC_CHECK(X) if(!(X)) return XVID_ERR_FORMAT
89    #define SWAP(A,B)    { void * tmp = A; A = B; B = tmp; }
90    
91  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits);  /*****************************************************************************
92  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header);   * Local function prototypes
93     ****************************************************************************/
94    
95    static int FrameCodeI(Encoder * pEnc,
96                                              Bitstream * bs,
97                                              uint32_t * pBits);
98    
99    static int FrameCodeP(Encoder * pEnc,
100                                              Bitstream * bs,
101                                              uint32_t * pBits,
102                                              bool force_inter,
103                                              bool vol_header);
104    
105    /*****************************************************************************
106     * Local data
107     ****************************************************************************/
108    
109  static int DQtab[4] =  static int DQtab[4] = {
 {  
110          -1, -2, 1, 2          -1, -2, 1, 2
111  };  };
112    
113  static int iDQtab[5] =  static int iDQtab[5] = {
 {  
114          1, 0, NO_CHANGE, 2, 3          1, 0, NO_CHANGE, 2, 3
115  };  };
116    
117    
118  int encoder_create(XVID_ENC_PARAM * pParam)  static void __inline
119    image_null(IMAGE * image)
120    {
121            image->y = image->u = image->v = NULL;
122    }
123    
124    
125    /*****************************************************************************
126     * Encoder creation
127     *
128     * This function creates an Encoder instance, it allocates all necessary
129     * image buffers (reference, current) and initialize the internal xvid
130     * encoder paremeters according to the XVID_ENC_PARAM input parameter.
131     *
132     * The code seems to be very long but is very basic, mainly memory allocation
133     * and cleaning code.
134     *
135     * Returned values :
136     *    - XVID_ERR_OK     - no errors
137     *    - XVID_ERR_MEMORY - the libc could not allocate memory, the function
138     *                        cleans the structure before exiting.
139     *                        pParam->handle is also set to NULL.
140     *
141     ****************************************************************************/
142    
143    int
144    encoder_create(XVID_ENC_PARAM * pParam)
145  {  {
146          Encoder *pEnc;          Encoder *pEnc;
147          uint32_t i;          int i;
148    
149          pParam->handle = NULL;          pParam->handle = NULL;
150    
# Line 49  Line 155 
155          ENC_CHECK(!(pParam->width % 2));          ENC_CHECK(!(pParam->width % 2));
156          ENC_CHECK(!(pParam->height % 2));          ENC_CHECK(!(pParam->height % 2));
157    
158          if (pParam->fincr <= 0 || pParam->fbase <= 0)          /* Fps */
159          {  
160            if (pParam->fincr <= 0 || pParam->fbase <= 0) {
161                  pParam->fincr = 1;                  pParam->fincr = 1;
162                  pParam->fbase = 25;                  pParam->fbase = 25;
163          }          }
164    
165          // simplify the "fincr/fbase" fraction          /*
166          // (neccessary, since windows supplies us with huge numbers)           * Simplify the "fincr/fbase" fraction
167             * (neccessary, since windows supplies us with huge numbers)
168             */
169    
170          i = pParam->fincr;          i = pParam->fincr;
171          while (i > 1)          while (i > 1) {
172          {                  if (pParam->fincr % i == 0 && pParam->fbase % i == 0) {
                 if (pParam->fincr % i == 0 && pParam->fbase % i == 0)  
                 {  
173                          pParam->fincr /= i;                          pParam->fincr /= i;
174                          pParam->fbase /= i;                          pParam->fbase /= i;
175                          i = pParam->fincr;                          i = pParam->fincr;
# Line 71  Line 178 
178                  i--;                  i--;
179          }          }
180    
181          if (pParam->fbase > 65535)          if (pParam->fbase > 65535) {
         {  
182                  float div = (float)pParam->fbase / 65535;                  float div = (float)pParam->fbase / 65535;
183    
184                  pParam->fbase = (int)(pParam->fbase / div);                  pParam->fbase = (int)(pParam->fbase / div);
185                  pParam->fincr = (int)(pParam->fincr / div);                  pParam->fincr = (int)(pParam->fincr / div);
186          }          }
187    
188          if (pParam->bitrate <= 0)          /* Bitrate allocator defaults */
189                  pParam->bitrate = 900000;  
190            if (pParam->rc_bitrate <= 0)
191                    pParam->rc_bitrate = 900000;
192    
193            if (pParam->rc_reaction_delay_factor <= 0)
194                    pParam->rc_reaction_delay_factor = 16;
195    
196            if (pParam->rc_averaging_period <= 0)
197                    pParam->rc_averaging_period = 100;
198    
199            if (pParam->rc_buffer <= 0)
200                    pParam->rc_buffer = 100;
201    
202          if (pParam->rc_buffersize <= 0)          /* Max and min quantizers */
                 pParam->rc_buffersize = pParam->bitrate * pParam->fbase;  
203    
204          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))          if ((pParam->min_quantizer <= 0) || (pParam->min_quantizer > 31))
205                  pParam->min_quantizer = 1;                  pParam->min_quantizer = 1;
# Line 90  Line 207 
207          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))          if ((pParam->max_quantizer <= 0) || (pParam->max_quantizer > 31))
208                  pParam->max_quantizer = 31;                  pParam->max_quantizer = 31;
209    
         if (pParam->max_key_interval == 0)              /* 1 keyframe each 10 seconds */  
                 pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;  
   
210          if (pParam->max_quantizer < pParam->min_quantizer)          if (pParam->max_quantizer < pParam->min_quantizer)
211                  pParam->max_quantizer = pParam->min_quantizer;                  pParam->max_quantizer = pParam->min_quantizer;
212    
213          if ((pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), 16)) == NULL)          /* 1 keyframe each 10 seconds */
214    
215            if (pParam->max_key_interval <= 0)
216                    pParam->max_key_interval = 10 * pParam->fincr / pParam->fbase;
217    
218            pEnc = (Encoder *) xvid_malloc(sizeof(Encoder), CACHE_LINE);
219            if (pEnc == NULL)
220                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
221    
222            /* Zero the Encoder Structure */
223    
224            memset(pEnc, 0, sizeof(Encoder));
225    
226          /* Fill members of Encoder structure */          /* Fill members of Encoder structure */
227    
228          pEnc->mbParam.width = pParam->width;          pEnc->mbParam.width = pParam->width;
# Line 110  Line 234 
234          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;          pEnc->mbParam.edged_width = 16 * pEnc->mbParam.mb_width + 2 * EDGE_SIZE;
235          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;          pEnc->mbParam.edged_height = 16 * pEnc->mbParam.mb_height + 2 * EDGE_SIZE;
236    
237            pEnc->mbParam.fbase = pParam->fbase;
238            pEnc->mbParam.fincr = pParam->fincr;
239    
240            pEnc->mbParam.m_quant_type = H263_QUANT;
241    
242    #ifdef _SMP
243            pEnc->mbParam.num_threads = MIN(pParam->num_threads, MAXNUMTHREADS);
244    #endif
245    
246          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
247    
248          /* Fill rate control parameters */          /* Fill rate control parameters */
249    
250          pEnc->mbParam.quant = 4;          pEnc->bitrate = pParam->rc_bitrate;
   
         pEnc->bitrate = pParam->bitrate;  
251    
252          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
253          pEnc->iMaxKeyInterval = pParam->max_key_interval;          pEnc->iMaxKeyInterval = pParam->max_key_interval;
254    
255          if (image_create(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          /* try to allocate frame memory */
         {  
                 xvid_free(pEnc);  
                 return XVID_ERR_MEMORY;  
         }  
   
         if (image_create(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)  
         {  
                 image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 xvid_free(pEnc);  
                 return XVID_ERR_MEMORY;  
         }  
256    
257          if (image_create(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          pEnc->current = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
258          {          pEnc->reference = xvid_malloc(sizeof(FRAMEINFO), CACHE_LINE);
                 image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
                 xvid_free(pEnc);  
                 return XVID_ERR_MEMORY;  
         }  
259    
260          if (image_create(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          if (pEnc->current == NULL || pEnc->reference == NULL)
261          {                  goto xvid_err_memory1;
                 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);  
                 xvid_free(pEnc);  
                 return XVID_ERR_MEMORY;  
         }  
262    
263          if (image_create(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height) < 0)          /* try to allocate mb memory */
264          {  
265                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          pEnc->current->mbs =
266                  image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
267                  image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                                          pEnc->mbParam.mb_height, CACHE_LINE);
268                  image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          pEnc->reference->mbs =
269                  xvid_free(pEnc);                  xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width *
270                  return XVID_ERR_MEMORY;                                          pEnc->mbParam.mb_height, CACHE_LINE);
271          }  
272            if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
273          pEnc->pMBs = xvid_malloc(sizeof(MACROBLOCK) * pEnc->mbParam.mb_width * pEnc->mbParam.mb_height, 16);                  goto xvid_err_memory2;
274          if (pEnc->pMBs == NULL)  
275          {          /* try to allocate image memory */
276                  image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  
277                  image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  #ifdef _DEBUG_PSNR
278                  image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          image_null(&pEnc->sOriginal);
279                  image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);  #endif
280                  image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          image_null(&pEnc->current->image);
281                  xvid_free(pEnc);          image_null(&pEnc->reference->image);
282                  return XVID_ERR_MEMORY;          image_null(&pEnc->vInterH);
283          }          image_null(&pEnc->vInterV);
284            image_null(&pEnc->vInterHV);
285          // init macroblock array  
286          for (i = 0; i < pEnc->mbParam.mb_width * pEnc->mbParam.mb_height; i++)  #ifdef _DEBUG_PSNR
287          {          if (image_create
288                  pEnc->pMBs[i].dquant = NO_CHANGE;                  (&pEnc->sOriginal, pEnc->mbParam.edged_width,
289          }                   pEnc->mbParam.edged_height) < 0)
290                    goto xvid_err_memory3;
291    #endif
292            if (image_create
293                    (&pEnc->current->image, pEnc->mbParam.edged_width,
294                     pEnc->mbParam.edged_height) < 0)
295                    goto xvid_err_memory3;
296            if (image_create
297                    (&pEnc->reference->image, pEnc->mbParam.edged_width,
298                     pEnc->mbParam.edged_height) < 0)
299                    goto xvid_err_memory3;
300            if (image_create
301                    (&pEnc->vInterH, pEnc->mbParam.edged_width,
302                     pEnc->mbParam.edged_height) < 0)
303                    goto xvid_err_memory3;
304            if (image_create
305                    (&pEnc->vInterV, pEnc->mbParam.edged_width,
306                     pEnc->mbParam.edged_height) < 0)
307                    goto xvid_err_memory3;
308            if (image_create
309                    (&pEnc->vInterHV, pEnc->mbParam.edged_width,
310                     pEnc->mbParam.edged_height) < 0)
311                    goto xvid_err_memory3;
312    
313          pParam->handle = (void *)pEnc;          pParam->handle = (void *)pEnc;
314    
315          if (pParam->bitrate)          if (pParam->rc_bitrate) {
316          {                  RateControlInit(&pEnc->rate_control, pParam->rc_bitrate,
317                  RateControlInit(pParam->bitrate, pParam->rc_buffersize, pParam->fbase, pParam->width,                                                  pParam->rc_reaction_delay_factor,
318                                  pParam->height, pParam->max_quantizer, pParam->min_quantizer);                                                  pParam->rc_averaging_period, pParam->rc_buffer,
319                                                    pParam->fbase * 1000 / pParam->fincr,
320                                                    pParam->max_quantizer, pParam->min_quantizer);
321          }          }
322    
         create_vlc_tables();  
323          init_timer();          init_timer();
324    
325          return XVID_ERR_OK;          return XVID_ERR_OK;
326    
327            /*
328             * We handle all XVID_ERR_MEMORY here, this makes the code lighter
329             */
330    
331      xvid_err_memory3:
332    #ifdef _DEBUG_PSNR
333            image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
334                                      pEnc->mbParam.edged_height);
335    #endif
336    
337            image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
338                                      pEnc->mbParam.edged_height);
339            image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
340                                      pEnc->mbParam.edged_height);
341            image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
342                                      pEnc->mbParam.edged_height);
343            image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
344                                      pEnc->mbParam.edged_height);
345            image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
346                                      pEnc->mbParam.edged_height);
347    
348      xvid_err_memory2:
349            xvid_free(pEnc->current->mbs);
350            xvid_free(pEnc->reference->mbs);
351    
352      xvid_err_memory1:
353            xvid_free(pEnc->current);
354            xvid_free(pEnc->reference);
355            xvid_free(pEnc);
356    
357            pParam->handle = NULL;
358    
359            return XVID_ERR_MEMORY;
360  }  }
361    
362    /*****************************************************************************
363     * Encoder destruction
364     *
365     * This function destroy the entire encoder structure created by a previous
366     * successful encoder_create call.
367     *
368     * Returned values (for now only one returned value) :
369     *    - XVID_ERR_OK     - no errors
370     *
371     ****************************************************************************/
372    
373  int encoder_destroy(Encoder * pEnc)  int
374    encoder_destroy(Encoder * pEnc)
375  {  {
376    
377          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
         ENC_CHECK(pEnc->sCurrent.y);  
         ENC_CHECK(pEnc->sReference.y);  
378    
379          xvid_free(pEnc->pMBs);          /* All images, reference, current etc ... */
380          image_destroy(&pEnc->sCurrent, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          image_destroy(&pEnc->current->image, pEnc->mbParam.edged_width,
381          image_destroy(&pEnc->sReference, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
382          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          image_destroy(&pEnc->reference->image, pEnc->mbParam.edged_width,
383          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
384          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height);          image_destroy(&pEnc->vInterH, pEnc->mbParam.edged_width,
385          xvid_free(pEnc);                                    pEnc->mbParam.edged_height);
386            image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
387                                      pEnc->mbParam.edged_height);
388            image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
389                                      pEnc->mbParam.edged_height);
390    
391    #ifdef _DEBUG_PSNR
392            image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
393                                      pEnc->mbParam.edged_height);
394    #endif
395    
396            /* Encoder structure */
397            xvid_free(pEnc->current->mbs);
398            xvid_free(pEnc->current);
399    
400          destroy_vlc_tables();          xvid_free(pEnc->reference->mbs);
401            xvid_free(pEnc->reference);
402    
403            xvid_free(pEnc);
404    
405          return XVID_ERR_OK;          return XVID_ERR_OK;
406  }  }
407    
408  int encoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult)  
409    void inc_frame_num(Encoder * pEnc)
410    {
411            pEnc->mbParam.m_ticks += pEnc->mbParam.fincr;
412            pEnc->mbParam.m_seconds = pEnc->mbParam.m_ticks / pEnc->mbParam.fbase;
413            pEnc->mbParam.m_ticks = pEnc->mbParam.m_ticks % pEnc->mbParam.fbase;
414    }
415    
416    /*****************************************************************************
417     * "original" IP frame encoder entry point
418     *
419     * Returned values :
420     *    - XVID_ERR_OK     - no errors
421     *    - XVID_ERR_FORMAT - the image subsystem reported the image had a wrong
422     *                        format
423     ****************************************************************************/
424    
425    int
426    encoder_encode(Encoder * pEnc,
427                               XVID_ENC_FRAME * pFrame,
428                               XVID_ENC_STATS * pResult)
429  {  {
430          uint16_t x, y;          uint16_t x, y;
431          Bitstream bs;          Bitstream bs;
432          uint32_t bits;          uint32_t bits;
433          uint16_t write_vol_header = 0;          uint16_t write_vol_header = 0;
434    
435    #ifdef _DEBUG_PSNR
436            float psnr;
437            uint8_t temp[128];
438    #endif
439    
440          start_global_timer();          start_global_timer();
441    
442          ENC_CHECK(pEnc);          ENC_CHECK(pEnc);
# Line 227  Line 444 
444          ENC_CHECK(pFrame->bitstream);          ENC_CHECK(pFrame->bitstream);
445          ENC_CHECK(pFrame->image);          ENC_CHECK(pFrame->image);
446    
447          pEnc->mbParam.global_flags = pFrame->general;          SWAP(pEnc->current, pEnc->reference);
448          pEnc->mbParam.motion_flags = pFrame->motion;  
449            pEnc->current->global_flags = pFrame->general;
450            pEnc->current->motion_flags = pFrame->motion;
451            pEnc->current->seconds = pEnc->mbParam.m_seconds;
452            pEnc->current->ticks = pEnc->mbParam.m_ticks;
453            pEnc->mbParam.hint = &pFrame->hint;
454    
455          start_timer();          start_timer();
456          if (image_input(&pEnc->sCurrent, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width,          if (image_input
457                          pFrame->image, pFrame->colorspace))                  (&pEnc->current->image, pEnc->mbParam.width, pEnc->mbParam.height,
458          {                   pEnc->mbParam.edged_width, pFrame->image, pFrame->colorspace) < 0)
459                  return XVID_ERR_FORMAT;                  return XVID_ERR_FORMAT;
         }  
460          stop_conv_timer();          stop_conv_timer();
461    
462          EMMS();  #ifdef _DEBUG_PSNR
463            image_copy(&pEnc->sOriginal, &pEnc->current->image,
464                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
465    #endif
466    
467            emms();
468    
469          BitstreamInit(&bs, pFrame->bitstream, 0);          BitstreamInit(&bs, pFrame->bitstream, 0);
470    
471          if (pFrame->quant == 0)          if (pFrame->quant == 0) {
472          {                  pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);
473                  pEnc->mbParam.quant = RateControlGetQ(0);          } else {
474          }                  pEnc->current->quant = pFrame->quant;
         else  
         {  
                 pEnc->mbParam.quant = pFrame->quant;  
475          }          }
476    
477          if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0)          if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
478          {                  int *temp_dquants =
479                  int * temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * sizeof(int), 16);                          (int *) xvid_malloc(pEnc->mbParam.mb_width *
480                                                                    pEnc->mbParam.mb_height * sizeof(int),
481                                                                    CACHE_LINE);
482    
483                  pEnc->mbParam.quant = adaptive_quantization(pEnc->sCurrent.y, pEnc->mbParam.width,                  pEnc->current->quant =
484                                                              temp_dquants, pFrame->quant, pFrame->quant,                          adaptive_quantization(pEnc->current->image.y,
485                                                              2*pFrame->quant, pEnc->mbParam.mb_width, pEnc->mbParam.mb_height);                                                                    pEnc->mbParam.edged_width, temp_dquants,
486                                                                      pEnc->current->quant, pEnc->current->quant,
487                                                                      2 * pEnc->current->quant,
488                                                                      pEnc->mbParam.mb_width,
489                                                                      pEnc->mbParam.mb_height);
490    
491                  for (y = 0; y < pEnc->mbParam.mb_height; y++)                  for (y = 0; y < pEnc->mbParam.mb_height; y++) {
492                          for (x = 0; x < pEnc->mbParam.mb_width; x++)  
493                          {  #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)
494                                  MACROBLOCK *pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];  
495                                  pMB->dquant = iDQtab[(temp_dquants[y * pEnc->mbParam.mb_width + x] + 2)];                          for (x = 0; x < pEnc->mbParam.mb_width; x++) {
496    
497    
498                                    MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];
499    
500                                    pMB->dquant = iDQtab[temp_dquants[OFFSET(x, y)] + 2];
501                          }                          }
502    
503    #undef OFFSET
504                    }
505    
506                  xvid_free(temp_dquants);                  xvid_free(temp_dquants);
507          }          }
508    
509          if(pEnc->mbParam.global_flags & XVID_H263QUANT) {          if (pEnc->current->global_flags & XVID_H263QUANT) {
510                  if(pEnc->mbParam.quant_type != H263_QUANT)                  if (pEnc->mbParam.m_quant_type != H263_QUANT)
511                          write_vol_header = 1;                          write_vol_header = 1;
512                  pEnc->mbParam.quant_type = H263_QUANT;                  pEnc->mbParam.m_quant_type = H263_QUANT;
513          }          } else if (pEnc->current->global_flags & XVID_MPEGQUANT) {
514          else if(pEnc->mbParam.global_flags & XVID_MPEGQUANT) {                  int matrix1_changed, matrix2_changed;
515                  int ret1, ret2;  
516                    matrix1_changed = matrix2_changed = 0;
517    
518                  if(pEnc->mbParam.quant_type != MPEG4_QUANT)                  if (pEnc->mbParam.m_quant_type != MPEG4_QUANT)
519                          write_vol_header = 1;                          write_vol_header = 1;
520    
521                  pEnc->mbParam.quant_type = MPEG4_QUANT;                  pEnc->mbParam.m_quant_type = MPEG4_QUANT;
522    
523                  if ((pEnc->mbParam.global_flags & XVID_CUSTOM_QMATRIX) > 0) {                  if ((pEnc->current->global_flags & XVID_CUSTOM_QMATRIX) > 0) {
524                          if(pFrame->quant_intra_matrix != NULL)                          if(pFrame->quant_intra_matrix != NULL)
525                                  ret1 = set_intra_matrix(pFrame->quant_intra_matrix);                                  matrix1_changed = set_intra_matrix(pFrame->quant_intra_matrix);
526                          if(pFrame->quant_inter_matrix != NULL)                          if(pFrame->quant_inter_matrix != NULL)
527                                  ret2 = set_inter_matrix(pFrame->quant_inter_matrix);                                  matrix2_changed = set_inter_matrix(pFrame->quant_inter_matrix);
528                  }                  } else {
529                  else {                          matrix1_changed = set_intra_matrix(get_default_intra_matrix());
530                          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());  
531                  }                  }
532                  if(write_vol_header == 0)                  if(write_vol_header == 0)
533                          write_vol_header = ret1 | ret2;                          write_vol_header = matrix1_changed | matrix2_changed;
534          }          }
535    
536          if (pFrame->intra < 0)          if (pFrame->intra < 0) {
537          {                  if ((pEnc->iFrameNum == 0)
538                  if ((pEnc->iFrameNum == 0) || ((pEnc->iMaxKeyInterval > 0)                          || ((pEnc->iMaxKeyInterval > 0)
539                                                 && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval)))                                  && (pEnc->iFrameNum >= pEnc->iMaxKeyInterval))) {
   
540                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
541                  else                  } else {
542                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 0, write_vol_header);
543          }          }
544          else          } else {
545          {                  if (pFrame->intra == 1) {
                 if (pFrame->intra == 1)  
546                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);                          pFrame->intra = FrameCodeI(pEnc, &bs, &bits);
547                  else                  } else {
548                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, write_vol_header);                          pFrame->intra = FrameCodeP(pEnc, &bs, &bits, 1, write_vol_header);
549          }          }
550    
551            }
552    
553          BitstreamPutBits(&bs, 0xFFFF, 16);          BitstreamPutBits(&bs, 0xFFFF, 16);
554          BitstreamPutBits(&bs, 0xFFFF, 16);          BitstreamPutBits(&bs, 0xFFFF, 16);
555          BitstreamPad(&bs);          BitstreamPad(&bs);
556          pFrame->length = BitstreamLength(&bs);          pFrame->length = BitstreamLength(&bs);
557    
558          if (pResult)          if (pResult) {
559          {                  pResult->quant = pEnc->current->quant;
                 pResult->quant = pEnc->mbParam.quant;  
560                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);                  pResult->hlength = pFrame->length - (pEnc->sStat.iTextBits / 8);
561                  pResult->kblks = pEnc->sStat.kblks;                  pResult->kblks = pEnc->sStat.kblks;
562                  pResult->mblks = pEnc->sStat.mblks;                  pResult->mblks = pEnc->sStat.mblks;
563                  pResult->ublks = pEnc->sStat.ublks;                  pResult->ublks = pEnc->sStat.ublks;
564          }          }
565    
566          EMMS();          emms();
567    
568          if (pFrame->quant == 0)          if (pFrame->quant == 0) {
569          {                  RateControlUpdate(&pEnc->rate_control, (int16_t)pEnc->current->quant,
570                  RateControlUpdate(pEnc->mbParam.quant, pFrame->length, pFrame->intra);                                                    pFrame->length, pFrame->intra);
571          }          }
572    #ifdef _DEBUG_PSNR
573            psnr =
574                    image_psnr(&pEnc->sOriginal, &pEnc->current->image,
575                                       pEnc->mbParam.edged_width, pEnc->mbParam.width,
576                                       pEnc->mbParam.height);
577    
578            snprintf(temp, 127, "PSNR: %f\n", psnr);
579            DEBUG(temp);
580    #endif
581    
582            inc_frame_num(pEnc);
583          pEnc->iFrameNum++;          pEnc->iFrameNum++;
         image_swap(&pEnc->sCurrent, &pEnc->sReference);  
584    
585          stop_global_timer();          stop_global_timer();
586          write_timer();          write_timer();
# Line 343  Line 589 
589  }  }
590    
591    
592  static __inline void CodeIntraMB(Encoder *pEnc, MACROBLOCK *pMB) {  static __inline void
593    CodeIntraMB(Encoder * pEnc,
594                            MACROBLOCK * pMB)
595    {
596    
597          pMB->mode = MODE_INTRA;          pMB->mode = MODE_INTRA;
598    
599          if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0) {          /* zero mv statistics */
600                  if(pMB->dquant != NO_CHANGE)          pMB->mvs[0].x = pMB->mvs[1].x = pMB->mvs[2].x = pMB->mvs[3].x = 0;
601                  {          pMB->mvs[0].y = pMB->mvs[1].y = pMB->mvs[2].y = pMB->mvs[3].y = 0;
602            pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;
603            pMB->sad16 = 0;
604    
605            if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
606                    if (pMB->dquant != NO_CHANGE) {
607                          pMB->mode = MODE_INTRA_Q;                          pMB->mode = MODE_INTRA_Q;
608                          pEnc->mbParam.quant += DQtab[pMB->dquant];                          pEnc->current->quant += DQtab[pMB->dquant];
609    
610                            if (pEnc->current->quant > 31)
611                                    pEnc->current->quant = 31;
612                            if (pEnc->current->quant < 1)
613                                    pEnc->current->quant = 1;
614                    }
615            }
616    
617            pMB->quant = pEnc->current->quant;
618    }
619    
620    
621    #define FCODEBITS       3
622    #define MODEBITS        5
623    
624    void
625    HintedMESet(Encoder * pEnc,
626                            int *intra)
627    {
628            HINTINFO *hint;
629            Bitstream bs;
630            int length, high;
631            uint32_t x, y;
632    
633            hint = pEnc->mbParam.hint;
634    
635            if (hint->rawhints) {
636                    *intra = hint->mvhint.intra;
637            } else {
638                    BitstreamInit(&bs, hint->hintstream, hint->hintlength);
639                    *intra = BitstreamGetBit(&bs);
640            }
641    
642            if (*intra) {
643                    return;
644            }
645    
646            pEnc->current->fcode =
647                    (hint->rawhints) ? hint->mvhint.fcode : BitstreamGetBits(&bs,
648                                                                                                                                     FCODEBITS);
649    
650            length = pEnc->current->fcode + 5;
651            high = 1 << (length - 1);
652    
653            for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
654                    for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
655                            MACROBLOCK *pMB =
656                                    &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
657                            MVBLOCKHINT *bhint =
658                                    &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
659                            VECTOR pred;
660                            VECTOR tmp;
661                            int vec;
662    
663                            pMB->mode =
664                                    (hint->rawhints) ? bhint->mode : BitstreamGetBits(&bs,
665                                                                                                                                      MODEBITS);
666    
667                            pMB->mode = (pMB->mode == MODE_INTER_Q) ? MODE_INTER : pMB->mode;
668                            pMB->mode = (pMB->mode == MODE_INTRA_Q) ? MODE_INTRA : pMB->mode;
669    
670                            if (pMB->mode == MODE_INTER) {
671                                    tmp.x =
672                                            (hint->rawhints) ? bhint->mvs[0].x : BitstreamGetBits(&bs,
673                                                                                                                                                      length);
674                                    tmp.y =
675                                            (hint->rawhints) ? bhint->mvs[0].y : BitstreamGetBits(&bs,
676                                                                                                                                                      length);
677                                    tmp.x -= (tmp.x >= high) ? high * 2 : 0;
678                                    tmp.y -= (tmp.y >= high) ? high * 2 : 0;
679    
680                                    pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,0);
681    
682                                    for (vec = 0; vec < 4; ++vec) {
683                                            pMB->mvs[vec].x = tmp.x;
684                                            pMB->mvs[vec].y = tmp.y;
685                                            pMB->pmvs[vec].x = pMB->mvs[0].x - pred.x;
686                                            pMB->pmvs[vec].y = pMB->mvs[0].y - pred.y;
687                                    }
688                            } else if (pMB->mode == MODE_INTER4V) {
689                                    for (vec = 0; vec < 4; ++vec) {
690                                            tmp.x =
691                                                    (hint->rawhints) ? bhint->mvs[vec].
692                                                    x : BitstreamGetBits(&bs, length);
693                                            tmp.y =
694                                                    (hint->rawhints) ? bhint->mvs[vec].
695                                                    y : BitstreamGetBits(&bs, length);
696                                            tmp.x -= (tmp.x >= high) ? high * 2 : 0;
697                                            tmp.y -= (tmp.y >= high) ? high * 2 : 0;
698    
699                                            pred = get_pmv2(pEnc->current->mbs,pEnc->mbParam.mb_width,0,x,y,vec);
700    
701                                            pMB->mvs[vec].x = tmp.x;
702                                            pMB->mvs[vec].y = tmp.y;
703                                            pMB->pmvs[vec].x = pMB->mvs[vec].x - pred.x;
704                                            pMB->pmvs[vec].y = pMB->mvs[vec].y - pred.y;
705                                    }
706                            } else                          // intra / stuffing / not_coded
707                            {
708                                    for (vec = 0; vec < 4; ++vec) {
709                                            pMB->mvs[vec].x = pMB->mvs[vec].y = 0;
710                                    }
711                            }
712    
713                            if (pMB->mode == MODE_INTER4V &&
714                                    (pEnc->current->global_flags & XVID_LUMIMASKING)
715                                    && pMB->dquant != NO_CHANGE) {
716                                    pMB->mode = MODE_INTRA;
717    
718                                    for (vec = 0; vec < 4; ++vec) {
719                                            pMB->mvs[vec].x = pMB->mvs[vec].y = 0;
720                                    }
721                            }
722                    }
723            }
724    }
725    
726    
727    void
728    HintedMEGet(Encoder * pEnc,
729                            int intra)
730    {
731            HINTINFO *hint;
732            Bitstream bs;
733            uint32_t x, y;
734            int length, high;
735    
736            hint = pEnc->mbParam.hint;
737    
738            if (hint->rawhints) {
739                    hint->mvhint.intra = intra;
740            } else {
741                    BitstreamInit(&bs, hint->hintstream, 0);
742                    BitstreamPutBit(&bs, intra);
743            }
744    
745            if (intra) {
746                    if (!hint->rawhints) {
747                            BitstreamPad(&bs);
748                            hint->hintlength = BitstreamLength(&bs);
749                    }
750                    return;
751            }
752    
753            length = pEnc->current->fcode + 5;
754            high = 1 << (length - 1);
755    
756            if (hint->rawhints) {
757                    hint->mvhint.fcode = pEnc->current->fcode;
758            } else {
759                    BitstreamPutBits(&bs, pEnc->current->fcode, FCODEBITS);
760            }
761    
762            for (y = 0; y < pEnc->mbParam.mb_height; ++y) {
763                    for (x = 0; x < pEnc->mbParam.mb_width; ++x) {
764                            MACROBLOCK *pMB =
765                                    &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
766                            MVBLOCKHINT *bhint =
767                                    &hint->mvhint.block[x + y * pEnc->mbParam.mb_width];
768                            VECTOR tmp;
769    
770                            if (hint->rawhints) {
771                                    bhint->mode = pMB->mode;
772                            } else {
773                                    BitstreamPutBits(&bs, pMB->mode, MODEBITS);
774                            }
775    
776                            if (pMB->mode == MODE_INTER || pMB->mode == MODE_INTER_Q) {
777                                    tmp.x = pMB->mvs[0].x;
778                                    tmp.y = pMB->mvs[0].y;
779                                    tmp.x += (tmp.x < 0) ? high * 2 : 0;
780                                    tmp.y += (tmp.y < 0) ? high * 2 : 0;
781    
782                                    if (hint->rawhints) {
783                                            bhint->mvs[0].x = tmp.x;
784                                            bhint->mvs[0].y = tmp.y;
785                                    } else {
786                                            BitstreamPutBits(&bs, tmp.x, length);
787                                            BitstreamPutBits(&bs, tmp.y, length);
788                                    }
789                            } else if (pMB->mode == MODE_INTER4V) {
790                                    int vec;
791    
792                                    for (vec = 0; vec < 4; ++vec) {
793                                            tmp.x = pMB->mvs[vec].x;
794                                            tmp.y = pMB->mvs[vec].y;
795                                            tmp.x += (tmp.x < 0) ? high * 2 : 0;
796                                            tmp.y += (tmp.y < 0) ? high * 2 : 0;
797    
798                          if (pEnc->mbParam.quant > 31) pEnc->mbParam.quant = 31;                                          if (hint->rawhints) {
799                          if (pEnc->mbParam.quant < 1) pEnc->mbParam.quant = 1;                                                  bhint->mvs[vec].x = tmp.x;
800                                                    bhint->mvs[vec].y = tmp.y;
801                                            } else {
802                                                    BitstreamPutBits(&bs, tmp.x, length);
803                                                    BitstreamPutBits(&bs, tmp.y, length);
804                                            }
805                                    }
806                            }
807                  }                  }
808          }          }
809    
810          pMB->quant = pEnc->mbParam.quant;          if (!hint->rawhints) {
811                    BitstreamPad(&bs);
812                    hint->hintlength = BitstreamLength(&bs);
813            }
814  }  }
815    
816    
817  static int FrameCodeI(Encoder * pEnc, Bitstream * bs, uint32_t *pBits)  static int
818    FrameCodeI(Encoder * pEnc,
819                       Bitstream * bs,
820                       uint32_t * pBits)
821  {  {
822          CACHE_ALIGN int16_t dct_codes[6][64];  
823          CACHE_ALIGN int16_t qcoeff[6][64];          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
824            DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
825    
826          uint16_t x, y;          uint16_t x, y;
827    
828          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
829          pEnc->mbParam.rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
830          pEnc->mbParam.coding_type = I_VOP;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
831            pEnc->current->coding_type = I_VOP;
832    
833            BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
834    
835          BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
         BitstreamWriteVopHeader(bs, I_VOP, pEnc->mbParam.rounding_type,  
                                 pEnc->mbParam.quant,  
                                 pEnc->mbParam.fixed_code);  
836    
837          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
838    
# Line 384  Line 841 
841          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
842    
843          for (y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++)
844                  for (x = 0; x < pEnc->mbParam.mb_width; x++)                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
845                  {                          MACROBLOCK *pMB =
846                          MACROBLOCK *pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
847    
848                          CodeIntraMB(pEnc, pMB);                          CodeIntraMB(pEnc, pMB);
849    
850                          MBTransQuantIntra(&pEnc->mbParam, x, y, dct_codes, qcoeff, &pEnc->sCurrent);                          MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
851                                                              dct_codes, qcoeff);
852    
853                          start_timer();                          start_timer();
854                          MBPrediction(&pEnc->mbParam, x, y, pEnc->mbParam.mb_width, qcoeff, pEnc->pMBs);                          MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
855                          stop_prediction_timer();                          stop_prediction_timer();
856    
857                          start_timer();                          start_timer();
858                          MBCoding(&pEnc->mbParam, pMB, qcoeff, bs, &pEnc->sStat);                          if (pEnc->current->global_flags & XVID_GREYSCALE)
859                            {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
860                                    qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
861                                    qcoeff[5*64+0]=0;
862                            }
863                            MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
864                          stop_coding_timer();                          stop_coding_timer();
865                  }                  }
866    
# Line 407  Line 870 
870          pEnc->sStat.fMvPrevSigma = -1;          pEnc->sStat.fMvPrevSigma = -1;
871          pEnc->sStat.iMvSum = 0;          pEnc->sStat.iMvSum = 0;
872          pEnc->sStat.iMvCount = 0;          pEnc->sStat.iMvCount = 0;
873          pEnc->mbParam.fixed_code = 2;          pEnc->mbParam.m_fcode = 2;
874    
875            if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
876                    HintedMEGet(pEnc, 1);
877            }
878    
879          return 1;                                        // intra          return 1;                                        // intra
880  }  }
# Line 415  Line 882 
882    
883  #define INTRA_THRESHOLD 0.5  #define INTRA_THRESHOLD 0.5
884    
885  static int FrameCodeP(Encoder * pEnc, Bitstream * bs, uint32_t *pBits, bool force_inter, bool vol_header)  static int
886    FrameCodeP(Encoder * pEnc,
887                       Bitstream * bs,
888                       uint32_t * pBits,
889                       bool force_inter,
890                       bool vol_header)
891  {  {
892          float fSigma;          float fSigma;
893    
894          CACHE_ALIGN int16_t dct_codes[6][64];          DECLARE_ALIGNED_MATRIX(dct_codes, 6, 64, int16_t, CACHE_LINE);
895          CACHE_ALIGN int16_t qcoeff[6][64];          DECLARE_ALIGNED_MATRIX(qcoeff, 6, 64, int16_t, CACHE_LINE);
896    
897          int iLimit;          int iLimit;
898          uint32_t x, y;          unsigned int x, y;
899          int iSearchRange;          int iSearchRange;
900          bool bIntra;          int bIntra;
901    
902          IMAGE *pCurrent = &pEnc->sCurrent;          /* IMAGE *pCurrent = &pEnc->current->image; */
903          IMAGE *pRef = &pEnc->sReference;          IMAGE *pRef = &pEnc->reference->image;
904    
905          image_setedges(pRef,pEnc->mbParam.edged_width, pEnc->mbParam.edged_height, pEnc->mbParam.width, pEnc->mbParam.height);          start_timer();
906            image_setedges(pRef, pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
907          pEnc->mbParam.rounding_type = 1 - pEnc->mbParam.rounding_type;                                     pEnc->mbParam.width, pEnc->mbParam.height);
908            stop_edges_timer();
909    
910            pEnc->mbParam.m_rounding_type = 1 - pEnc->mbParam.m_rounding_type;
911            pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
912            pEnc->current->fcode = pEnc->mbParam.m_fcode;
913    
914          if (!force_inter)          if (!force_inter)
915                  iLimit = (int)(pEnc->mbParam.mb_width * pEnc->mbParam.mb_height * INTRA_THRESHOLD);                  iLimit =
916                            (int) (pEnc->mbParam.mb_width * pEnc->mbParam.mb_height *
917                                       INTRA_THRESHOLD);
918          else          else
919                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;                  iLimit = pEnc->mbParam.mb_width * pEnc->mbParam.mb_height + 1;
920    
921          if ((pEnc->mbParam.global_flags & XVID_HALFPEL) > 0) {          if ((pEnc->current->global_flags & XVID_HALFPEL)) {
922                  start_timer();                  start_timer();
923                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
924                                    pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
925                                    pEnc->mbParam.rounding_type);                                                    pEnc->mbParam.edged_height,
926                                                      pEnc->current->rounding_type);
927                  stop_inter_timer();                  stop_inter_timer();
928          }          }
929    
930          start_timer();          start_timer();
931          bIntra = MotionEstimation(pEnc->pMBs, &pEnc->mbParam, &pEnc->sReference,          if (pEnc->current->global_flags & XVID_HINTEDME_SET) {
932                                    &pEnc->vInterH, &pEnc->vInterV,                  HintedMESet(pEnc, &bIntra);
933                                    &pEnc->vInterHV, &pEnc->sCurrent, iLimit);          } else {
934    
935    #ifdef _SMP
936            if (pEnc->mbParam.num_threads > 1)
937                    bIntra =
938                            SMP_MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
939                                                     &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
940                                                     iLimit);
941            else
942    #endif
943                    bIntra =
944                            MotionEstimation(&pEnc->mbParam, pEnc->current, pEnc->reference,
945                             &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
946                             iLimit);
947    
948            }
949          stop_motion_timer();          stop_motion_timer();
950    
951          if (bIntra == 1)          if (bIntra == 1) {
952                  return FrameCodeI(pEnc, bs, pBits);                  return FrameCodeI(pEnc, bs, pBits);
953            }
954    
955          pEnc->mbParam.coding_type = P_VOP;          pEnc->current->coding_type = P_VOP;
956    
957          if(vol_header)          if(vol_header)
958                  BitstreamWriteVolHeader(bs, pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.quant_type);                  BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
959    
960          BitstreamWriteVopHeader(bs, P_VOP, pEnc->mbParam.rounding_type,          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);
                                 pEnc->mbParam.quant,  
                                 pEnc->mbParam.fixed_code);  
961    
962          *pBits = BitstreamPos(bs);          *pBits = BitstreamPos(bs);
963    
# Line 472  Line 966 
966          pEnc->sStat.iMvCount = 0;          pEnc->sStat.iMvCount = 0;
967          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;          pEnc->sStat.kblks = pEnc->sStat.mblks = pEnc->sStat.ublks = 0;
968    
969          for(y = 0; y < pEnc->mbParam.mb_height; y++)          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
970          {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
971                  for(x = 0; x < pEnc->mbParam.mb_width; x++)                          MACROBLOCK *pMB =
972                  {                                  &pEnc->current->mbs[x + y * pEnc->mbParam.mb_width];
                         MACROBLOCK * pMB = &pEnc->pMBs[x + y * pEnc->mbParam.mb_width];  
973    
974                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);                          bIntra = (pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q);
975    
976                          if (!bIntra)                          if (!bIntra) {
                         {  
977                                  start_timer();                                  start_timer();
978                                  MBMotionCompensation(pMB, x, y, &pEnc->sReference,                                  MBMotionCompensation(pMB, x, y, &pEnc->reference->image,
979                                                       &pEnc->vInterH, &pEnc->vInterV,                                                       &pEnc->vInterH, &pEnc->vInterV,
980                                                       &pEnc->vInterHV, &pEnc->sCurrent, dct_codes,                                                                           &pEnc->vInterHV, &pEnc->current->image,
981                                                       pEnc->mbParam.width,                                                                           dct_codes, pEnc->mbParam.width,
982                                                       pEnc->mbParam.height,                                                       pEnc->mbParam.height,
983                                                       pEnc->mbParam.edged_width,                                                       pEnc->mbParam.edged_width,
984                                                       pEnc->mbParam.rounding_type);                                                                           pEnc->current->rounding_type);
985                                  stop_comp_timer();                                  stop_comp_timer();
986    
987                                  if ((pEnc->mbParam.global_flags & XVID_LUMIMASKING) > 0) {                                  if ((pEnc->current->global_flags & XVID_LUMIMASKING)) {
988                                          if(pMB->dquant != NO_CHANGE) {                                          if(pMB->dquant != NO_CHANGE) {
989                                                  pMB->mode = MODE_INTER_Q;                                                  pMB->mode = MODE_INTER_Q;
990                                                  pEnc->mbParam.quant += DQtab[pMB->dquant];                                                  pEnc->current->quant += DQtab[pMB->dquant];
991                                                  if (pEnc->mbParam.quant > 31) pEnc->mbParam.quant = 31;                                                  if (pEnc->current->quant > 31)
992                                                  else if(pEnc->mbParam.quant < 1) pEnc->mbParam.quant = 1;                                                          pEnc->current->quant = 31;
993                                                    else if (pEnc->current->quant < 1)
994                                                            pEnc->current->quant = 1;
995                                          }                                          }
996                                  }                                  }
997                                  pMB->quant = pEnc->mbParam.quant;                                  pMB->quant = pEnc->current->quant;
998    
999                                  pMB->cbp = MBTransQuantInter(&pEnc->mbParam, x, y, dct_codes, qcoeff, pCurrent);                                  pMB->field_pred = 0;
1000                          }  
1001                          else                                  pMB->cbp =
1002                          {                                          MBTransQuantInter(&pEnc->mbParam, pEnc->current, pMB, x, y,
1003                                                                              dct_codes, qcoeff);
1004                            } else {
1005                                  CodeIntraMB(pEnc, pMB);                                  CodeIntraMB(pEnc, pMB);
1006                                  MBTransQuantIntra(&pEnc->mbParam, x, y, dct_codes, qcoeff, pCurrent);                                  MBTransQuantIntra(&pEnc->mbParam, pEnc->current, pMB, x, y,
1007                          }                                                                    dct_codes, qcoeff);
1008    
1009                          start_timer();                          start_timer();
1010                          MBPrediction(&pEnc->mbParam, x, y, pEnc->mbParam.mb_width, qcoeff, pEnc->pMBs);                                  MBPrediction(pEnc->current, x, y, pEnc->mbParam.mb_width, qcoeff);
1011                          stop_prediction_timer();                          stop_prediction_timer();
1012                            }
1013    
1014                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q)                          if (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q) {
                         {  
1015                                  pEnc->sStat.kblks++;                                  pEnc->sStat.kblks++;
1016                          }                          } else if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1017                          else if (pMB->cbp ||                                             pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1018                                   pMB->mvs[0].x || pMB->mvs[0].y ||                                             pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
                                  pMB->mvs[1].x || pMB->mvs[1].y ||  
                                  pMB->mvs[2].x || pMB->mvs[2].y ||  
                                  pMB->mvs[3].x || pMB->mvs[3].y)  
                         {  
1019                                  pEnc->sStat.mblks++;                                  pEnc->sStat.mblks++;
1020                          }                          }  else {
                         else  
                         {  
1021                                  pEnc->sStat.ublks++;                                  pEnc->sStat.ublks++;
1022                          }                          }
1023    
1024                          start_timer();                          start_timer();
1025                          MBCoding(&pEnc->mbParam, pMB, qcoeff, bs, &pEnc->sStat);  
1026                            /* Finished processing the MB, now check if to CODE or SKIP */
1027    
1028                            if (pMB->cbp == 0 && pMB->mode == MODE_INTER && pMB->mvs[0].x == 0 &&
1029                                    pMB->mvs[0].y == 0) {
1030    
1031                                            MBSkip(bs);     /* without B-frames, no precautions are needed */
1032    
1033                            }
1034                            else {
1035                                    if (pEnc->current->global_flags & XVID_GREYSCALE) {
1036                                            pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1037                                            qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1038                                            qcoeff[5*64+0]=0;
1039                                    }
1040                                    MBCoding(pEnc->current, pMB, qcoeff, bs, &pEnc->sStat);
1041                            }
1042    
1043                          stop_coding_timer();                          stop_coding_timer();
1044                  }                  }
1045          }          }
1046    
1047          emms();          emms();
1048    
1049            if (pEnc->current->global_flags & XVID_HINTEDME_GET) {
1050                    HintedMEGet(pEnc, 0);
1051            }
1052    
1053          if (pEnc->sStat.iMvCount == 0)          if (pEnc->sStat.iMvCount == 0)
1054                  pEnc->sStat.iMvCount = 1;                  pEnc->sStat.iMvCount = 1;
1055    
1056          fSigma = (float)sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);          fSigma = (float)sqrt((float) pEnc->sStat.iMvSum / pEnc->sStat.iMvCount);
1057    
1058          iSearchRange = 1 << (3 + pEnc->mbParam.fixed_code);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1059    
1060          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1061              && (pEnc->mbParam.fixed_code <= 3)) // maximum search range 128                  && (pEnc->mbParam.m_fcode <= 3))        // maximum search range 128
1062          {          {
1063                  pEnc->mbParam.fixed_code++;                  pEnc->mbParam.m_fcode++;
1064                  iSearchRange *= 2;                  iSearchRange *= 2;
1065          }          } else if ((fSigma < iSearchRange / 6)
         else if ((fSigma < iSearchRange / 6)  
1066                   && (pEnc->sStat.fMvPrevSigma >= 0)                   && (pEnc->sStat.fMvPrevSigma >= 0)
1067                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)                   && (pEnc->sStat.fMvPrevSigma < iSearchRange / 6)
1068                   && (pEnc->mbParam.fixed_code >= 2))    // minimum search range 16                             && (pEnc->mbParam.m_fcode >= 2))     // minimum search range 16
1069          {          {
1070                  pEnc->mbParam.fixed_code--;                  pEnc->mbParam.m_fcode--;
1071                  iSearchRange /= 2;                  iSearchRange /= 2;
1072          }          }
1073    
# Line 566  Line 1076 
1076          *pBits = BitstreamPos(bs) - *pBits;          *pBits = BitstreamPos(bs) - *pBits;
1077    
1078          return 0;                                        // inter          return 0;                                        // inter
1079    
1080  }  }

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.87

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