[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 890, Sat Feb 22 08:49:45 2003 UTC revision 999, Sun Apr 27 21:18:49 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.1 2003-02-22 08:49:44 suxen_drol Exp $   *  $Id: encoder.c,v 1.95.2.19 2003-04-27 21:18:49 edgomez 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 167  Line 148 
148      /* framerate */      /* framerate */
149      pEnc->mbParam.fincr = MAX(create->fincr, 0);      pEnc->mbParam.fincr = MAX(create->fincr, 0);
150          pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;          pEnc->mbParam.fbase = create->fincr <= 0 ? 25 : create->fbase;
151        if (pEnc->mbParam.fincr>0)
152          simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);          simplify_time(&pEnc->mbParam.fincr, &pEnc->mbParam.fbase);
153    
154        /* plugins */
155        if(create->num_plugins > 0) {
156                    pEnc->num_plugins = create->num_plugins;
157                    pEnc->plugins = xvid_malloc(sizeof(xvid_enc_plugin_t) * pEnc->num_plugins, CACHE_LINE);
158                    if (pEnc->plugins == NULL)
159                            goto xvid_err_memory0;
160            } else {
161                    pEnc->num_plugins = 0;
162                    pEnc->plugins = NULL;
163            }
164    
165        for (n=0; n<pEnc->num_plugins;n++) {
166            xvid_plg_create_t pcreate;
167            xvid_plg_info_t pinfo;
168    
169            memset(&pinfo, 0, sizeof(xvid_plg_info_t));
170            pinfo.version = XVID_VERSION;
171            if (create->plugins[n].func(0, XVID_PLG_INFO, &pinfo, 0) >= 0) {
172                pEnc->mbParam.plugin_flags |= pinfo.flags;
173            }
174    
175            memset(&pcreate, 0, sizeof(xvid_plg_create_t));
176            pcreate.version = XVID_VERSION;
177            pcreate.width = pEnc->mbParam.width;
178            pcreate.height = pEnc->mbParam.height;
179            pcreate.fincr = pEnc->mbParam.fincr;
180            pcreate.fbase = pEnc->mbParam.fbase;
181            pcreate.param = create->plugins[n].param;
182    
183            pEnc->plugins[n].func = NULL;   /* disable plugins that fail */
184            if (create->plugins[n].func(0, XVID_PLG_CREATE, &pcreate, &pEnc->plugins[n].param) >= 0) {
185                pEnc->plugins[n].func = create->plugins[n].func;
186            }
187        }
188    
189        if ((pEnc->mbParam.global_flags & XVID_GLOBAL_EXTRASTATS_ENABLE) ||
190            (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
191            pEnc->mbParam.plugin_flags |= XVID_REQORIGINAL; /* psnr calculation requires the original */
192        }
193    
194        /* temp dquants */
195        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
196                pEnc->temp_dquants = (int *) xvid_malloc(pEnc->mbParam.mb_width *
197                                                pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);
198        }
199        /* XXX: error checking */
200    
201          /* bframes */          /* bframes */
202          pEnc->mbParam.max_bframes = MAX(create->max_bframes, 0);          pEnc->mbParam.max_bframes = MAX(create->max_bframes, 0);
203          pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);          pEnc->mbParam.bquant_ratio = MAX(create->bquant_ratio, 0);
# Line 178  Line 207 
207          pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);          pEnc->mbParam.frame_drop_ratio = MAX(create->frame_drop_ratio, 0);
208    
209      /* max keyframe interval */      /* max keyframe interval */
210      pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <=0 ? 250 : create->max_key_interval;      pEnc->mbParam.iMaxKeyInterval = create->max_key_interval <= 0 ?
211      /*XXX: replace 250 hard code with "10seconds * framerate" */                  10 * pEnc->mbParam.fbase / pEnc->mbParam.fincr : create->max_key_interval;
212    
213          /* Bitrate allocator defaults          /* Bitrate allocator defaults
214    
         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;  
   
   
   
215          if ((create->min_quantizer <= 0) || (create->min_quantizer > 31))          if ((create->min_quantizer <= 0) || (create->min_quantizer > 31))
216                  create->min_quantizer = 1;                  create->min_quantizer = 1;
217    
# Line 204  Line 219 
219                  create->max_quantizer = 31;                  create->max_quantizer = 31;
220    
221          if (create->max_quantizer < create->min_quantizer)          if (create->max_quantizer < create->min_quantizer)
222                  create->max_quantizer = create->min_quantizer;                  create->max_quantizer = create->min_quantizer; */
   
         pEnc->bitrate = create->rc_bitrate; */  
