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

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

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

revision 919, Thu Mar 13 11:07:20 2003 UTC revision 1029, Fri May 16 17:16:21 2003 UTC
# Line 26  Line 26 
26   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
27   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
28   *   *
29   *  $Id: encoder.c,v 1.95.2.4 2003-03-13 11:07:20 suxen_drol Exp $   *  $Id: encoder.c,v 1.95.2.23 2003-05-16 17:16:21 suxen_drol Exp $
30   *   *
31   ****************************************************************************/   ****************************************************************************/
32    
# Line 47  Line 47 
47  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
48  #include "bitstream/bitstream.h"  #include "bitstream/bitstream.h"
49  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
 #include "utils/ratecontrol.h"  
50  #include "utils/emms.h"  #include "utils/emms.h"
51  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
52  #include "quant/adapt_quant.h"  #include "quant/adapt_quant.h"
# Line 55  Line 54 
54  #include "utils/mem_align.h"  #include "utils/mem_align.h"
55    
56  /*****************************************************************************  /*****************************************************************************
  * Local macros  
  ****************************************************************************/  
   
 #define SWAP(_T_,A,B)    { _T_ tmp = A; A = B; B = tmp; }  
   
 /*****************************************************************************  
57   * Local function prototypes   * Local function prototypes
58   ****************************************************************************/   ****************************************************************************/
59    
# Line 76  Line 69 
69                                             FRAMEINFO * frame,                                             FRAMEINFO * frame,
70                                             Bitstream * bs);                                             Bitstream * bs);
71    
 /*****************************************************************************  
  * Local data  
  ****************************************************************************/  
   
 static int DQtab[4] = {  
         -1, -2, 1, 2  
 };  
   
 static int iDQtab[5] = {  
         1, 0, NO_CHANGE, 2, 3  
 };  
   
72    
73  /*****************************************************************************  /*****************************************************************************
74   * Encoder creation   * Encoder creation
# Line 135  Line 116 
116    
117    
118  int  int
119  enc_create(xvid_enc_create_t * create, xvid_enc_rc_t * rc)  enc_create(xvid_enc_create_t * create)
120  {  {
121          Encoder *pEnc;          Encoder *pEnc;
122      int n;      int n;
123    
124          if (XVID_MAJOR(create->version) != 1 || (rc && XVID_MAJOR(rc->version) != 1))   /* v1.x.x */          if (XVID_MAJOR(create->version) != 1)   /* v1.x.x */
125                  return XVID_ERR_VERSION;                  return XVID_ERR_VERSION;
126    
127          if (create->width%2 || create->height%2)          if (create->width%2 || create->height%2)
# Line 153  Line 134 
134                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
135          memset(pEnc, 0, sizeof(Encoder));          memset(pEnc, 0, sizeof(Encoder));
136    
137        pEnc->mbParam.profile = create->profile;
138    
139          /* global flags */          /* global flags */
140      pEnc->mbParam.global_flags = create->global;      pEnc->mbParam.global_flags = create->global;
141    
# Line 167  Line 150 
150      /* framerate */      /* framerate */
151      pEnc->mbParam.fincr = MAX(create->fincr, 0);      pEnc->mbParam.fincr = MAX(create->fincr, 0);
152          pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;          pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;
153        if (pEnc->mbParam.fincr>0)
154          simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);          simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);
155    
156      /* plugin */      /* zones */
157        if(create->num_zones > 0) {
158                    pEnc->num_zones = create->num_zones;
159                    pEnc->zones = xvid_malloc(sizeof(xvid_enc_zone_t) * pEnc->num_zones, CACHE_LINE);
160                    if (pEnc->zones == NULL)
161                            goto xvid_err_memory0;
162            memcpy(pEnc->zones, create->zones, sizeof(xvid_enc_zone_t) * pEnc->num_zones);
163            } else {
164                    pEnc->num_zones = 0;
165                    pEnc->zones = NULL;
166            }
167    
168        /* plugins */
169        if(create->num_plugins > 0) {
170      pEnc->num_plugins = create->num_plugins;      pEnc->num_plugins = create->num_plugins;
171      pEnc->plugins = xvid_malloc(sizeof(xvid_enc_plugin_t) * pEnc->num_plugins, CACHE_LINE);      pEnc->plugins = xvid_malloc(sizeof(xvid_enc_plugin_t) * pEnc->num_plugins, CACHE_LINE);
172      if (pEnc->plugins == NULL)      if (pEnc->plugins == NULL)
173          goto xvid_err_memory0;          goto xvid_err_memory0;
174            } else {
175                    pEnc->num_plugins = 0;
176                    pEnc->plugins = NULL;
177            }
178    
179      for (n=0; n<pEnc->num_plugins;n++) {      for (n=0; n<pEnc->num_plugins;n++) {
180          xvid_plg_create_t pcreate;          xvid_plg_create_t pcreate;
# Line 182  Line 183 
183          memset(&pinfo, 0, sizeof(xvid_plg_info_t));          memset(&pinfo, 0, sizeof(xvid_plg_info_t));
184          pinfo.version = XVID_VERSION;          pinfo.version = XVID_VERSION;
185          if (create->plugins[n].func(0, XVID_PLG_INFO, &pinfo, 0) >= 0) {          if (create->plugins[n].func(0, XVID_PLG_INFO, &pinfo, 0) >= 0) {
186              pEnc->plugin_flags |= pinfo.flags;              pEnc->mbParam.plugin_flags |= pinfo.flags;
187          }          }
188    
189          memset(&pcreate, 0, sizeof(xvid_plg_create_t));          memset(&pcreate, 0, sizeof(xvid_plg_create_t));
190          pcreate.version = XVID_VERSION;          pcreate.version = XVID_VERSION;
191            pcreate.num_zones = pEnc->num_zones;
192            pcreate.zones = pEnc->zones;
193          pcreate.width = pEnc->mbParam.width;          pcreate.width = pEnc->mbParam.width;
194          pcreate.height = pEnc->mbParam.height;          pcreate.height = pEnc->mbParam.height;
195          pcreate.fincr = pEnc->mbParam.fincr;          pcreate.fincr = pEnc->mbParam.fincr;
# Line 197  Line 200 
200          if (create->plugins[n].func(0, XVID_PLG_CREATE, &pcreate, &pEnc->plugins[n].param) >= 0) {          if (create->plugins[n].func(0, XVID_PLG_CREATE, &pcreate, &pEnc->plugins[n].param) >= 0) {
201              pEnc->plugins[n].func = create->plugins[n].func;              pEnc->plugins[n].func = create->plugins[n].func;
202          }          }
203        }
204    
205        if ((pEnc->mbParam.global_flags & XVID_GLOBAL_EXTRASTATS_ENABLE) ||
206            (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
207            pEnc->mbParam.plugin_flags |= XVID_REQORIGINAL; /* psnr calculation requires the original */
208      }      }
209    
210      /* temp dquants */      /* temp dquants */
211        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
212          pEnc->temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width *          pEnc->temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width *
213                                          pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);                                          pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);
214        }
215      /* XXX: error checking */      /* XXX: error checking */
216    
217          /* bframes */          /* bframes */
# Line 210  Line 219 
219          pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);          pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);
220          pEnc->mbParam.bquant_offset = create->bquant_offset;          pEnc->mbParam.bquant_offset = create->bquant_offset;
221    
222        /* min/max quant */
223        for (n=0; n<3; n++) {
224            pEnc->mbParam.min_quant[n] = create->min_quant[n] > 0 ? create->min_quant[n] : 2;
225            pEnc->mbParam.max_quant[n] = create->max_quant[n] > 0 ? create->max_quant[n] : 31;
226        }
227    
228          /* frame drop ratio */          /* frame drop ratio */
229          pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);          pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);
230    
231      /* max keyframe interval */      /* max keyframe interval */
232      pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <=0 ? 250 : create->max_key_interval;      pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <= 0 ?
233      /*XXX: replace 250 hard code with "10seconds * framerate" */                  10 * pEnc->mbParam.fbase / pEnc->mbParam.fincr : create->max_key_interval;
234    
235          /* Bitrate allocator defaults          /* Bitrate allocator defaults
236    
         if (create->rc_bitrate <= 0)  
                 create->rc_bitrate = 900000;  
   
         if (create->rc_reaction_delay_factor <= 0)  
                 create->rc_reaction_delay_factor = 16;  
   
         if (create->rc_averaging_period <= 0)  
                 create->rc_averaging_period = 100;  
   
         if (create->rc_buffer <= 0)  
                 create->rc_buffer = 100;  
   
   
   
237          if ((create->min_quantizer <= 0) || (create->min_quantizer > 31))          if ((create->min_quantizer <= 0) || (create->min_quantizer > 31))
238                  create->min_quantizer = 1;                  create->min_quantizer = 1;
239    
# Line 240  Line 241 
241                  create->max_quantizer = 31;                  create->max_quantizer = 31;
242    
243          if (create->max_quantizer < create->min_quantizer)          if (create->max_quantizer < create->min_quantizer)
244                  create->max_quantizer = create->min_quantizer;                  create->max_quantizer = create->min_quantizer; */
   
         pEnc->bitrate = create->rc_bitrate; */  
