[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 1210, Sat Nov 15 14:43:38 2003 UTC revision 1259, Fri Dec 12 14:16:40 2003 UTC
# Line 21  Line 21 
21   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
22   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23   *   *
24   * $Id: encoder.c,v 1.95.2.51 2003-11-15 14:43:38 syskin Exp $   * $Id: encoder.c,v 1.95.2.58 2003-12-12 14:16:40 edgomez Exp $
25   *   *
26   ****************************************************************************/   ****************************************************************************/
27    
# Line 250  Line 250 
250          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)          if (pEnc->current->mbs == NULL || pEnc->reference->mbs == NULL)
251                  goto xvid_err_memory2;                  goto xvid_err_memory2;
252    
253            /* allocate quant matrix memory */
254    
255            pEnc->mbParam.mpeg_quant_matrices =
256                    xvid_malloc(sizeof(uint16_t) * 64 * 8, CACHE_LINE);
257    
258            if (pEnc->mbParam.mpeg_quant_matrices == NULL)
259                    goto xvid_err_memory2a;
260    
261          /* allocate interpolation image memory */          /* allocate interpolation image memory */
262    
263      if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {      if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
# Line 265  Line 273 
273          image_null(&pEnc->reference->image);          image_null(&pEnc->reference->image);
274          image_null(&pEnc->vInterH);          image_null(&pEnc->vInterH);
275          image_null(&pEnc->vInterV);          image_null(&pEnc->vInterV);
         image_null(&pEnc->vInterVf);  
276          image_null(&pEnc->vInterHV);          image_null(&pEnc->vInterHV);
         image_null(&pEnc->vInterHVf);  
277    
278          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
279          if (image_create          if (image_create
# Line 311  Line 317 
317                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
318                  goto xvid_err_memory3;                  goto xvid_err_memory3;
319          if (image_create          if (image_create
                 (&pEnc->vInterVf, pEnc->mbParam.edged_width,  
                  pEnc->mbParam.edged_height) < 0)  
                 goto xvid_err_memory3;  
         if (image_create  
320                  (&pEnc->vInterHV, pEnc->mbParam.edged_width,                  (&pEnc->vInterHV, pEnc->mbParam.edged_width,
321                   pEnc->mbParam.edged_height) < 0)                   pEnc->mbParam.edged_height) < 0)
322                  goto xvid_err_memory3;                  goto xvid_err_memory3;
         if (image_create  
                 (&pEnc->vInterHVf, pEnc->mbParam.edged_width,  
                  pEnc->mbParam.edged_height) < 0)  
                 goto xvid_err_memory3;  
323    
324  /* Create full bitplane for GMC, this might be wasteful */  /* Create full bitplane for GMC, this might be wasteful */
325          if (image_create          if (image_create
# Line 413  Line 411 
411      create->handle = (void *) pEnc;      create->handle = (void *) pEnc;
412    
413          init_timer();          init_timer();
414            init_mpeg_matrix(pEnc->mbParam.mpeg_quant_matrices);
415    
416      return 0;   /* ok */      return 0;   /* ok */
417    
# Line 472  Line 471 
471                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
472          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
473                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
474          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
475                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
476    
477  /* destroy GMC image */  /* destroy GMC image */
478          image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vGMC, pEnc->mbParam.edged_width,
479                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
480    
481      xvid_err_memory2a:
482            xvid_free(pEnc->mbParam.mpeg_quant_matrices);
483    
484    xvid_err_memory2:    xvid_err_memory2:
485          xvid_free(pEnc->current->mbs);          xvid_free(pEnc->current->mbs);
# Line 565  Line 562 
562                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
563          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterV, pEnc->mbParam.edged_width,
564                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
565          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,          image_destroy(&pEnc->vInterHV, pEnc->mbParam.edged_width,
566                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
         image_destroy(&pEnc->vInterHVf, pEnc->mbParam.edged_width,  
                                   pEnc->mbParam.edged_height);  
   
567          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refh, pEnc->mbParam.edged_width,
568                                    pEnc->mbParam.edged_height);                                    pEnc->mbParam.edged_height);
569          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,          image_destroy(&pEnc->f_refv, pEnc->mbParam.edged_width,
# Line 616  Line 608 
608          xvid_free(pEnc->plugins);          xvid_free(pEnc->plugins);
609      }      }
610    
611            xvid_free(pEnc->mbParam.mpeg_quant_matrices);
612    
613      if (pEnc->num_plugins>0)      if (pEnc->num_plugins>0)
614          xvid_free(pEnc->zones);          xvid_free(pEnc->zones);
615    
# Line 680  Line 674 
674          data.type = *type;          data.type = *type;
675          data.quant = *quant;          data.quant = *quant;
676    
677                    data.vol_flags = frame->vol_flags;
678                    data.vop_flags = frame->vop_flags;
679                    data.motion_flags = frame->motion_flags;
680    
681            } else if (opt == XVID_PLG_FRAME) {
682                    data.type = coding2type(frame->coding_type);
683                    data.quant = frame->quant;
684    
685                  if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {                  if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
686              data.dquant = pEnc->temp_dquants;              data.dquant = pEnc->temp_dquants;
687              data.dquant_stride = pEnc->mbParam.mb_width;              data.dquant_stride = pEnc->mbParam.mb_width;
688                          memset(data.dquant, 0, data.mb_width*data.mb_height);                          memset(data.dquant, 0, data.mb_width*data.mb_height);
689          }          }
690    
         data.vol_flags = frame->vol_flags;  
         data.vop_flags = frame->vop_flags;  
         data.motion_flags = frame->motion_flags;  
   
691      } else { /* XVID_PLG_AFTER */      } else { /* XVID_PLG_AFTER */
692          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {          if ((pEnc->mbParam.plugin_flags & XVID_REQORIGINAL)) {
693              data.original.csp = XVID_CSP_USER;              data.original.csp = XVID_CSP_USER;
# Line 774  Line 772 
772          *type = data.type;          *type = data.type;
773          *quant = data.quant > 0 ? data.quant : 2;   /* default */          *quant = data.quant > 0 ? data.quant : 2;   /* default */
774    
775                    frame->vol_flags = data.vol_flags;
776                    frame->vop_flags = data.vop_flags;
777                    frame->motion_flags = data.motion_flags;
778    
779            } else if (opt == XVID_PLG_FRAME) {
780    
781          if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {          if ((pEnc->mbParam.plugin_flags & XVID_REQDQUANTS)) {
782              for (j=0; j<pEnc->mbParam.mb_height; j++)              for (j=0; j<pEnc->mbParam.mb_height; j++)
783              for (i=0; i<pEnc->mbParam.mb_width; i++) {              for (i=0; i<pEnc->mbParam.mb_width; i++) {
# Line 785  Line 789 
789                  frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;                  frame->mbs[j*pEnc->mbParam.mb_width + i].dquant = 0;
790              }              }
791          }          }
792                    frame->mbs[0].quant = data.quant; /* FRAME will not affect the quant in stats */
         frame->vol_flags = data.vol_flags;  
         frame->vop_flags = data.vop_flags;  
         frame->motion_flags = data.motion_flags;  
     }  
793  }  }
794    
795    
796    }
797    
798    
799  static __inline void inc_frame_num(Encoder * pEnc)  static __inline void inc_frame_num(Encoder * pEnc)
# Line 810  Line 811 
811      pEnc->m_framenum--; /* debug ticker */      pEnc->m_framenum--; /* debug ticker */
812  }  }
813    
814    static __inline void
815    MBSetDquant(MACROBLOCK * pMB, int x, int y, MBParam * mbParam)
816    {
817            if (pMB->cbp == 0) {
818                    /* we want to code dquant but the quantizer value will not be used yet
819                            let's find out if we can postpone dquant to next MB
820                    */
821                    if (x == mbParam->mb_width-1 && y == mbParam->mb_height-1) {
822                            pMB->dquant = 0; /* it's the last MB of all, the easiest case */
823                            return;
824                    } else {
825                            MACROBLOCK * next = pMB + 1;
826                            const MACROBLOCK * prev = pMB - 1;
827                            if (next->mode != MODE_INTER4V && next->mode != MODE_NOT_CODED)
828                                    /* mode allows dquant change in the future */
829                                    if (abs(next->quant - prev->quant) <= 2) {
830                                            /* quant change is not out of range */
831                                            pMB->quant = prev->quant;
832                                            pMB->dquant = 0;
833                                            next->dquant = next->quant - prev->quant;
834                                            return;
835                                    }
836                    }
837            }
838            /* couldn't skip this dquant */
839            pMB->mode = MODE_INTER_Q;
840    }
841    
842    
843    
844  static __inline void  static __inline void
# Line 819  Line 848 
848      pCur->ticks = (int32_t)pCur->stamp % time_base;      pCur->ticks = (int32_t)pCur->stamp % time_base;
849                  pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;                  pCur->seconds =  ((int32_t)pCur->stamp / time_base)     - ((int32_t)pRef->stamp / time_base) ;
850    
851                  /* HEAVY DEBUG OUTPUT remove when timecodes prove to be stable */  #if 0   /* HEAVY DEBUG OUTPUT */
852            fprintf(stderr,"WriteVop:   %d - %d \n",
 /*              fprintf(stderr,"WriteVop:   %d - %d \n",  
853                          ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));                          ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
854                  fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",                  fprintf(stderr,"set_timecodes: VOP %1d   stamp=%lld ref_stamp=%lld  base=%d\n",
855                          pCur->coding_type, pCur->stamp, pRef->stamp, time_base);                          pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
856                  fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",                  fprintf(stderr,"set_timecodes: VOP %1d   seconds=%d   ticks=%d   (ref-sec=%d  ref-tick=%d)\n",
857                          pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);                          pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
858    #endif
859    }
860    
861  */  static int
862    gcd(int a, int b)
863    {
864            int r ;
865    
866            if (b > a) {
867                    r = a;
868                    a = b;
869                    b = r;
870            }
871    
872            while ((r = a % b)) {
873                    a = b;
874                    b = r;
875            }
876            return b;
877    }
878    
879    static void
880    simplify_par(int *par_width, int *par_height)
881    {
882    
883            int _par_width  = (!*par_width)  ? 1 : (*par_width<0)  ? -*par_width:  *par_width;
884            int _par_height = (!*par_height) ? 1 : (*par_height<0) ? -*par_height: *par_height;
885            int divisor = gcd(_par_width, _par_height);
886    
887            _par_width  /= divisor;
888            _par_height /= divisor;
889    
890            /* 2^8 precision maximum */
891            if (_par_width>255 || _par_height>255) {
892                    float div;
893                    emms();
894                    if (_par_width>_par_height)
895                            div = (float)_par_width/255;
896                    else
897                            div = (float)_par_height/255;
898    
899                    _par_width  = (int)((float)_par_width/div);
900                    _par_height = (int)((float)_par_height/div);
901  }  }
902    
903            *par_width = _par_width;
904            *par_height = _par_height;
905    
906            return;
907    }
908    
909    
910  /*****************************************************************************  /*****************************************************************************
# Line 953  Line 1027 
1027                          tmp = pEnc->current->seconds;                          tmp = pEnc->current->seconds;
1028                          pEnc->current->seconds = 0; /* force time_base = 0 */                          pEnc->current->seconds = 0; /* force time_base = 0 */
1029    
1030                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0);                          BitstreamWriteVopHeader(&bs, &pEnc->mbParam, pEnc->current, 0, pEnc->current->quant);
1031                          BitstreamPad(&bs);                          BitstreamPad(&bs);
1032                          pEnc->current->seconds = tmp;                          pEnc->current->seconds = tmp;
1033    
# Line 1075  Line 1149 
1149                  }else{                  }else{
1150                          type = MEanalysis(&pEnc->reference->image, pEnc->current,                          type = MEanalysis(&pEnc->reference->image, pEnc->current,
1151                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,                                          &pEnc->mbParam, pEnc->mbParam.iMaxKeyInterval,
1152                                          pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold);                                                            pEnc->iFrameNum, pEnc->bframenum_tail, xFrame->bframe_threshold,
1153                                                              (pEnc->bframes) ? pEnc->bframes[pEnc->bframenum_head]->mbs: NULL);
1154                  }                  }
1155          }          }
1156    
# Line 1192  Line 1267 
1267    
1268                  /* ---- update vol flags at IVOP ----------- */                  /* ---- update vol flags at IVOP ----------- */
1269                  pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;                  pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;
1270    
1271                    /* Aspect ratio */
1272                  switch(frame->par) {                  switch(frame->par) {
1273                  case XVID_PAR_11_VGA:                  case XVID_PAR_11_VGA:
1274                  case XVID_PAR_43_PAL:                  case XVID_PAR_43_PAL:
# Line 1202  Line 1279 
1279                          pEnc->mbParam.par = frame->par;                          pEnc->mbParam.par = frame->par;
1280                          break;                          break;
1281                  default:                  default:
1282                          pEnc->mbParam.par = XVID_PAR_EXT;                          pEnc->mbParam.par = XVID_PAR_11_VGA;
1283                          break;                          break;
1284                  }                  }
1285                  pEnc->mbParam.par_width = (frame->par_width)?frame->par_width:1;  
1286                  pEnc->mbParam.par_height = (frame->par_height)?frame->par_height:1;                  /* For extended PAR only, we try to sanityse/simplify par values */
1287                    if (pEnc->mbParam.par == XVID_PAR_EXT) {
1288                            pEnc->mbParam.par_width  = frame->par_width;
1289                            pEnc->mbParam.par_height = frame->par_height;
1290                            simplify_par(&pEnc->mbParam.par_width, &pEnc->mbParam.par_height);
1291                    }
1292    
1293          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {          if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {
1294                          if (frame->quant_intra_matrix != NULL)                          if (frame->quant_intra_matrix != NULL)
1295                                  set_intra_matrix(frame->quant_intra_matrix);                                  set_intra_matrix(pEnc->mbParam.mpeg_quant_matrices, frame->quant_intra_matrix);
1296                          if (frame->quant_inter_matrix != NULL)                          if (frame->quant_inter_matrix != NULL)
1297                                  set_inter_matrix(frame->quant_inter_matrix);                                  set_inter_matrix(pEnc->mbParam.mpeg_quant_matrices, frame->quant_inter_matrix);
1298                  }                  }
1299    
1300          /* prevent vol/vop misuse */          /* prevent vol/vop misuse */
# Line 1290  Line 1372 
1372    
1373  static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)  static void SetMacroblockQuants(MBParam * const pParam, FRAMEINFO * frame)
1374  {  {
1375      unsigned int i,j;          unsigned int i;
1376      int quant = frame->quant;          MACROBLOCK * pMB = frame->mbs;
1377            int quant = frame->mbs[0].quant; /* set by XVID_PLG_FRAME */
1378      if (quant > 31)      if (quant > 31)
1379                  frame->quant = quant = 31;                  frame->quant = quant = 31;
1380          else if (quant < 1)          else if (quant < 1)
1381                  frame->quant = quant = 1;                  frame->quant = quant = 1;
1382    
1383      for (j=0; j<pParam->mb_height; j++)          for (i = 0; i < pParam->mb_height * pParam->mb_width; i++) {
     for (i=0; i<pParam->mb_width; i++) {  
         MACROBLOCK * pMB = &frame->mbs[j*pParam->mb_width + i];  
1384          quant += pMB->dquant;          quant += pMB->dquant;
1385          if (quant > 31)          if (quant > 31)
1386                          quant = 31;                          quant = 31;
1387                  else if (quant < 1)                  else if (quant < 1)
1388                          quant = 1;                          quant = 1;
1389          pMB->quant = quant;          pMB->quant = quant;
1390                    pMB++;
1391      }      }
1392  }  }
1393    
# Line 1361  Line 1443 
1443          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;          pEnc->current->rounding_type = pEnc->mbParam.m_rounding_type;
1444          pEnc->current->coding_type = I_VOP;          pEnc->current->coding_type = I_VOP;
1445    
1446            call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
1447    
1448      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);      SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1449    
1450          BitstreamWriteVolHeader(bs, &pEnc->mbParam);          BitstreamWriteVolHeader(bs, &pEnc->mbParam);
# Line 1369  Line 1453 
1453    
1454          BitstreamPad(bs);          BitstreamPad(bs);
1455    
1456          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, pEnc->current, 1, pEnc->current->mbs[0].quant);
1457    
1458          pEnc->current->sStat.iTextBits = 0;          pEnc->current->sStat.iTextBits = 0;
1459          pEnc->current->sStat.kblks = mb_width * mb_height;          pEnc->current->sStat.kblks = mb_width * mb_height;
# Line 1491  Line 1575 
1575    
1576          current->coding_type = P_VOP;          current->coding_type = P_VOP;
1577    
1578            call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
1579    
1580      SetMacroblockQuants(&pEnc->mbParam, current);      SetMacroblockQuants(&pEnc->mbParam, current);
1581    
# Line 1561  Line 1646 
1646                  BitstreamPad(bs);                  BitstreamPad(bs);
1647          }          }
1648    
1649          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 1, current->mbs[0].quant);
1650    
1651          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =          current->sStat.iTextBits = current->sStat.iMvSum = current->sStat.iMvCount =
1652                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;                  current->sStat.kblks = current->sStat.mblks = current->sStat.ublks = 0;
# Line 1609  Line 1694 
1694    
1695                          stop_comp_timer();                          stop_comp_timer();
1696    
                         if (pMB->dquant != 0) {  
                 pMB->mode = MODE_INTER_Q;  
                         }  
   