223    
224    
225      /* allocate working frame-image memory */      /* allocate working frame-image memory */
# Line 231  Line 244 
244    
245          /* allocate interpolation image memory */          /* allocate interpolation image memory */
246    
247          if (create->global & XVID_EXTRASTATS_ENABLE)      if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
248                  image_null(&pEnc->sOriginal);                  image_null(&pEnc->sOriginal);
249            image_null(&pEnc->sOriginal2);
250        }
251    
252          image_null(&pEnc->f_refh);          image_null(&pEnc->f_refh);
253          image_null(&pEnc->f_refv);          image_null(&pEnc->f_refv);
# Line 246  Line 261 
261          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
262          image_null(&pEnc->vInterHVf);          image_null(&pEnc->vInterHVf);
263    
264          if (create->global & XVID_EXTRASTATS_ENABLE)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
265          {       if (image_create          if (image_create
266                          (&pEnc->sOriginal, pEnc->mbParam.edged_width,                          (&pEnc->sOriginal, pEnc->mbParam.edged_width,
267                           pEnc->mbParam.edged_height) < 0)                           pEnc->mbParam.edged_height) < 0)
268                          goto xvid_err_memory3;                          goto xvid_err_memory3;
269    
270            if (image_create
271                            (&pEnc->sOriginal2, pEnc->mbParam.edged_width,
272                             pEnc->mbParam.edged_height) < 0)
273                            goto xvid_err_memory3;
274          }          }
275    
276          if (image_create          if (image_create
# Line 385  Line 405 
405          pEnc->iFrameNum = 0;          pEnc->iFrameNum = 0;
406          pEnc->fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
407    
     /* 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);  
         } */  
   
408      create->handle = (void *) pEnc;      create->handle = (void *) pEnc;
409    
410          init_timer();          init_timer();
# Line 440  Line 451 
451    
452    xvid_err_memory3:    xvid_err_memory3:
453    
454          if (pEnc->mbParam.global_flags & XVID_EXTRASTATS_ENABLE)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
455          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,                  image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
456                                              pEnc->mbParam.edged_height);
457                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
458                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
459          }          }
460    
# Line 479  Line 492 
492    xvid_err_memory1:    xvid_err_memory1:
493          xvid_free(pEnc->current);          xvid_free(pEnc->current);
494          xvid_free(pEnc->reference);          xvid_free(pEnc->reference);
495    
496        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
497                xvid_free(pEnc->temp_dquants);
498        }
499    
500      xvid_err_memory0:
501        for (n=0; n<pEnc->num_plugins;n++) {
502            if (pEnc->plugins[n].func) {
503                pEnc->plugins[n].func(pEnc->plugins[n].param, XVID_PLG_DESTROY, 0, 0);
504            }
505        }
506        xvid_free(pEnc->plugins);
507    
508          xvid_free(pEnc);          xvid_free(pEnc);
509    
510          create->handle = NULL;          create->handle = NULL;
# Line 557  Line 583 
583          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refhv, pEnc->mbParam.edged_width,
584                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
585    
586          if (pEnc->mbParam.global_flags & XVID_EXTRASTATS_ENABLE)          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
587          {       image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,                  image_destroy(&pEnc->sOriginal, pEnc->mbParam.edged_width,
588                                              pEnc->mbParam.edged_height);
589                    image_destroy(&pEnc->sOriginal2, pEnc->mbParam.edged_width,
590                                            pEnc->mbParam.edged_height);                                            pEnc->mbParam.edged_height);
591          }          }
592    
# Line 570  Line 598 
598          xvid_free(pEnc->reference->mbs);          xvid_free(pEnc->reference->mbs);
599          xvid_free(pEnc->reference);          xvid_free(pEnc->reference);
600    
601        if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
602            xvid_free(pEnc->temp_dquants);
603        }
604    
605    
606        if (pEnc->num_plugins>0) {
607            xvid_plg_destroy_t pdestroy;
608            memset(&pdestroy, 0, sizeof(xvid_plg_destroy_t));
609    
610            pdestroy.version = XVID_VERSION;
611            pdestroy.num_frames = pEnc->m_framenum;
612    
613            for (i=0; i<pEnc->num_plugins;i++) {
614                if (pEnc->plugins[i].func) {
615                    pEnc->plugins[i].func(pEnc->plugins[i].param, XVID_PLG_DESTROY, &pdestroy, 0);
616                }
617            }
618            xvid_free(pEnc->plugins);
619        }
620    
621          xvid_free(pEnc);          xvid_free(pEnc);
622    
623          return 0;  /* ok */          return 0;  /* ok */
624  }  }
625    
626    
627    /*
628      call the plugins
629      */
630    
631    static void call_plugins(Encoder * pEnc, FRAMEINFO * frame, IMAGE * original,
632                             int opt, int * type, int * quant, xvid_enc_stats_t * stats)
633    {
634        unsigned int i, j;
635        xvid_plg_data_t data;
636    
637        /* set data struct */
638    
639        memset(&data, 0, sizeof(xvid_plg_data_t));
640        data.version = XVID_VERSION;
641    
642        data.width = pEnc->mbParam.width;
643        data.height = pEnc->mbParam.height;
644        data.mb_width = pEnc->mbParam.mb_width;
645        data.mb_height = pEnc->mbParam.mb_height;
646        data.fincr = frame->fincr;
647        data.fbase = pEnc->mbParam.fbase;
648    
649        data.reference.csp = XVID_CSP_USER;
650        data.reference.plane[0] = pEnc->reference->image.y;
651        data.reference.plane[1] = pEnc->reference->image.u;
652        data.reference.plane[2] = pEnc->reference->image.v;
653        data.reference.stride[0] = pEnc->mbParam.edged_width;
654        data.reference.stride[1] = pEnc->mbParam.edged_width/2;
655        data.reference.stride[2] = pEnc->mbParam.edged_width/2;
656    
657        data.current.csp = XVID_CSP_USER;
658        data.current.plane[0] = frame->image.y;
659        data.current.plane[1] = frame->image.u;
660        data.current.plane[2] = frame->image.v;
661        data.current.stride[0] = pEnc->mbParam.edged_width;
662        data.current.stride[1] = pEnc->mbParam.edged_width/2;
663        data.current.stride[2] = pEnc->mbParam.edged_width/2;
664    
665        data.frame_num = frame->frame_num;
666    
667        if (opt == XVID_PLG_BEFORE) {
668            data.type = XVID_TYPE_AUTO;
669            data.quant = 2;
670    
671                    if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
672                data.dquant = pEnc->temp_dquants;
673                data.dquant_stride = pEnc->mbParam.mb_width;
674                            memset(data.dquant, 0, data.mb_width*data.mb_height);
675            }
676    
677            /* todo: [vol,vop,motion]_flags*/
678    
679        } else { // XVID_PLG_AFTER
680            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
681                data.original.csp = XVID_CSP_USER;
682                data.original.plane[0] = original->y;
683                data.original.plane[1] = original->u;
684                data.original.plane[2] = original->v;
685                data.original.stride[0] = pEnc->mbParam.edged_width;
686                data.original.stride[1] = pEnc->mbParam.edged_width/2;
687                data.original.stride[2] = pEnc->mbParam.edged_width/2;
688            }
689    
690            if ((frame->vol_flags & XVID_VOL_EXTRASTATS) ||
691                (pEnc->mbParam.plugin_flags & XVID_REQPSNR)) {
692    
693                            data.sse_y =
694                                plane_sse( original->y, frame->image.y,
695                                                   pEnc->mbParam.edged_width, pEnc->mbParam.width,
696                                                   pEnc->mbParam.height);
697    
698                data.sse_u =
699                    plane_sse( original->u, frame->image.u,
700                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
701                                                   pEnc->mbParam.height/2);
702    
703                            data.sse_v =
704                    plane_sse( original->v, frame->image.v,
705                                               pEnc->mbParam.edged_width/2, pEnc->mbParam.width/2,
706                                                   pEnc->mbParam.height/2);
707            }
708    
709            data.type = coding2type(frame->coding_type);
710            data.quant = frame->quant;
711    
712            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
713                data.dquant = pEnc->temp_dquants;
714                data.dquant_stride = pEnc->mbParam.mb_width;
715    
716                for (j=0; j<pEnc->mbParam.mb_height; j++)
717                for (i=0; i<pEnc->mbParam.mb_width; i++) {
718                    data.dquant[j*data.dquant_stride + i] = frame->mbs[j*pEnc->mbParam.mb_width + i].dquant;;
719                }
720            }
721    
722            data.vol_flags = frame->vol_flags;
723            data.vop_flags = frame->vop_flags;
724            data.motion_flags = frame->motion_flags;
725    
726            data.length = frame->length;
727            data.kblks = frame->sStat.kblks;
728            data.mblks = frame->sStat.mblks;
729            data.ublks = frame->sStat.ublks;
730    
731            if (stats) {
732                    stats->type = coding2type(frame->coding_type);
733                    stats->quant = frame->quant;
734                    stats->vol_flags = frame->vol_flags;
735                    stats->vop_flags = frame->vop_flags;
736                    stats->length = frame->length;
737                    stats->hlength = frame->length - (frame->sStat.iTextBits / 8);
738                    stats->kblks = frame->sStat.kblks;
739                    stats->mblks = frame->sStat.mblks;
740                    stats->ublks = frame->sStat.ublks;
741                stats->sse_y = data.sse_y;
742                stats->sse_u = data.sse_u;
743                stats->sse_v = data.sse_v;
744            }
745        }
746    
747        /* call plugins */
748        for (i=0; i<pEnc->num_plugins;i++) {
749            emms();
750            if (pEnc->plugins[i].func) {
751                if (pEnc->plugins[i].func(pEnc->plugins[i].param, opt, &data, 0) < 0) {
752                    continue;
753                }
754            }
755        }
756        emms();
757    
758        /* copy modified values back into frame*/
759        if (opt == XVID_PLG_BEFORE) {
760            *type = data.type;
761            *quant = data.quant;
762    
763            if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
764                for (j=0; j<pEnc->mbParam.mb_height; j++)
765                for (i=0; i<pEnc->mbParam.mb_width; i++) {
766                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = data.dquant[j*data.mb_width + i];
767                }
768            }else{
769                for (j=0; j<pEnc->mbParam.mb_height; j++)
770                for (i=0; i<pEnc->mbParam.mb_width; i++) {
771                    frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;
772                }
773            }
774            /* todo: [vol,vop,motion]_flags*/
775        }
776    }
777    
778    
779    
780    
781  static __inline void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
782  {  {
783        pEnc->current->frame_num = pEnc->m_framenum;
784          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;  
785    
786        pEnc->mbParam.m_stamp += pEnc->current->fincr;
787      pEnc->m_framenum++; /* debug ticker */      pEnc->m_framenum++; /* debug ticker */
788  }  }
789    
790    static __inline void dec_frame_num(Encoder * pEnc)
791    {
792        pEnc->mbParam.m_stamp -= pEnc->mbParam.fincr;
793        pEnc->m_framenum--; /* debug ticker */
794    }
795    
796    
797    
798  static __inline void  static __inline void
# Line 606  Line 815 
815  }  }
816    
817    
 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 );  
 }  
   
   