245    
246    
247      /* allocate working frame-image memory */      /* allocate working frame-image memory */
# Line 267  Line 266 
266    
267          /* allocate interpolation image memory */          /* allocate interpolation image memory */
268    
269          if (create->global & XVID_EXTRASTATS_ENABLE)      if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
270                  image_null(&pEnc->sOriginal);                  image_null(&pEnc->sOriginal);
271            image_null(&pEnc->sOriginal2);
272        }
273    
274          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
275          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
# Line 282  Line 283 
283          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
284          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
285    
286          if (create->global & XVID_EXTRASTATS_ENABLE)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
287          {       if (image_create          if (image_create
288                          (&pEnc->sOriginal, pEnc->mbParam.edged_width,                          (&pEnc->sOriginal, pEnc->mbParam.edged_width,
289                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
290                          goto xvid_err_memory3;                          goto xvid_err_memory3;
291    
292            if (image_create
293                            (&pEnc->sOriginal2, pEnc->mbParam.edged_width,
294                             pEnc->mbParam.edged_height) < 0)
295                            goto xvid_err_memory3;
296          }          }
297    
298          if (image_create          if (image_create
# Line 421  Line 427 
427          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
428          pEnc->fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
429    
     /* XXX: cleanup ratecontol when new code is ready */  
 /*      if (create->rc_bitrate) {  
                 RateControlInit(&pEnc->rate_control, create->rc_bitrate,  
                                                 create->rc_reaction_delay_factor,  
                                                 create->rc_averaging_period, create->rc_buffer,  
                                                 create->fbase * 1000 / create->fincr,  
                                                 create->max_quantizer, create->min_quantizer);  
         } */  
   
430      create->handle = (void *) pEnc;      create->handle = (void *) pEnc;
431    
432          init_timer();          init_timer();
# Line 476  Line 473 
473    
474    xvid_err_memory3:    xvid_err_memory3:
475    
476          if (pEnc->mbParam.global_flags & XVID_EXTRASTATS_ENABLE)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
477          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,                  image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
478                                              pEnc->mbParam.edged_height);
479                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
480                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
481          }          }
482    
# Line 516  Line 515 
515          xvid_free(pEnc->current);          xvid_free(pEnc->current);
516          xvid_free(pEnc->reference);          xvid_free(pEnc->reference);
517    
518        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
519          xvid_free(pEnc->temp_dquants);          xvid_free(pEnc->temp_dquants);
520        }
521    
522    xvid_err_memory0:    xvid_err_memory0:
523      for (n=0; n<pEnc->num_plugins;n++) {      for (n=0; n<pEnc->num_plugins;n++) {
# Line 526  Line 527 
527      }      }
528      xvid_free(pEnc->plugins);      xvid_free(pEnc->plugins);
529    
530        xvid_free(pEnc->zones);
531    
532          xvid_free(pEnc);          xvid_free(pEnc);
533    
534          create->handle = NULL;          create->handle = NULL;
# Line 603  Line 606 
606                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
607          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
608                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
609            image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
610                                      pEnc->mbParam.edged_height);
611    
612          if (pEnc->mbParam.global_flags & XVID_EXTRASTATS_ENABLE)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
613          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,                  image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
614                                              pEnc->mbParam.edged_height);
615                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
616                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
617          }          }
618    
# Line 617  Line 624 
624          xvid_free(pEnc->reference->mbs);          xvid_free(pEnc->reference->mbs);
625          xvid_free(pEnc->reference);          xvid_free(pEnc->reference);
626    
627        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
628      xvid_free(pEnc->temp_dquants);      xvid_free(pEnc->temp_dquants);
629        }
630    
631    
632        if (pEnc->num_plugins>0) {
633            xvid_plg_destroy_t pdestroy;
634            memset(&pdestroy, 0, sizeof(xvid_plg_destroy_t));
635    
636            pdestroy.version = XVID_VERSION;
637            pdestroy.num_frames = pEnc->m_framenum;
638    
639      for (i=0; i<pEnc->num_plugins;i++) {      for (i=0; i<pEnc->num_plugins;i++) {
640          if (pEnc->plugins[i].func) {          if (pEnc->plugins[i].func) {
641              pEnc->plugins[i].func(pEnc->plugins[i].param, XVID_PLG_DESTROY, 0, 0);                  pEnc->plugins[i].func(pEnc->plugins[i].param, XVID_PLG_DESTROY, &pdestroy, 0);
642          }          }
643      }      }
644      xvid_free(pEnc->plugins);      xvid_free(pEnc->plugins);
645        }
646    
647        if (pEnc->num_plugins>0)
648            xvid_free(pEnc->zones);
649    
650          xvid_free(pEnc);          xvid_free(pEnc);
651    
# Line 636  Line 657 
657    call the plugins    call the plugins
658    */    */
659    
660  static void call_plugins(Encoder * pEnc, FRAMEINFO * frame, int opt, int * type, int * quant)  static void call_plugins(Encoder * pEnc, FRAMEINFO * frame, IMAGE * original,
661                             int opt, int * type, int * quant, xvid_enc_stats_t * stats)
662  {  {
663      int i;      unsigned int i, j;
664      xvid_plg_data_t data;      xvid_plg_data_t data;
665    
666        /* set data struct */
667    
668      memset(&data, 0, sizeof(xvid_plg_data_t));      memset(&data, 0, sizeof(xvid_plg_data_t));
669      data.version = XVID_VERSION;      data.version = XVID_VERSION;
670    
671        /* find zone */
672        for(i=0; i<pEnc->num_zones && pEnc->zones[i].frame<=frame->frame_num; i++) ;
673        data.zone = i>0 ? &pEnc->zones[i-1] : NULL;
674    
675        data.width = pEnc->mbParam.width;
676        data.height = pEnc->mbParam.height;
677        data.mb_width = pEnc->mbParam.mb_width;
678        data.mb_height = pEnc->mbParam.mb_height;
679        data.fincr = frame->fincr;
680        data.fbase = pEnc->mbParam.fbase;
681    
682        for (i=0; i<3; i++) {
683            data.min_quant[i] = pEnc->mbParam.min_quant[i];
684            data.max_quant[i] = pEnc->mbParam.max_quant[i];
685        }
686    
687      data.reference.csp = XVID_CSP_USER;      data.reference.csp = XVID_CSP_USER;
688      data.reference.plane[0] = pEnc->reference->image.y;      data.reference.plane[0] = pEnc->reference->image.y;
689      data.reference.plane[1] = pEnc->reference->image.u;      data.reference.plane[1] = pEnc->reference->image.u;
# Line 660  Line 700 
700      data.current.stride[1] = pEnc->mbParam.edged_width/2;      data.current.stride[1] = pEnc->mbParam.edged_width/2;
701      data.current.stride[2] = pEnc->mbParam.edged_width/2;      data.current.stride[2] = pEnc->mbParam.edged_width/2;
702    
703      data.original.csp = XVID_CSP_NULL;      data.frame_num = frame->frame_num;
     /* todo: data.original */  
704    
705      if (opt == XVID_PLG_BEFORE) {      if (opt == XVID_PLG_BEFORE) {
706          data.type = XVID_TYPE_AUTO;          data.type = XVID_TYPE_AUTO;
707          data.quant = 2;          data.quant = 0;
708          //memset(pEnc->temp_dquants, NO_CHANGE, pEnc->mbParam.width * pEnc->mbParam.height);  
709          //data.qscale_stride = pEnc->mbParam.width;                  if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
710          //data.qscale_table = pEnc->temp_dquants;              data.dquant = pEnc->temp_dquants;
711          /* todo: vol,vop,motion flags */              data.dquant_stride = pEnc->mbParam.mb_width;
712                            memset(data.dquant, 0, data.mb_width*data.mb_height);
713            }
714    
715            /* todo: [vol,vop,motion]_flags*/
716    
717      } else { // XVID_PLG_AFTER      } else { // XVID_PLG_AFTER
718            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
719                data.original.csp = XVID_CSP_USER;
720                data.original.plane[0] = original->y;
721                data.original.plane[1] = original->u;
722                data.original.plane[2] = original->v;
723                data.original.stride[0] = pEnc->mbParam.edged_width;
724                data.original.stride[1] = pEnc->mbParam.edged_width/2;
725                data.original.stride[2] = pEnc->mbParam.edged_width/2;
726            }
727    
728            if ((frame->vol_flags & XVID_VOL_EXTRASTATS) ||
729                (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
730    
731                            data.sse_y =
732                                plane_sse( original->y, frame->image.y,
733                                                   pEnc->mbParam.edged_width, pEnc->mbParam.width,
734                                                   pEnc->mbParam.height);
735    
736                data.sse_u =
737                    plane_sse( original->u, frame->image.u,
738                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
739                                                   pEnc->mbParam.height/2);
740    
741                            data.sse_v =
742                    plane_sse( original->v, frame->image.v,
743                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
744                                                   pEnc->mbParam.height/2);
745            }
746    
747          data.type = coding2type(frame->coding_type);          data.type = coding2type(frame->coding_type);
748          data.quant = frame->quant;          data.quant = frame->quant;
749          /* todo: data.qscale */  
750            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
751                data.dquant = pEnc->temp_dquants;
752                data.dquant_stride = pEnc->mbParam.mb_width;
753    
754                for (j=0; j<pEnc->mbParam.mb_height; j++)
755                for (i=0; i<pEnc->mbParam.mb_width; i++) {
756                    data.dquant[j*data.dquant_stride + i] = frame->mbs[j*pEnc->mbParam.mb_width + i].dquant;;
757                }
758            }
759    
760          data.vol_flags = frame->vol_flags;          data.vol_flags = frame->vol_flags;
761          data.vop_flags = frame->vop_flags;          data.vop_flags = frame->vop_flags;
762          data.motion_flags = frame->motion_flags;          data.motion_flags = frame->motion_flags;
# Line 684  Line 765 
765          data.kblks = frame->sStat.kblks;          data.kblks = frame->sStat.kblks;
766          data.mblks = frame->sStat.mblks;          data.mblks = frame->sStat.mblks;
767          data.ublks = frame->sStat.ublks;          data.ublks = frame->sStat.ublks;
768    
769            if (stats) {
770                    stats->type = coding2type(frame->coding_type);
771                    stats->quant = frame->quant;
772                    stats->vol_flags = frame->vol_flags;
773                    stats->vop_flags = frame->vop_flags;
774                    stats->length = frame->length;
775                    stats->hlength = frame->length - (frame->sStat.iTextBits / 8);
776                    stats->kblks = frame->sStat.kblks;
777                    stats->mblks = frame->sStat.mblks;
778                    stats->ublks = frame->sStat.ublks;
779                stats->sse_y = data.sse_y;
780                stats->sse_u = data.sse_u;
781                stats->sse_v = data.sse_v;
782            }
783      }      }
784    
785        /* call plugins */
786      for (i=0; i<pEnc->num_plugins;i++) {      for (i=0; i<pEnc->num_plugins;i++) {
787            emms();
788          if (pEnc->plugins[i].func) {          if (pEnc->plugins[i].func) {
789              if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {              if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {
790                  continue;                  continue;
791              }              }
792          }          }
793      }      }
794        emms();
795    
796        /* copy modified values back into frame*/
797      if (opt == XVID_PLG_BEFORE) {      if (opt == XVID_PLG_BEFORE) {
798          *type = data.type;          *type = data.type;
799          *quant = data.quant;          *quant = data.quant > 0 ? data.quant : 2;   /* default */
         /* todo: copy modified qscale,vol,vop,motion flags into the frame*/  
     }  
800    
801            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
802                for (j=0; j<pEnc->mbParam.mb_height; j++)
803                for (i=0; i<pEnc->mbParam.mb_width; i++) {
804                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = data.dquant[j*data.mb_width + i];
805                }
806            }else{
807                for (j=0; j<pEnc->mbParam.mb_height; j++)
808                for (i=0; i<pEnc->mbParam.mb_width; i++) {
809                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;
810                }
811            }
812            /* todo: [vol,vop,motion]_flags*/
813        }
814  }  }
815    
816    
# Line 707  Line 818 
818    
819  static __inline void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
820  {  {
821        pEnc->current->frame_num = pEnc->m_framenum;
822          pEnc->current->stamp = pEnc->mbParam.m_stamp;   /* first frame is zero */          pEnc->current->stamp = pEnc->mbParam.m_stamp;   /* first frame is zero */
         pEnc->mbParam.m_stamp += pEnc->mbParam.fincr;  
823    
824        pEnc->mbParam.m_stamp += pEnc->current->fincr;
825      pEnc->m_framenum++; /* debug ticker */      pEnc->m_framenum++; /* debug ticker */
826  }  }
827    
828    static __inline void dec_frame_num(Encoder * pEnc)
829    {
830        pEnc->mbParam.m_stamp -= pEnc->mbParam.fincr;
831        pEnc->m_framenum--; /* debug ticker */
832    }
833    
834    
835    
836  static __inline void  static __inline void
# Line 735  Line 853 
853  }  }
854    
855    
 static void  
 set_stats(xvid_enc_stats_t * stats, RateControl * rc,  
                   const MBParam * pParam, const FRAMEINFO * frame)  
 {  
         if (stats)  
         {  
                 stats->type = coding2type(frame->coding_type);  
                 stats->quant = frame->quant;  
                 stats->vol_flags = frame->vol_flags;  
                 stats->vop_flags = frame->vop_flags;  
                 stats->length = frame->length;  
                 stats->hlength = frame->length - (frame->sStat.iTextBits / 8);  
                 stats->kblks = frame->sStat.kblks;  
                 stats->mblks = frame->sStat.mblks;  
                 stats->ublks = frame->sStat.ublks;  
         }  
   
         RateControlUpdate(rc, frame->quant, frame->length, frame->coding_type==I_VOP );  
 }  
   
   