1697                          pMB->field_pred = 0;                          pMB->field_pred = 0;
1698    
1699                          if (pMB->mode != MODE_NOT_CODED)                          if (pMB->mode != MODE_NOT_CODED)
# Line 1621  Line 1702 
1702                                                                            dct_codes, qcoeff);                                                                            dct_codes, qcoeff);
1703                          }                          }
1704    
1705                            if (pMB->dquant != 0)
1706                                    MBSetDquant(pMB, x, y, &pEnc->mbParam);
1707    
1708    
1709                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||                          if (pMB->cbp || pMB->mvs[0].x || pMB->mvs[0].y ||
1710                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||                                     pMB->mvs[1].x || pMB->mvs[1].y || pMB->mvs[2].x ||
1711                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {                                     pMB->mvs[2].y || pMB->mvs[3].x || pMB->mvs[3].y) {
# Line 1782  Line 1867 
1867                  BitstreamReset(bs);                  BitstreamReset(bs);
1868    
1869                  set_timecodes(current,reference,pParam->fbase);                  set_timecodes(current,reference,pParam->fbase);
1870                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 0);                  BitstreamWriteVopHeader(bs, &pEnc->mbParam, current, 0, current->mbs[0].quant);
1871    
1872                  /* copy reference frame details into the current frame */                  /* copy reference frame details into the current frame */
1873                  current->quant = reference->quant;                  current->quant = reference->quant;
# Line 1889  Line 1974 
1974                  pEnc->current->is_interpolated = 0;                  pEnc->current->is_interpolated = 0;
1975          }          }
1976    
1977            frame->coding_type = B_VOP;
1978            call_plugins(pEnc, pEnc->current, NULL, XVID_PLG_FRAME, NULL, NULL, NULL);
1979    
1980          start_timer();          start_timer();
1981          MotionEstimationBVOP(&pEnc->mbParam, frame,          MotionEstimationBVOP(&pEnc->mbParam, frame,
1982                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */                                                   ((int32_t)(pEnc->current->stamp - frame->stamp)),                              /* time_bp */
# Line 1899  Line 1987 
1987                                                   &pEnc->vInterV, &pEnc->vInterHV);                                                   &pEnc->vInterV, &pEnc->vInterHV);
1988          stop_motion_timer();          stop_motion_timer();
1989    
         frame->coding_type = B_VOP;  
   
1990          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(frame, pEnc->reference,pEnc->mbParam.fbase);
1991          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1);          BitstreamWriteVopHeader(bs, &pEnc->mbParam, frame, 1, frame->quant);
1992    
1993          frame->sStat.iTextBits = 0;          frame->sStat.iTextBits = 0;
1994          frame->sStat.iMvSum = 0;          frame->sStat.iMvSum = 0;

Legend:
Removed from v.1210  
changed lines
  Added in v.1259

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