818    
819  /*****************************************************************************  /*****************************************************************************
820   * IPB frame encoder entry point   * IPB frame encoder entry point
# Line 634  Line 822 
822   * Returned values :   * Returned values :
823   *    - >0               - output bytes   *    - >0               - output bytes
824   *    - 0                - no output   *    - 0                - no output
825     *    - XVID_ERR_VERSION - wrong version passed to core
826     *    - XVID_ERR_END     - End of stream reached before end of coding
827   *    - XVID_ERR_FORMAT  - the image subsystem reported the image had a wrong   *    - XVID_ERR_FORMAT  - the image subsystem reported the image had a wrong
828   *                        format   *                        format
829   ****************************************************************************/   ****************************************************************************/
830    
831    
 /* XXX: dx50bvop broken! something todo with queue */  
   
832  int  int
833  enc_encode(Encoder * pEnc,  enc_encode(Encoder * pEnc,
834                             xvid_enc_frame_t * xFrame,                             xvid_enc_frame_t * xFrame,
# Line 648  Line 836 
836  {  {
837          xvid_enc_frame_t * frame;          xvid_enc_frame_t * frame;
838          int type;          int type;
         uint16_t x, y;  
839          Bitstream bs;          Bitstream bs;
840    
841          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 672  Line 859 
859                  if (image_input                  if (image_input
860                          (&q->image, pEnc->mbParam.width, pEnc->mbParam.height,                          (&q->image, pEnc->mbParam.width, pEnc->mbParam.height,
861                          pEnc->mbParam.edged_width, (uint8_t**)xFrame->input.plane, xFrame->input.stride,                          pEnc->mbParam.edged_width, (uint8_t**)xFrame->input.plane, xFrame->input.stride,
862                          xFrame->input.csp, xFrame->vol_flags & XVID_INTERLACING))                          xFrame->input.csp, xFrame->vol_flags & XVID_VOL_INTERLACING))
863                  {                  {
864                          emms();                          emms();
865                          return XVID_ERR_FORMAT;                          return XVID_ERR_FORMAT;
866                  }                  }
867                  stop_conv_timer();                  stop_conv_timer();
868    
869                  if ((xFrame->vop_flags & XVID_CHROMAOPT)) {                  if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
870                          image_chroma_optimize(&q->image,                          image_chroma_optimize(&q->image,
871                                  pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);                                  pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
872                  }                  }
# Line 711  Line 898 
898    
899          if (pEnc->flush_bframes)          if (pEnc->flush_bframes)
900          {          {
901                  if (pEnc->bframenum_head < pEnc->bframenum_tail)                  if (pEnc->bframenum_head < pEnc->bframenum_tail) {
                 {  
902    
903                          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",
904                                          pEnc->bframenum_head, pEnc->bframenum_tail,                                          pEnc->bframenum_head, pEnc->bframenum_tail,
905                                          pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                          pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
906    
907                          FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);              if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
908                          set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->bframes[pEnc->bframenum_head]);                                  image_copy(&pEnc->sOriginal2, &pEnc->bframes[pEnc->bframenum_head]->image,
909                                                       pEnc->mbParam.edged_width, pEnc->mbParam.height);
910                            }
911    
912                            FrameCodeB(pEnc, pEnc->bframes[pEnc->bframenum_head], &bs);
913                call_plugins(pEnc, pEnc->bframes[pEnc->bframenum_head], &pEnc->sOriginal2, XVID_PLG_AFTER, 0, 0, stats);
914                          pEnc->bframenum_head++;                          pEnc->bframenum_head++;
915    
   
916                          goto done;                          goto done;
917                  }                  }
918    
                 /* flush complete: reset counters */  
   
                 pEnc->flush_bframes = 0;  
                 pEnc->bframenum_head = pEnc->bframenum_tail = 0;  
   
919                  /* write an empty marker to the bitstream.                  /* write an empty marker to the bitstream.
920    
921                     for divx5 decoder compatibility, this marker must consist                     for divx5 decoder compatibility, this marker must consist
# Line 739  Line 923 
923                     indentical to the future-referece frame.                     indentical to the future-referece frame.
924                  */                  */
925    
926                  if ((pEnc->mbParam.global_flags & XVID_PACKED)) {                  if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED && pEnc->bframenum_tail > 0)) {
927                          int tmp;                          int tmp;
928                          int bits;                          int bits;
929    
# Line 758  Line 942 
942    
943                          /* add the not-coded length to the reference frame size */                          /* add the not-coded length to the reference frame size */
944                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;                          pEnc->current->length += (BitstreamPos(&bs) - bits) / 8;
945                          set_stats(stats, &pEnc->rate_control, &pEnc->mbParam, pEnc->current);              call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
   
                         // xFrame->out_flags |= XVID_PACKED_FIXUP?;  
946    
947                /* flush complete: reset counters */
948                    pEnc->flush_bframes = 0;
949                        pEnc->bframenum_head = pEnc->bframenum_tail = 0;
950                          goto done;                          goto done;
951    
952                  }                  }
         }  