856    
857  /*****************************************************************************  /*****************************************************************************
858   * IPB frame encoder entry point   * IPB frame encoder entry point
# Line 770  Line 867 
867   ****************************************************************************/   ****************************************************************************/
868    
869    
 /* XXX: dx50bvop broken! something todo with queue */  
   
870  int  int
871  enc_encode(Encoder * pEnc,  enc_encode(Encoder * pEnc,
872                             xvid_enc_frame_t * xFrame,                             xvid_enc_frame_t * xFrame,
# Line 779  Line 874 
874  {  {
875          xvid_enc_frame_t * frame;          xvid_enc_frame_t * frame;
876          int type;          int type;
         uint16_t x, y;  
877          Bitstream bs;          Bitstream bs;
878    
879          if (XVID_MAJOR(xFrame->version) != 1 || (stats && XVID_MAJOR(stats->version) != 1))     /* v1.x.x */          if (XVID_MAJOR(xFrame->version) != 1 || (stats && XVID_MAJOR(stats->version) != 1))     /* v1.x.x */
# Line 803  Line 897 
897                  if (image_input                  if (image_input
898                          (&q->image, pEnc->mbParam.width, pEnc->mbParam.height,                          (&q->image, pEnc->mbParam.width, pEnc->mbParam.height,
899                          pEnc->mbParam.edged_width, (uint8_t**)xFrame->input.plane, xFrame->input.stride,                          pEnc->mbParam.edged_width, (uint8_t**)xFrame->input.plane, xFrame->input.stride,
900                          xFrame->input.csp, xFrame->vol_flags & XVID_INTERLACING))                          xFrame->input.csp, xFrame->vol_flags & XVID_VOL_INTERLACING))
901                  {                  {
902                          emms();                          emms();
903                          return XVID_ERR_FORMAT;                          return XVID_ERR_FORMAT;
904                  }                  }
905                  stop_conv_timer();                  stop_conv_timer();
906    
907                  if ((xFrame->vop_flags & XVID_CHROMAOPT)) {                  if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
908                          image_chroma_optimize(&q->image,                          image_chroma_optimize(&q->image,
909                                  pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);                                  pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
910                  }                  }
# Line 842  Line 936 
936    
937          if (pEnc->flush_bframes)          if (pEnc->flush_bframes)
938          {          {
939                  if (pEnc->bframenum_head < pEnc->bframenum_tail)                  if (pEnc->bframenum_head < pEnc->bframenum_tail) {
                 {  
940    
941                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                          DPRINTF(DPRINTF_DEBUG,"*** BFRAME (flush) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
942                                          pEnc->bframenum_head, pEnc->bframenum_tail,                                          pEnc->bframenum_head, pEnc->bframenum_tail,
943                                          pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                          pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
944    
945                          if (pEnc->bframes[pEnc->bframenum_head]->vop_flags & XVID_EXTRASTATS) {              if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
946                                  image_copy(&pEnc->sOriginal, &pEnc->bframes[pEnc->bframenum_head]->image,                                  image_copy(&pEnc->sOriginal2, &pEnc->bframes[pEnc->bframenum_head]->image,
947                                                     pEnc->mbParam.edged_width, pEnc->mbParam.height);                                                     pEnc->mbParam.edged_width, pEnc->mbParam.height);
948                          }                          }
949    
950                          FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);                          FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);
951                call_plugins(pEnc, pEnc->bframes[pEnc->bframenum_head], &pEnc->sOriginal2, XVID_PLG_AFTER, 0, 0, stats);
                         if (pEnc->bframes[pEnc->bframenum_head]->vop_flags & XVID_EXTRASTATS) {  
                                 stats->sse_y =  
                                         plane_sse( pEnc->sOriginal.y, pEnc->bframes[pEnc->bframenum_head]->image.y,  
                                                            pEnc->mbParam.edged_width, pEnc->mbParam.width,  
                                                            pEnc->mbParam.height);  
   
                                 stats->sse_u =  
                                         plane_sse( pEnc->sOriginal.u, pEnc->bframes[pEnc->bframenum_head]->image.u,  
                                                            pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,  
                                                            pEnc->mbParam.height/2);  
   
                                 stats->sse_v =  
                                         plane_sse( pEnc->sOriginal.v, pEnc->bframes[pEnc->bframenum_head]->image.v,  
                                                            pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,  
                                                            pEnc->mbParam.height/2);  
                         }  
   
                         set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->bframes[pEnc->bframenum_head]);  
             emms();  
             call_plugins(pEnc, pEnc->current, XVID_PLG_AFTER, 0, 0);  
             emms();  
   
952                          pEnc->bframenum_head++;                          pEnc->bframenum_head++;
953    
   
954                          goto done;                          goto done;
955                  }                  }
956    
                 /* flush complete: reset counters */  
   
                 pEnc->flush_bframes = 0;  
                 pEnc->bframenum_head = pEnc->bframenum_tail = 0;  
   
957                  /* write an empty marker to the bitstream.                  /* write an empty marker to the bitstream.
958    
959                     for divx5 decoder compatibility, this marker must consist                     for divx5 decoder compatibility, this marker must consist
# Line 896  Line 961 
961                     indentical to the future-referece frame.                     indentical to the future-referece frame.
962                  */                  */
963    
964                  if ((pEnc->mbParam.global_flags & XVID_PACKED)) {                  if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED && pEnc->bframenum_tail > 0)) {
965                          int tmp;                          int tmp;
966                          int bits;                          int bits;
967    
# Line 915  Line 980 
980    
981                          /* add the not-coded length to the reference frame size */                          /* add the not-coded length to the reference frame size */
982                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;
983                          set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->current);              call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
             emms();  
             call_plugins(pEnc, pEnc->current, XVID_PLG_AFTER, 0, 0);  
             emms();  
   
                         // xFrame->out_flags |= XVID_PACKED_FIXUP?;  
984    
985                /* flush complete: reset counters */
986                    pEnc->flush_bframes = 0;
987                        pEnc->bframenum_head = pEnc->bframenum_tail = 0;
988                          goto done;                          goto done;
989    
990                  }                  }
         }  