953    
954            /* flush complete: reset counters */
955                    pEnc->flush_bframes = 0;
956                    pEnc->bframenum_head = pEnc->bframenum_tail = 0;
957            }
958    
959          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
960           * dequeue frame from the encoding queue           * dequeue frame from the encoding queue
# Line 776  Line 964 
964          {          {
965                  if (xFrame->input.csp == XVID_CSP_NULL) /* no futher input */                  if (xFrame->input.csp == XVID_CSP_NULL) /* no futher input */
966                  {                  {
967                          if (pEnc->bframenum_tail > 0)   /* are bframes */  
968                if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->mbParam.max_bframes > 0) {
969                    call_plugins(pEnc, pEnc->current, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
970                }
971    
972                /* if the very last frame is to be b-vop, we must change it to a p-vop */
973                if (pEnc->bframenum_tail > 0)
974                          {                          {
975    
976                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
977                                  pEnc->bframenum_tail--;                                  pEnc->bframenum_tail--;
978                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
979    
980                                  /* XXX: convert B-VOP to P-VOP */                                  /* convert B-VOP to P-VOP */
981                                  pEnc->current->quant *= 2;                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
982    
983                    if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
984                                image_copy(&pEnc->sOriginal, &pEnc->current->image,
985                                       pEnc->mbParam.edged_width, pEnc->mbParam.height);
986                    }
987    
988                                  FrameCodeP(pEnc, &bs, 1, 0);                                  FrameCodeP(pEnc, &bs, 1, 0);
989    
990                                  goto done_flush;                                  goto done_flush;
991                          }                          }
992    
# Line 806  Line 1007 
1007    
1008    
1009          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1010           * init pEnc->current field           * init pEnc->current fields
1011           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1012    
1013          emms();         /* float-point region */      pEnc->current->fincr = pEnc->mbParam.fincr>0 ? pEnc->mbParam.fincr : frame->fincr;
1014        inc_frame_num(pEnc);
1015      pEnc->current->vol_flags = pEnc->mbParam.vol_flags;      pEnc->current->vol_flags = pEnc->mbParam.vol_flags;
1016      pEnc->current->vop_flags = frame->vop_flags;      pEnc->current->vop_flags = frame->vop_flags;
1017          pEnc->current->motion_flags = frame->motion;          pEnc->current->motion_flags = frame->motion;
1018          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
1019          pEnc->current->bcode = pEnc->mbParam.m_fcode;          pEnc->current->bcode = pEnc->mbParam.m_fcode;
1020    
1021      if ((xFrame->vop_flags & XVID_CHROMAOPT)) {  
1022        if ((xFrame->vop_flags & XVID_VOP_CHROMAOPT)) {
1023              image_chroma_optimize(&pEnc->current->image,              image_chroma_optimize(&pEnc->current->image,
1024                      pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);                      pEnc->mbParam.width, pEnc->mbParam.height, pEnc->mbParam.edged_width);
1025      }      }
1026    
1027      if (xFrame->vop_flags & XVID_EXTRASTATS)          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1028      {   image_copy(&pEnc->sOriginal, &pEnc->current->image,           * frame type & quant selection
1029                         pEnc->mbParam.edged_width, pEnc->mbParam.height);           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
     }  
   
         if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {  
                 int *temp_dquants =     (int *) xvid_malloc(pEnc->mbParam.mb_width *  
                                         pEnc->mbParam.mb_height * sizeof(int), CACHE_LINE);  
   
                 pEnc->current->quant =  
                         adaptive_quantization(pEnc->current->image.y,  
                                                           pEnc->mbParam.edged_width, 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[temp_dquants[OFFSET(x, y)] + 2];  
                         }  
1030    
1031  #undef OFFSET      call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_BEFORE, &type, &pEnc->current->quant, stats);
                 }  
1032    
1033                  xvid_free(temp_dquants);      if (frame->type > 0)
1034          }                  type = frame->type;
1035    
1036          if (frame->quant > 0)          if (frame->quant > 0)
         {  
1037                  pEnc->current->quant = frame->quant;                  pEnc->current->quant = frame->quant;
                 type = frame->type;  
         }  
         else  
         {  
                 pEnc->current->quant = RateControlGetQ(&pEnc->rate_control, 0);  
                 type = XVID_TYPE_AUTO;  //RateControlGetType(&pEnc->rate_control, ...);  
         }  
   
         emms();         /* END floating-point region */  
   
1038    
1039          if (type > 0)   /* XVID_TYPE_?VOP */      if (type > 0){      /* XVID_TYPE_?VOP */
         {  
1040                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */                  type = type2coding(type);       /* convert XVID_TYPE_?VOP to bitstream coding type */
1041          }      } else{             /* XVID_TYPE_AUTO */
1042          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))  
                 {  
1043                          pEnc->iFrameNum = 0;                          pEnc->iFrameNum = 0;
1044                          type = I_VOP;                          type = I_VOP;
1045                  }else{                  }else{
1046                          type = MEanalysis(&pEnc->reference->image, pEnc->current,                          type = MEanalysis(&pEnc->reference->image, pEnc->current,
1047                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
1048                                          pEnc->iFrameNum, pEnc->bframenum_tail);                                          pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold);
1049    
1050                if (type == B_VOP && !(pEnc->current->vop_flags & XVID_VOP_DYNAMIC_BFRAMES)) {
1051                    type = P_VOP;   /* disable dynamic bframes */
1052                }
1053                  }                  }
1054          }          }
         inc_frame_num(pEnc);  
         pEnc->iFrameNum++;  