991    
992            /* flush complete: reset counters */
993                    pEnc->flush_bframes = 0;
994                    pEnc->bframenum_head = pEnc->bframenum_tail = 0;
995            }
996    
997          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
998           * dequeue frame from the encoding queue           * dequeue frame from the encoding queue
# Line 936  Line 1002 
1002          {          {
1003                  if (xFrame->input.csp == XVID_CSP_NULL) /* no futher input */                  if (xFrame->input.csp == XVID_CSP_NULL) /* no futher input */
1004                  {                  {
1005                          if (pEnc->bframenum_tail > 0)   /* are bframes */  
1006                if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0) {
1007                    call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1008                }
1009    
1010                /* if the very last frame is to be b-vop, we must change it to a p-vop */
1011                if (pEnc->bframenum_tail > 0)
1012                          {                          {
1013    
1014                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
1015                                  pEnc->bframenum_tail--;                                  pEnc->bframenum_tail--;
1016                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1017    
1018                                  /* XXX: convert B-VOP to P-VOP */                                  /* convert B-VOP to P-VOP */
1019                                  pEnc->current->quant *= 2;                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
1020    
1021                    if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1022                                image_copy(&pEnc->sOriginal, &pEnc->current->image,
1023                                       pEnc->mbParam.edged_width, pEnc->mbParam.height);
1024                    }
1025    
1026                                  FrameCodeP(pEnc, &bs, 1, 0);                                  FrameCodeP(pEnc, &bs, 1, 0);
1027    
1028                                  goto done_flush;                                  goto done_flush;
1029                          }                          }
1030    
# Line 966  Line 1045 
1045    
1046    
1047          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1048           * init pEnc->current field           * init pEnc->current fields
1049           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1050    
1051          emms();         /* float-point region */      pEnc->current->fincr = pEnc->mbParam.fincr>0 ? pEnc->mbParam.fincr : frame->fincr;
1052        inc_frame_num(pEnc);
1053      pEnc->current->vol_flags = pEnc->mbParam.vol_flags;      pEnc->current->vol_flags = pEnc->mbParam.vol_flags;
1054      pEnc->current->vop_flags = frame->vop_flags;      pEnc->current->vop_flags = frame->vop_flags;
1055          pEnc->current->motion_flags = frame->motion;          pEnc->current->motion_flags = frame->motion;
1056          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1057          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
1058    
1059      if ((xFrame->vop_flags & XVID_CHROMAOPT)) {  
1060        if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
1061              image_chroma_optimize(&pEnc->current->image,              image_chroma_optimize(&pEnc->current->image,
1062                      pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);                      pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
1063      }      }
1064    
1065      if (xFrame->vop_flags & XVID_EXTRASTATS) {          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1066                  image_copy(&pEnc->sOriginal, &pEnc->current->image,           * frame type & quant selection
1067                         pEnc->mbParam.edged_width, pEnc->mbParam.height);           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
     }  
   
         if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {  
   
                 pEnc->current->quant =  
                         adaptive_quantization(pEnc->current->image.y,  
                                                           pEnc->mbParam.edged_width, pEnc->temp_dquants,  
                                                           pEnc->current->quant, pEnc->current->quant,  
                                                           2 * pEnc->current->quant,  
                                                           pEnc->mbParam.mb_width,  
                                                           pEnc->mbParam.mb_height);  
   
                 for (y = 0; y < pEnc->mbParam.mb_height; y++) {  
   
 #define OFFSET(x,y) ((x) + (y)*pEnc->mbParam.mb_width)  
   
                         for (x = 0; x < pEnc->mbParam.mb_width; x++) {  
                                 MACROBLOCK *pMB = &pEnc->current->mbs[OFFSET(x, y)];  
   
                                 pMB->dquant = iDQtab[pEnc->temp_dquants[OFFSET(x, y)] + 2];  
                         }  
   
 #undef OFFSET  
                 }  
   
         }  
1068    
1069          emms();         /* END floating-point region */      call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_BEFORE, &type, &pEnc->current->quant, stats);
     call_plugins(pEnc, pEnc->current, XVID_PLG_BEFORE, &type, &pEnc->current->quant);  
     emms();  
1070    
1071      if (frame->type > 0)      if (frame->type > 0)
1072                  type = frame->type;                  type = frame->type;
# Line 1022  Line 1074 
1074      if (frame->quant > 0)      if (frame->quant > 0)
1075                  pEnc->current->quant = frame->quant;                  pEnc->current->quant = frame->quant;
1076    
1077      if (type > 0)       /* XVID_TYPE_?VOP */      if (type > 0){      /* XVID_TYPE_?VOP */
         {  
1078                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */
1079          }      } else{             /* XVID_TYPE_AUTO */
1080          else                    /* XVID_TYPE_AUTO */                  if (pEnc->iFrameNum == 0 || (pEnc->mbParam.iMaxKeyInterval > 0 && pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval)){
         {  
                 if (pEnc->iFrameNum == 0 ||  
                         (pEnc->mbParam.iMaxKeyInterval > 0 && pEnc->iFrameNum >= pEnc->mbParam.iMaxKeyInterval))  
                 {  
1081                          pEnc->iFrameNum = 0;                          pEnc->iFrameNum = 0;
1082                          type = I_VOP;                          type = I_VOP;
1083                  }else{                  }else{
1084                          type = MEanalysis(&pEnc->reference->image, pEnc->current,                          type = MEanalysis(&pEnc->reference->image, pEnc->current,
1085                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
1086                                          pEnc->iFrameNum, pEnc->bframenum_tail);                                          pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold);
1087                  }                  }
1088          }          }
         inc_frame_num(pEnc);  
         pEnc->iFrameNum++;  
1089    
1090        /* bframes buffer overflow check */
1091        if (type == B_VOP && pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
1092            type = P_VOP;
1093        }
1094    
1095            pEnc->iFrameNum++;
1096    
1097          if ((pEnc->current->vop_flags & XVID_DEBUG)) {          if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1098                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 5,
1099                          "%i  st:%i  if:%i", pEnc->m_framenum, pEnc->current->stamp, pEnc->iFrameNum);                          "%i  st:%i  if:%i", pEnc->current->frame_num, pEnc->current->stamp, pEnc->iFrameNum);
1100          }          }
1101    
1102          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1103           * ivop/pvop/bvop selection           * encode this frame as a b-vop
1104         * (we dont encode here, rather we store the frame in the bframes queue, to be encoded later)
1105           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1106            if (type == B_VOP) {
1107                    if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1108                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1109                    }
1110    
1111          if (type == I_VOP) {                  if (frame->quant < 1) {
1112                            pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1113                                    pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1114    
1115                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  } else {
1116                            pEnc->current->quant = frame->quant;
1117                    }
1118    
1119                    if (pEnc->current->quant < 1)
1120                            pEnc->current->quant = 1;
1121                    else if (pEnc->current->quant > 31)
1122                pEnc->current->quant = 31;
1123    
1124                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i",
1125                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1126                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1127    
1128                  if ((pEnc->current->vop_flags & XVID_DEBUG)) {                  /* store frame into bframe buffer & swap ref back to current */
1129                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1130                    SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
1131    
1132                    pEnc->bframenum_tail++;
1133    
1134                    goto repeat;
1135        }
1136    
1137        /* for unpacked bframes, output the stats for the last encoded frame */
1138        if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1139        {
1140            if (pEnc->current->stamp > 0) {
1141                call_plugins(pEnc, pEnc->reference, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1142                  }                  }
1143                    else
1144                            stats->type = XVID_TYPE_NOTHING;
1145        }
1146    
1147            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1148             * closed-gop
1149         * if the frame prior to an iframe is scheduled as a bframe, we must change it to a pframe
1150         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1151    
1152                  // when we reach an iframe in CLOSED_GOP mode, encode the last bframe as a xFrame      if (type == I_VOP && (pEnc->mbParam.global_flags & XVID_GLOBAL_CLOSED_GOP) && pEnc->bframenum_tail > 0) {
                 if ((pEnc->mbParam.global_flags & XVID_CLOSED_GOP) && pEnc->bframenum_tail > 0) {  
1153    
1154                          // place this frame back on the encoding-queue (head)                          // place this frame back on the encoding-queue (head)
1155                          // we will deal with it next time                          // we will deal with it next time
1156            dec_frame_num(pEnc);
1157            pEnc->iFrameNum--;
1158    
1159                          pEnc->queue_head = (pEnc->queue_head + (pEnc->mbParam.max_bframes+1) - 1) % (pEnc->mbParam.max_bframes+1);                          pEnc->queue_head = (pEnc->queue_head + (pEnc->mbParam.max_bframes+1) - 1) % (pEnc->mbParam.max_bframes+1);
1160            pEnc->queue_size++;
1161                          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);                          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
1162    
1163                          // grab the last frame from the bframe-queue                          // grab the last frame from the bframe-queue
# Line 1075  Line 1165 
1165                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
1166                          SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1167    
1168                          if ((pEnc->current->vop_flags & XVID_DEBUG)) {                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1169                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");                                  image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 100, "DX50 BVOP->PVOP");
1170                          }                          }
1171    
1172                          /* XXX: convert B-VOP to P-VOP */                  /* convert B-VOP quant to P-VOP */
1173                          pEnc->current->quant *= 2;                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
1174            type = P_VOP;
1175        }
1176    
                         FrameCodeP(pEnc, &bs, 1, 0);  
1177    
1178                  } else {          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1179             * encode this frame as an i-vop
1180         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1181    
1182            if (type == I_VOP) {
1183    
1184                    DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1185                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1186                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1187    
1188                    if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1189                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
1190                    }
1191    
1192    
1193                          /* ---- update vol flags at IVOP ----------- */                          /* ---- update vol flags at IVOP ----------- */
1194                          pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;                          pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
1195    
1196              if ((pEnc->mbParam.vol_flags & XVID_MPEGQUANT)) {          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {
1197                                  if (frame->quant_intra_matrix != NULL)                                  if (frame->quant_intra_matrix != NULL)
1198                                          set_intra_matrix(frame->quant_intra_matrix);                                          set_intra_matrix(frame->quant_intra_matrix);
1199                                  if (frame->quant_inter_matrix != NULL)                                  if (frame->quant_inter_matrix != NULL)
# Line 1098  Line 1202 
1202    
1203              /* prevent vol/vop misuse */              /* prevent vol/vop misuse */
1204    
1205              if (!(pEnc->current->vol_flags & XVID_REDUCED_ENABLE))          if (!(pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1206                  pEnc->current->vop_flags &= ~XVID_REDUCED;              pEnc->current->vop_flags &= ~XVID_VOP_REDUCED;
1207    
1208              if (!(pEnc->current->vol_flags & XVID_INTERLACING))          if (!(pEnc->current->vol_flags & XVID_VOL_INTERLACING))
1209                  pEnc->current->vop_flags &= ~(XVID_TOPFIELDFIRST|XVID_ALTERNATESCAN);              pEnc->current->vop_flags &= ~(XVID_VOP_TOPFIELDFIRST|XVID_VOP_ALTERNATESCAN);
1210    
1211                          /* ^^^------------------------ */                          /* ^^^------------------------ */
1212    
1213            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1214                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1215                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
1216            }
1217    
1218                          FrameCodeI(pEnc, &bs);                          FrameCodeI(pEnc, &bs);
1219                          xFrame->out_flags |= XVID_KEYFRAME;                          xFrame->out_flags |= XVID_KEYFRAME;
                 }  
1220    
1221          } else if (((pEnc->current->vop_flags & XVID_DYNAMIC_BFRAMES) && type == P_VOP) ||          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1222                                  pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {           * encode this frame as an p-vop
1223                  /*       * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1224                   * This will be coded as a Predicted Frame  
1225                   */      } else { // (type == P_VOP || type == S_VOP)
1226    
1227                  DPRINTF(DPRINTF_DEBUG,"*** xFrame bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  DPRINTF(DPRINTF_DEBUG,"*** PFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1228                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1229                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1230    
1231                  if ((pEnc->current->vop_flags & XVID_DEBUG)) {                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1232                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "PVOP");
1233                  }                  }
1234    
1235                  FrameCodeP(pEnc, &bs, 1, 0);          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1236                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1237          } else {        /* type == B_VOP */                             pEnc->mbParam.edged_width, pEnc->mbParam.height);
   
                 if ((pEnc->current->vop_flags & XVID_DEBUG)) {  
                         image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");  
                 }  
   
                 if (frame->bquant < 1) {  
                         pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *  
                                 pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;  
   
                 } else {  
                         pEnc->current->quant = frame->bquant;  
1238                  }                  }
1239    
1240                  if (pEnc->current->quant < 1)                  FrameCodeP(pEnc, &bs, 1, 0);
                         pEnc->current->quant = 1;  
                 else if (pEnc->current->quant > 31)  
             pEnc->current->quant = 31;  
   
                 DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i\n",  
                                 pEnc->bframenum_head, pEnc->bframenum_tail,  
                                 pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);  
   
                 /* store frame into bframe buffer & swap ref back to current */  
                 SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);  
                 SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);  
   
                 pEnc->bframenum_tail++;  
   
                 goto repeat;  
   