1055    
1056        /* bframes buffer overflow check */
1057        if (type != I_VOP) {
1058            if (pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
1059                type = P_VOP;
1060            }else{
1061                type = B_VOP;
1062            }
1063        }
1064    
1065          if ((pEnc->current->vop_flags & XVID_DEBUG)) {          pEnc->iFrameNum++;
1066    
1067            if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1068                  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,
1069                          "%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);
1070          }          }
1071    
1072          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1073           * ivop/pvop/bvop selection           * encode this frame as a b-vop
1074         * (we dont encode here, rather we store the frame in the bframes queue, to be encoded later)
1075           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1076            if (type == B_VOP) {
1077                    if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1078                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "BVOP");
1079                    }
1080    
1081          if (type == I_VOP) {                  if (frame->quant < 1) {
1082                            pEnc->current->quant = ((((pEnc->reference->quant + pEnc->current->quant) *
1083                                    pEnc->mbParam.bquant_ratio) / 2) + pEnc->mbParam.bquant_offset)/100;
1084    
1085                  DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",                  } else {
1086                            pEnc->current->quant = frame->quant;
1087                    }
1088    
1089                    if (pEnc->current->quant < 1)
1090                            pEnc->current->quant = 1;
1091                    else if (pEnc->current->quant > 31)
1092                pEnc->current->quant = 31;
1093    
1094                    DPRINTF(DPRINTF_DEBUG,"*** BFRAME (store) bf: head=%i tail=%i   queue: head=%i tail=%i size=%i  quant=%i",
1095                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1096                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size,pEnc->current->quant);
1097    
1098                  if ((pEnc->current->vop_flags & XVID_DEBUG)) {                  /* store frame into bframe buffer & swap ref back to current */
1099                          image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");                  SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1100                    SWAP(FRAMEINFO*, pEnc->current, pEnc->reference);
1101    
1102                    pEnc->bframenum_tail++;
1103    
1104                    goto repeat;
1105                  }                  }
1106    
1107                  // when we reach an iframe in CLOSED_GOP mode, encode the last bframe as a xFrame      /* for unpacked bframes, output the stats for the last encoded frame */
1108                  if ((pEnc->mbParam.global_flags & XVID_CLOSED_GOP) && pEnc->bframenum_tail > 0) {      if (!(pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1109        {
1110            if (pEnc->current->stamp > 0) {
1111                call_plugins(pEnc, pEnc->reference, &pEnc->sOriginal, XVID_PLG_AFTER, 0, 0, stats);
1112            }
1113                    else
1114                            stats->type = XVID_TYPE_NOTHING;
1115        }
1116    
1117            /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1118             * closed-gop
1119         * if the frame prior to an iframe is scheduled as a bframe, we must change it to a pframe
1120         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1121    
1122        if (type == I_VOP && (pEnc->mbParam.global_flags & XVID_GLOBAL_CLOSED_GOP) && pEnc->bframenum_tail > 0) {
1123    
1124                          // place this frame back on the encoding-queue (head)                          // place this frame back on the encoding-queue (head)
1125                          // we will deal with it next time                          // we will deal with it next time
1126            dec_frame_num(pEnc);
1127            pEnc->iFrameNum--;
1128    
1129                          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);
1130            pEnc->queue_size++;
1131                          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);                          image_swap(&pEnc->current->image, &pEnc->queue[pEnc->queue_head].image);
1132    
1133                          // grab the last frame from the bframe-queue                          // grab the last frame from the bframe-queue
# Line 922  Line 1135 
1135                          pEnc->bframenum_tail--;                          pEnc->bframenum_tail--;
1136                          SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);                          SWAP(FRAMEINFO*, pEnc->current, pEnc->bframes[pEnc->bframenum_tail]);
1137    
1138                          if ((pEnc->current->vop_flags & XVID_DEBUG)) {                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1139                                  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");
1140                          }                          }
1141    
1142                          /* XXX: convert B-VOP to P-VOP */                  /* convert B-VOP quant to P-VOP */
1143                          pEnc->current->quant *= 2;                  pEnc->current->quant = ((pEnc->current->quant*100) - pEnc->mbParam.bquant_offset) / pEnc->mbParam.bquant_ratio;
1144            type = P_VOP;
1145        }
1146    
                         FrameCodeP(pEnc, &bs, 1, 0);  
1147    
1148                  } else {          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1149             * encode this frame as an i-vop
1150         * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1151    
1152            if (type == I_VOP) {
1153    
1154                    DPRINTF(DPRINTF_DEBUG,"*** IFRAME bf: head=%i tail=%i   queue: head=%i tail=%i size=%i",
1155                                    pEnc->bframenum_head, pEnc->bframenum_tail,
1156                                    pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1157    
1158                    if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1159                            image_printf(&pEnc->current->image, pEnc->mbParam.edged_width, pEnc->mbParam.height, 5, 200, "IVOP");
1160                    }
1161    
1162    
1163                          /* ---- update vol flags at IVOP ----------- */                          /* ---- update vol flags at IVOP ----------- */
1164                          pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;                          pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
1165    
1166              if ((pEnc->mbParam.vol_flags & XVID_MPEGQUANT)) {          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {
1167                                  if (frame->quant_intra_matrix != NULL)                                  if (frame->quant_intra_matrix != NULL)
1168                                          set_intra_matrix(frame->quant_intra_matrix);                                          set_intra_matrix(frame->quant_intra_matrix);
1169                                  if (frame->quant_inter_matrix != NULL)                                  if (frame->quant_inter_matrix != NULL)
# Line 945  Line 1172 
1172    
1173              /* prevent vol/vop misuse */              /* prevent vol/vop misuse */
1174    
1175              if (!(pEnc->current->vol_flags & XVID_REDUCED_ENABLE))          if (!(pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1176                  pEnc->current->vop_flags &= ~XVID_REDUCED;              pEnc->current->vop_flags &= ~XVID_VOP_REDUCED;
1177    
1178              if (!(pEnc->current->vol_flags & XVID_INTERLACING))          if (!(pEnc->current->vol_flags & XVID_VOL_INTERLACING))
1179                  pEnc->current->vop_flags &= ~(XVID_TOPFIELDFIRST|XVID_ALTERNATESCAN);              pEnc->current->vop_flags &= ~(XVID_VOP_TOPFIELDFIRST|XVID_VOP_ALTERNATESCAN);
1180    
1181                          /* ^^^------------------------ */                          /* ^^^------------------------ */
1182    
1183            if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1184                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1185                               pEnc->mbParam.edged_width, pEnc->mbParam.height);
1186            }
1187    
1188                          FrameCodeI(pEnc, &bs);                          FrameCodeI(pEnc, &bs);
1189                          xFrame->out_flags |= XVID_KEYFRAME;                          xFrame->out_flags |= XVID_KEYFRAME;
                 }  
1190    
1191          } else if (((pEnc->current->vop_flags & XVID_DYNAMIC_BFRAMES) && type == P_VOP) ||          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1192                                  pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {           * encode this frame as an p-vop
1193                  /*       * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1194                   * This will be coded as a Predicted Frame  
1195                   */      } else { // (type == P_VOP || type == S_VOP)
1196    
1197                  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",
1198                                  pEnc->bframenum_head, pEnc->bframenum_tail,                                  pEnc->bframenum_head, pEnc->bframenum_tail,
1199                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);                                  pEnc->queue_head, pEnc->queue_tail, pEnc->queue_size);
1200    
1201                  if ((pEnc->current->vop_flags & XVID_DEBUG)) {                  if ((pEnc->current->vop_flags & XVID_VOP_DEBUG)) {
1202                          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");
1203                  }                  }
1204    
1205                  FrameCodeP(pEnc, &bs, 1, 0);          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
1206                        image_copy(&pEnc->sOriginal, &pEnc->current->image,
1207          } 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;  
1208                  }                  }
1209    
1210                  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;  
   