1241      }      }
1242    
         if (xFrame->vop_flags & XVID_EXTRASTATS) {  
                 stats->sse_y =  
                         plane_sse( pEnc->sOriginal.y, pEnc->current->image.y,  
                                            pEnc->mbParam.edged_width, pEnc->mbParam.width,  
                                            pEnc->mbParam.height);  
   
                 stats->sse_u =  
                         plane_sse( pEnc->sOriginal.u, pEnc->current->image.u,  
                                            pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,  
                                            pEnc->mbParam.height/2);  
   
                 stats->sse_v =  
                         plane_sse( pEnc->sOriginal.v, pEnc->current->image.v,  
                                            pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,  
                                            pEnc->mbParam.height/2);  
         }  
1243    
1244          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1245           * okay, on next enc_encode call we must flush bframes           * on next enc_encode call we must flush bframes
1246           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1247    
1248  done_flush:  done_flush:
1249    
 #if 0  
         {  
                 char tmp[100];  
                 wsprintf(tmp,"\\frame%03i.pgm", pEnc->m_framenum);  
                 image_dump_yuvpgm(&pEnc->current->image, pEnc->mbParam.edged_width,  
                         pEnc->mbParam.width, pEnc->mbParam.height, tmp);  
         }  
 #endif  
   
         /* packed_mode: repeat */  
1250          pEnc->flush_bframes = 1;          pEnc->flush_bframes = 1;
1251          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0) {  
1252            /* packed & queued_bframes: dont bother outputting stats, we do so after the flush */
1253            if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1254                  goto repeat;                  goto repeat;
1255          }          }
1256    
1257          if ((pEnc->mbParam.global_flags & XVID_PACKED) || pEnc->mbParam.max_bframes == 0)      /* packed or no-bframes: output stats */
1258          {      if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) || pEnc->mbParam.max_bframes == 0) {
1259                  /* packed(and low_delay) encoding gives us graceful reorded-stats output */          call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
                 set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->current);  
         emms();  
         call_plugins(pEnc, pEnc->current, XVID_PLG_AFTER, 0, 0);  
         emms();  
         }  
         else  
         {  
                 /* outherwise, output the previous frame */  
                 /* XXX: for this to work, refernce must be valid for IVOPs too */  
         if (pEnc->current->stamp > 0) {  
                         set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->reference);  
             emms();  
             call_plugins(pEnc, pEnc->current, XVID_PLG_AFTER, 0, 0);  
             emms();  
         }  
                 else  
                         stats->type = XVID_TYPE_NOTHING;  
1260          }          }
1261    
1262          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 1233  Line 1273 
1273  }  }
1274    
1275    
1276    static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)
1277    {
1278        unsigned int i,j;
1279        int quant = frame->quant;
1280    
1281        for (j=0; j<pParam->mb_height; j++)
1282        for (i=0; i<pParam->mb_width; i++) {
1283            MACROBLOCK * pMB = &frame->mbs[j*pParam->mb_width + i];
1284            quant += pMB->dquant;
1285            if (quant > 31)
1286                            quant = 31;
1287                    if (quant < 1)
1288                            quant = 1;
1289            pMB->quant = quant;
1290        }
1291    }
1292    
1293    
1294  static __inline void  static __inline void
1295  CodeIntraMB(Encoder * pEnc,  CodeIntraMB(Encoder * pEnc,
1296                          MACROBLOCK * pMB)                          MACROBLOCK * pMB)
# Line 1246  Line 1304 
1304          pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;          pMB->sad8[0] = pMB->sad8[1] = pMB->sad8[2] = pMB->sad8[3] = 0;
1305          pMB->sad16 = 0;          pMB->sad16 = 0;
1306    
1307          if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {          if (pMB->dquant != 0) {
                 if (pMB->dquant != NO_CHANGE) {  
1308                          pMB->mode = MODE_INTRA_Q;                          pMB->mode = MODE_INTRA_Q;
                         pEnc->current->quant += DQtab[pMB->dquant];  
   
                         if (pEnc->current->quant > 31)  
                                 pEnc->current->quant = 31;  
                         if (pEnc->current->quant < 1)  
                                 pEnc->current->quant = 1;  
                 }  
1309          }          }
   
         pMB->quant = pEnc->current->quant;  
1310  }  }
1311    
1312    
# Line 1276  Line 1324 
1324    
1325          uint16_t x, y;          uint16_t x, y;
1326    
1327          if ((pEnc->current->vol_flags & XVID_REDUCED_ENABLE))          if ((pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1328          {          {
1329                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pEnc->mbParam.width + 31) / 32;
1330                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pEnc->mbParam.height + 31) / 32;
# Line 1290  Line 1338 
1338                  stop_edges_timer();                  stop_edges_timer();
1339          }          }
1340    
         //pEnc->iFrameNum = 0;  
1341          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1342          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
         //pEnc->current->quarterpel =  pEnc->mbParam.m_quarterpel;  