1211      }      }
1212    
         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);  
         }  
1213    
1214          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1215           * okay, on next enc_encode call we must flush bframes           * on next enc_encode call we must flush bframes
1216           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */           * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
1217    
1218  done_flush:  done_flush:
1219    
         {  
                 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);  
         }  
   
         /* packed_mode: repeat */  
1220          pEnc->flush_bframes = 1;          pEnc->flush_bframes = 1;
1221          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0) {  
1222            /* packed & queued_bframes: dont bother outputting stats, we do so after the flush */
1223            if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0) {
1224                  goto repeat;                  goto repeat;
1225          }          }
1226    
1227          if ((pEnc->mbParam.global_flags & XVID_PACKED) || pEnc->mbParam.max_bframes == 0)      /* packed or no-bframes: output stats */
1228          {      if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) || pEnc->mbParam.max_bframes == 0) {
1229                  /* 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);  
         }  
         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);  
                 else  
                         stats->type = XVID_TYPE_NOTHING;  
1230          }          }
1231    
1232          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%          /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Line 1071  Line 1243 
1243  }  }
1244    
1245    
1246    static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)
1247    {
1248        unsigned int i,j;
1249        int quant = frame->quant;
1250    
1251        for (j=0; j<pParam->mb_height; j++)
1252        for (i=0; i<pParam->mb_width; i++) {
1253            MACROBLOCK * pMB = &frame->mbs[j*pParam->mb_width + i];
1254            quant += pMB->dquant;
1255            if (quant > 31)
1256                            quant = 31;
1257                    if (quant < 1)
1258                            quant = 1;
1259            pMB->quant = quant;
1260        }
1261    }
1262    
1263    
1264  static __inline void  static __inline void
1265  CodeIntraMB(Encoder * pEnc,  CodeIntraMB(Encoder * pEnc,
1266                          MACROBLOCK * pMB)                          MACROBLOCK * pMB)
# Line 1084  Line 1274 
1274          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;
1275          pMB->sad16 = 0;          pMB->sad16 = 0;
1276    
1277          if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {          if (pMB->dquant != 0) {
                 if (pMB->dquant != NO_CHANGE) {  
1278                          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;  
1279                  }                  }
1280          }          }
1281    
         pMB->quant = pEnc->current->quant;  
 }  
   
1282    
1283    
1284  static int  static int
# Line 1114  Line 1294 
1294    
1295          uint16_t x, y;          uint16_t x, y;
1296    
1297          if ((pEnc->current->vol_flags & XVID_REDUCED_ENABLE))          if ((pEnc->current->vol_flags & XVID_VOL_REDUCED_ENABLE))
1298          {          {
1299                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pEnc->mbParam.width + 31) / 32;
1300                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pEnc->mbParam.height + 31) / 32;
# Line 1128  Line 1308 
1308                  stop_edges_timer();                  stop_edges_timer();
1309          }          }
1310    
         //pEnc->iFrameNum = 0;  
1311          pEnc->mbParam.m_rounding_type = 1;          pEnc->mbParam.m_rounding_type = 1;
1312          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;  
1313          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1314    
1315        SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1316    
1317          BitstreamWriteVolHeader(bs, &pEnc->mbParam);          BitstreamWriteVolHeader(bs, &pEnc->mbParam);
1318    
1319          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
# Line 1160  Line 1340 
1340                          stop_prediction_timer();                          stop_prediction_timer();
1341    
1342                          start_timer();                          start_timer();
1343                          if (pEnc->current->vop_flags & XVID_GREYSCALE)                          if (pEnc->current->vop_flags & XVID_VOP_GREYSCALE)
1344                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1345                                  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 */
1346                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
# Line 1169  Line 1349 
1349                          stop_coding_timer();                          stop_coding_timer();
1350                  }                  }
1351    
1352          if ((pEnc->current->vop_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1353          {          {
1354                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1355                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
# Line 1177  Line 1357 
1357          }          }
1358          emms();          emms();
1359    
1360    /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1361    #if 0
1362          /* 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 */
1363          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0)          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1364    #endif
1365                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1366    #if 0
1367          else          else
1368                  BitstreamPad(bs);                  BitstreamPad(bs);
1369    #endif
1370      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1371    
1372          pEnc->fMvPrevSigma = -1;          pEnc->fMvPrevSigma = -1;
# Line 1224  Line 1409 
1409          /* IMAGE *pCurrent = &pEnc->current->image; */          /* IMAGE *pCurrent = &pEnc->current->image; */
1410          IMAGE *pRef = &pEnc->reference->image;          IMAGE *pRef = &pEnc->reference->image;
1411    
1412          if ((pEnc->current->vop_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1413          {          {
1414                  mb_width = (pEnc->mbParam.width + 31) / 32;                  mb_width = (pEnc->mbParam.width + 31) / 32;
1415                  mb_height = (pEnc->mbParam.height + 31) / 32;                  mb_height = (pEnc->mbParam.height + 31) / 32;
# Line 1246  Line 1431 
1431          else          else
1432                  iLimit = mb_width * mb_height + 1;                  iLimit = mb_width * mb_height + 1;
1433    
1434          if ((pEnc->current->vop_flags & XVID_HALFPEL)) {          if ((pEnc->current->vop_flags & XVID_VOP_HALFPEL)) {
1435                  start_timer();                  start_timer();
1436                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,                  image_interpolate(pRef, &pEnc->vInterH, &pEnc->vInterV,
1437                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,                                                    &pEnc->vInterHV, pEnc->mbParam.edged_width,
1438                                                    pEnc->mbParam.edged_height,                                                    pEnc->mbParam.edged_height,
1439                                                    (pEnc->mbParam.vol_flags & XVID_QUARTERPEL),                                                    (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL),
1440                                                    pEnc->current->rounding_type);                                                    pEnc->current->rounding_type);
1441                  stop_inter_timer();                  stop_inter_timer();
1442          }          }
1443    
1444          pEnc->current->coding_type = P_VOP;          pEnc->current->coding_type = P_VOP;
1445    
1446    
1447        SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1448    
1449          start_timer();          start_timer();
1450          /*if (pEnc->current->global_flags & XVID_HINTEDME_SET)          /*if (pEnc->current->global_flags & XVID_HINTEDME_SET)
1451                  HintedMESet(pEnc, &bIntra);                  HintedMESet(pEnc, &bIntra);
# Line 1271  Line 1459 
1459    
1460          if (bIntra == 1) return FrameCodeI(pEnc, bs);          if (bIntra == 1) return FrameCodeI(pEnc, bs);
1461    
1462          if ( ( pEnc->current->vol_flags & XVID_GMC )          if ( ( pEnc->current->vol_flags & XVID_VOL_GMC )
1463                  && ( (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) ) )
1464          {          {
1465                  pEnc->current->coding_type = S_VOP;                  pEnc->current->coding_type = S_VOP;
# Line 1283  Line 1471 
1471                  generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,                  generate_GMCimage(&pEnc->current->gmc_data, &pEnc->reference->image,
1472                                  pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,                                  pEnc->mbParam.mb_width, pEnc->mbParam.mb_height,
1473                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,                                  pEnc->mbParam.edged_width, pEnc->mbParam.edged_width/2,
1474                                  pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0,                                  pEnc->mbParam.m_fcode, (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0,
1475                                  pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);                                  pEnc->current->rounding_type, pEnc->current->mbs, &pEnc->vGMC);
1476    
1477          }          }
# Line 1332  Line 1520 
1520                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,                                          pEnc->vGMC.y + 16*y*pEnc->mbParam.edged_width + 16*x,
1521                                          pEnc->mbParam.edged_width, 65536);                                          pEnc->mbParam.edged_width, 65536);
1522    
1523                                  if (pEnc->current->motion_flags & PMV_CHROMA16) {                                  if (pEnc->current->motion_flags & XVID_ME_CHROMA16) {
1524                                          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,
1525                                          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);
1526    
# Line 1342  Line 1530 
1530    
1531                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */                                  if (iSAD <= pMB->sad16) {               /* mode decision GMC */
1532    
1533                                          if ((pEnc->mbParam.vol_flags & XVID_QUARTERPEL))                                          if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1534                                                  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;
1535                                          else                                          else
1536                                                  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 1365  Line 1553 
1553                                                                   dct_codes, pEnc->mbParam.width,                                                                   dct_codes, pEnc->mbParam.width,
1554                                                                   pEnc->mbParam.height,                                                                   pEnc->mbParam.height,
1555                                                                   pEnc->mbParam.edged_width,                                                                   pEnc->mbParam.edged_width,
1556                                                                   (pEnc->current->vol_flags & XVID_QUARTERPEL),                                                                   (pEnc->current->vol_flags & XVID_VOL_QUARTERPEL),
1557                                                                   (pEnc->current->vop_flags & XVID_REDUCED),                                                                   (pEnc->current->vop_flags & XVID_VOP_REDUCED),
1558                                                                   pEnc->current->rounding_type);                                                                   pEnc->current->rounding_type);
1559    
1560                          stop_comp_timer();                          stop_comp_timer();
1561    
1562                          if ((pEnc->current->vop_flags & XVID_LUMIMASKING)) {                          if (pMB->dquant != 0) {
                                 if (pMB->dquant != NO_CHANGE) {  
1563                                          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;  
1564                                  }                                  }
                         }  
                         pMB->quant = pEnc->current->quant;  
1565    
1566                          pMB->field_pred = 0;                          pMB->field_pred = 0;
1567    
# Line 1404  Line 1584 
1584                          /* Finished processing the MB, now check if to CODE or SKIP */                          /* Finished processing the MB, now check if to CODE or SKIP */
1585    
1586                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&                          skip_possible = (pMB->cbp == 0) && (pMB->mode == MODE_INTER) &&
1587                                                          (pMB->dquant == NO_CHANGE);                                                          (pMB->dquant == 0);
1588    
1589                          if (pEnc->current->coding_type == S_VOP)                          if (pEnc->current->coding_type == S_VOP)
1590                                  skip_possible &= (pMB->mcsel == 1);                                  skip_possible &= (pMB->mcsel == 1);
1591                          else if (pEnc->current->coding_type == P_VOP) {                          else if (pEnc->current->coding_type == P_VOP) {
1592                                  if ((pEnc->mbParam.vol_flags & XVID_QUARTERPEL))                                  if ((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL))
1593                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );                                          skip_possible &= ( (pMB->qmvs[0].x == 0) && (pMB->qmvs[0].y == 0) );
1594                                  else                                  else
1595                                          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 1436  Line 1616 
1616                                          }                                          }
1617    
1618                                          if (!bSkip) {   /* no SKIP, but trivial block */                                          if (!bSkip) {   /* no SKIP, but trivial block */
1619                                                  if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {                                                  if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1620                                                          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);
1621                                                          pMB->pmvs[0].x = - predMV.x;                                                          pMB->pmvs[0].x = - predMV.x;
1622                                                          pMB->pmvs[0].y = - predMV.y;                                                          pMB->pmvs[0].y = - predMV.y;
# Line 1463  Line 1643 
1643                          }                          }
1644                          /* ordinary case: normal coded INTER/INTER4V block */                          /* ordinary case: normal coded INTER/INTER4V block */
1645    
1646                          if ((pEnc->current->vop_flags & XVID_GREYSCALE))                          if ((pEnc->current->vop_flags & XVID_VOP_GREYSCALE))
1647                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */                          {       pMB->cbp &= 0x3C;               /* keep only bits 5-2 */
1648                                  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 */
1649                                  qcoeff[5*64+0]=0;                                  qcoeff[5*64+0]=0;
1650                          }                          }
1651    
1652                          if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1653                                  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);
1654                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;                                  pMB->pmvs[0].x = pMB->qmvs[0].x - predMV.x;
1655                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;                                  pMB->pmvs[0].y = pMB->qmvs[0].y - predMV.y;
# Line 1486  Line 1666 
1666                          {       int k;                          {       int k;
1667                                  for (k=1;k<4;k++)                                  for (k=1;k<4;k++)
1668                                  {                                  {
1669                                          if((pEnc->mbParam.vol_flags & XVID_QUARTERPEL)) {                                          if((pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL)) {
1670                                                  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);
1671                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;                                                  pMB->pmvs[k].x = pMB->qmvs[k].x - predMV.x;
1672                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;                                                  pMB->pmvs[k].y = pMB->qmvs[k].y - predMV.y;
# Line 1507  Line 1687 
1687                  }                  }
1688          }          }
1689    
1690          if ((pEnc->current->vop_flags & XVID_REDUCED))          if ((pEnc->current->vop_flags & XVID_VOP_REDUCED))
1691          {          {
1692                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,                  image_deblock_rrv(&pEnc->current->image, pEnc->mbParam.edged_width,
1693                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,                          pEnc->current->mbs, mb_width, mb_height, pEnc->mbParam.mb_width,
# Line 1529  Line 1709 
1709          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);          iSearchRange = 1 << (3 + pEnc->mbParam.m_fcode);
1710    
1711          if ((fSigma > iSearchRange / 3)          if ((fSigma > iSearchRange / 3)
1712          && (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 */
1713          {          {
1714                  pEnc->mbParam.m_fcode++;                  pEnc->mbParam.m_fcode++;
1715                  iSearchRange *= 2;                  iSearchRange *= 2;
1716          } else if ((fSigma < iSearchRange / 6)          } else if ((fSigma < iSearchRange / 6)
1717                             && (pEnc->fMvPrevSigma >= 0)                             && (pEnc->fMvPrevSigma >= 0)
1718                             && (pEnc->fMvPrevSigma < iSearchRange / 6)                             && (pEnc->fMvPrevSigma < iSearchRange / 6)
1719                             && (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 */
1720          {          {
1721                  pEnc->mbParam.m_fcode--;                  pEnc->mbParam.m_fcode--;
1722                  iSearchRange /= 2;                  iSearchRange /= 2;
# Line 1583  Line 1763 
1763          }          }
1764          */          */
1765    
1766    /* XXX: Remove the two #if 0 blocks when we are sure we must always pad the stream */
1767    #if 0
1768          /* 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 */
1769          if ((pEnc->mbParam.global_flags & XVID_PACKED) && pEnc->bframenum_tail > 0)          if ((pEnc->mbParam.global_flags & XVID_GLOBAL_PACKED) && pEnc->bframenum_tail > 0)
1770    #endif
1771                  BitstreamPadAlways(bs);                  BitstreamPadAlways(bs);
1772    #if 0
1773          else          else
1774                  BitstreamPad(bs);                  BitstreamPad(bs);
1775    #endif
1776    
1777      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;      pEnc->current->length = (BitstreamPos(bs) - bits) / 8;
1778    
# Line 1615  Line 1800 
1800                  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); \
1801          }          }
1802    
1803          /* 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 */
1804    
1805          if (!first){          if (!first){
1806                  fp=fopen("C:\\XVIDDBGE.TXT","w");                  fp=fopen("C:\\XVIDDBGE.TXT","w");
# Line 1631  Line 1816 
1816          start_timer();          start_timer();
1817          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,
1818                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1819                                            (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1820          stop_inter_timer();          stop_inter_timer();
1821    
1822          /* backward */          /* backward */
# Line 1641  Line 1826 
1826          start_timer();          start_timer();
1827          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,          image_interpolate(b_ref, &pEnc->vInterH, &pEnc->vInterV, &pEnc->vInterHV,
1828                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,                                            pEnc->mbParam.edged_width, pEnc->mbParam.edged_height,
1829                                            (pEnc->mbParam.vol_flags & XVID_QUARTERPEL), 0);                                            (pEnc->mbParam.vol_flags & XVID_VOL_QUARTERPEL), 0);
1830          stop_inter_timer();          stop_inter_timer();
1831    
1832          start_timer();          start_timer();
# Line 1678  Line 1863 
1863          for (y = 0; y < pEnc->mbParam.mb_height; y++) {          for (y = 0; y < pEnc->mbParam.mb_height; y++) {
1864                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {                  for (x = 0; x < pEnc->mbParam.mb_width; x++) {
1865                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];                          MACROBLOCK * const mb = &frame->mbs[x + y * pEnc->mbParam.mb_width];
1866                          int direction = frame->vop_flags & XVID_ALTERNATESCAN ? 2 : 0;                          int direction = frame->vop_flags & XVID_VOP_ALTERNATESCAN ? 2 : 0;
1867    
1868                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */                          /* decoder ignores mb when refence block is INTER(0,0), CBP=0 */
1869                          if (mb->mode == MODE_NOT_CODED) {                          if (mb->mode == MODE_NOT_CODED) {
# Line 1686  Line 1871 
1871                                  continue;                                  continue;
1872                          }                          }
1873    
1874                          if (mb->mode != MODE_DIRECT_NONE_MV) {                          if (mb->mode != MODE_DIRECT_NONE_MV || pEnc->mbParam.plugin_flags & XVID_REQORIGINAL) {
1875                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,                                  MBMotionCompensationBVOP(&pEnc->mbParam, mb, x, y, &frame->image,
1876                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,                                                                           f_ref, &pEnc->f_refh, &pEnc->f_refv,
1877                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,                                                                           &pEnc->f_refhv, b_ref, &pEnc->vInterH,
# Line 1696  Line 1881 
1881                                  if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;                                  if (mb->mode == MODE_DIRECT_NO4V) mb->mode = MODE_DIRECT;
1882                                  mb->quant = frame->quant;                                  mb->quant = frame->quant;
1883    
1884                                  mb->cbp =                                  if (mb->mode != MODE_DIRECT_NONE_MV)
1885                                          MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, dct_codes, qcoeff);                                          mb->cbp = MBTransQuantInterBVOP(&pEnc->mbParam, frame, mb, x, y,  dct_codes, qcoeff);
1886    
1887                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)                                  if ( (mb->mode == MODE_DIRECT) && (mb->cbp == 0)
1888                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {                                          && (mb->pmvs[3].x == 0) && (mb->pmvs[3].y == 0) ) {
# Line 1719  Line 1904 
1904    
1905          /* TODO: dynamic fcode/bcode ??? */          /* TODO: dynamic fcode/bcode ??? */
1906    
1907      BitstreamPad(bs);      BitstreamPadAlways(bs);
1908          frame->length = (BitstreamPos(bs) - bits) / 8;          frame->length = (BitstreamPos(bs) - bits) / 8;
1909    
1910  #ifdef BFRAMES_DEC_DEBUG  #ifdef BFRAMES_DEC_DEBUG

Legend:
Removed from v.890  
changed lines
  Added in v.999

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