1343          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1344    
1345        SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1346    
1347          BitstreamWriteVolHeader(bs, &pEnc->mbParam);          BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1348    
1349          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
# Line 1322  Line 1370 
1370                          stop_prediction_timer();                          stop_prediction_timer();
1371    
1372                          start_timer();                          start_timer();
1373                          if (pEnc->current->vop_flags & XVID_GREYSCALE)                          if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)
1374                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1375                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */                                  qcoeff[4*64+0]=0;               /* zero, because for INTRA MBs DC value is saved */
1376                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
# Line 1331  Line 1379 
1379                          stop_coding_timer();                          stop_coding_timer();
1380                  }                  }
1381    
1382          if ((pEnc->current->vop_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1383          {          {
1384                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1385                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
# Line 1339  Line 1387 
1387          }          }
1388          emms();          emms();
1389    
1390    /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1391    #if 0
1392          /* for divx5 compatibility, we must always pad between the packed p and b frames */          /* for divx5 compatibility, we must always pad between the packed p and b frames */
1393          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0)          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1394    #endif
1395                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1396    #if 0
1397          else          else
1398                  BitstreamPad(bs);                  BitstreamPad(bs);
1399    #endif
1400      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1401    
1402          pEnc->fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
# Line 1386  Line 1439 
1439          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1440          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1441    
1442          if ((pEnc->current->vop_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1443          {          {
1444                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pEnc->mbParam.width + 31) / 32;
1445                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pEnc->mbParam.height + 31) / 32;
# Line 1408  Line 1461 
1461          else          else
1462                  iLimit = mb_width * mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1463    
1464          if ((pEnc->current->vop_flags & XVID_HALFPEL)) {          if ((pEnc->current->vop_flags & XVID_VOP_HALFPEL)) {
1465                  start_timer();                  start_timer();
1466                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1467                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1468                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1469                                                    (pEnc->mbParam.vol_flags & XVID_QUARTERPEL),                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL),
1470                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1471                  stop_inter_timer();                  stop_inter_timer();
1472          }          }
1473    
1474          pEnc->current->coding_type = P_VOP;          pEnc->current->coding_type = P_VOP;
1475    
1476    
1477        SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1478    
1479          start_timer();          start_timer();
1480          /*if (pEnc->current->global_flags & XVID_HINTEDME_SET)          /*if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1481                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
# Line 1433  Line 1489 
1489    
1490          if (bIntra == 1) return FrameCodeI(pEnc, bs);          if (bIntra == 1) return FrameCodeI(pEnc, bs);
1491    
1492          if ( ( pEnc->current->vol_flags & XVID_GMC )          if ( ( pEnc->current->vol_flags & XVID_VOL_GMC )
1493                  && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )                  && ( (pEnc->current->warp.duv[1].x != 0) || (pEnc->current->warp.duv[1].y != 0) ) )
1494          {          {
1495                  pEnc->current->coding_type = S_VOP;                  pEnc->current->coding_type = S_VOP;
# Line 1445  Line 1501 
1501                  generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,                  generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,
1502                                  pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,                                  pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,
1503                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,
1504                                  pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0,                                  pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0,
1505                                  pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);                                  pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);
1506    
1507          }          }
# Line 1494  Line 1550 
1550                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1551                                          pEnc->mbParam.edged_width, 65536);                                          pEnc->mbParam.edged_width, 65536);
1552    
1553                                  if (pEnc->current->motion_flags & PMV_CHROMA16) {                                  if (pEnc->current->motion_flags & XVID_ME_CHROMA16) {
1554                                          iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,                                          iSAD += sad8(pEnc->current->image.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x,
1555                                          pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);                                          pEnc->vGMC.u + 8*y*(pEnc->mbParam.edged_width/2) + 8*x, pEnc->mbParam.edged_width/2);
1556    
# Line 1504  Line 1560 
1560    
1561                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1562    
1563                                          if ((pEnc->mbParam.vol_flags & XVID_QUARTERPEL))                                          if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1564                                                  pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;                                                  pMB->qmvs[0] = pMB->qmvs[1] = pMB->qmvs[2] = pMB->qmvs[3] = pMB->amv;
1565                                          else                                          else
1566                                                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;                                                  pMB->mvs[0] = pMB->mvs[1] = pMB->mvs[2] = pMB->mvs[3] = pMB->amv;
# Line 1527  Line 1583 
1583                                                                   dct_codes, pEnc->mbParam.width,                                                                   dct_codes, pEnc->mbParam.width,
1584                                                                   pEnc->mbParam.height,                                                                   pEnc->mbParam.height,
1585                                                                   pEnc->mbParam.edged_width,                                                                   pEnc->mbParam.edged_width,
1586                                                                   (pEnc->current->vol_flags & XVID_QUARTERPEL),                                                                   (pEnc->current->vol_flags & XVID_VOL_QUARTERPEL),
1587                                                                   (pEnc->current->vop_flags & XVID_REDUCED),                                                                   (pEnc->current->vop_flags & XVID_VOP_REDUCED),
1588                                                                   pEnc->current->rounding_type);                                                                   pEnc->current->rounding_type);
1589    
1590                          stop_comp_timer();                          stop_comp_timer();
1591    
1592                          if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {                          if (pMB->dquant != 0) {
                                 if (pMB->dquant != NO_CHANGE) {  
1593                                          pMB->mode = MODE_INTER_Q;                                          pMB->mode = MODE_INTER_Q;
                                         pEnc->current->quant += DQtab[pMB->dquant];  
                                         if (pEnc->current->quant > 31)  
                                                 pEnc->current->quant = 31;  
                                         else if (pEnc->current->quant < 1)  
                                                 pEnc->current->quant = 1;  
1594                                  }                                  }
                         }  
                         pMB->quant = pEnc->current->quant;  
1595    
1596                          pMB->field_pred = 0;                          pMB->field_pred = 0;
1597    
# Line 1566  Line 1614 
1614                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1615    
1616                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1617                                                          (pMB->dquant == NO_CHANGE);                                                          (pMB->dquant == 0);
1618    
1619                          if (pEnc->current->coding_type == S_VOP)                          if (pEnc->current->coding_type == S_VOP)
1620                                  skip_possible &= (pMB->mcsel == 1);                                  skip_possible &= (pMB->mcsel == 1);
1621                          else if (pEnc->current->coding_type == P_VOP) {                          else if (pEnc->current->coding_type == P_VOP) {
1622                                  if ((pEnc->mbParam.vol_flags & XVID_QUARTERPEL))                                  if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1623                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1624                                  else                                  else
1625                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );                                          skip_possible &= ( (pMB->mvs[0].x == 0) && (pMB->mvs[0].y == 0) );
# Line 1598  Line 1646 
1646                                          }                                          }
1647    
1648                                          if (!bSkip) {   /* no SKIP, but trivial block */                                          if (!bSkip) {   /* no SKIP, but trivial block */
1649                                                  if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {                                                  if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1650                                                          VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                                          VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1651                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1652                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
# Line 1625  Line 1673 
1673                          }                          }
1674                          /* ordinary case: normal coded INTER/INTER4V block */                          /* ordinary case: normal coded INTER/INTER4V block */
1675    
1676                          if ((pEnc->current->vop_flags & XVID_GREYSCALE))                          if ((pEnc->current->vop_flags & XVID_VOP_GREYSCALE))
1677                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1678                                  qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */                                  qcoeff[4*64+0]=0;               /* zero, because DC for INTRA MBs DC value is saved */
1679                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1680                          }                          }
1681    
1682                          if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1683                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, 0);
1684                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1685                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
# Line 1648  Line 1696 
1696                          {       int k;                          {       int k;
1697                                  for (k=1;k<4;k++)                                  for (k=1;k<4;k++)
1698                                  {                                  {
1699                                          if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {                                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1700                                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);                                                  VECTOR predMV = get_qpmv2(pEnc->current->mbs, pEnc->mbParam.mb_width, 0, x, y, k);
1701                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1702                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
# Line 1669  Line 1717 
1717                  }                  }
1718          }          }
1719    
1720          if ((pEnc->current->vop_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1721          {          {
1722                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1723                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
# Line 1691  Line 1739 
1739          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1740    
1741          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1742          && (pEnc->mbParam.m_fcode <= (3 +  (pEnc->mbParam.vol_flags & XVID_QUARTERPEL?1:0)  ))) /* maximum search range 128 */          && (pEnc->mbParam.m_fcode <= (3 +  (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0)  )))     /* maximum search range 128 */
1743          {          {
1744                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1745                  iSearchRange *= 2;                  iSearchRange *= 2;
1746          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1747                             && (pEnc->fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1748                             && (pEnc->fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1749                             && (pEnc->mbParam.m_fcode >= (2 + (pEnc->mbParam.vol_flags & XVID_QUARTERPEL?1:0) )))        /* minimum search range 16 */                             && (pEnc->mbParam.m_fcode >= (2 + (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL?1:0) )))    /* minimum search range 16 */
1750          {          {
1751                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1752                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 1745  Line 1793 
1793          }          }
1794          */          */
1795    
1796    /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1797    #if 0
1798          /* for divx5 compatibility, we must always pad between the packed p and b frames */          /* for divx5 compatibility, we must always pad between the packed p and b frames */
1799          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0)          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1800    #endif
1801                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1802    #if 0
1803          else          else
1804                  BitstreamPad(bs);                  BitstreamPad(bs);
1805    #endif
1806    
1807      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1808    
# Line 1777  Line 1830 
1830                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \                  fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \
1831          }          }
1832    
1833          /* XXX: pEnc->current->global_flags &= ~XVID_REDUCED;  reduced resoltion not yet supported */          /* XXX: pEnc->current->global_flags &= ~XVID_VOP_REDUCED;  reduced resoltion not yet supported */
1834    
1835          if (!first){          if (!first){
1836                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
# Line 1793  Line 1846 
1846          start_timer();          start_timer();
1847          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,          image_interpolate(f_ref, &pEnc->f_refh, &pEnc->f_refv, &pEnc->f_refhv,
1848                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1849                                            (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1850          stop_inter_timer();          stop_inter_timer();
1851    
1852          /* backward */          /* backward */
# Line 1803  Line 1856 
1856          start_timer();          start_timer();
1857          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1858                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1859                                            (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1860          stop_inter_timer();          stop_inter_timer();
1861    
1862          start_timer();          start_timer();
# Line 1840  Line 1893 
1893          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1894                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1895                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1896                          int direction = frame->vop_flags & XVID_ALTERNATESCAN ? 2 : 0;                          int direction = frame->vop_flags & XVID_VOP_ALTERNATESCAN ? 2 : 0;
1897    
1898                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */
1899                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
# Line 1848  Line 1901 
1901                                  continue;                                  continue;
1902                          }                          }
1903    
1904                          if (mb->mode != MODE_DIRECT_NONE_MV) {                          if (mb->mode != MODE_DIRECT_NONE_MV || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
1905                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1906                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1907                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
# Line 1858  Line 1911 
1911                                  if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;                                  if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1912                                  mb->quant = frame->quant;                                  mb->quant = frame->quant;
1913    
1914                                  mb->cbp =                                  if (mb->mode != MODE_DIRECT_NONE_MV)
1915                                          MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);                                          mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);
1916    
1917                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1918                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
# Line 1881  Line 1934 
1934    
1935          /* TODO: dynamic fcode/bcode ??? */          /* TODO: dynamic fcode/bcode ??? */
1936    
1937      BitstreamPad(bs);      BitstreamPadAlways(bs);
1938          frame->length = (BitstreamPos(bs) - bits) / 8;          frame->length = (BitstreamPos(bs) - bits) / 8;
1939    
1940  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG

Legend:
Removed from v.919  
changed lines
  Added in v.1029

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