[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 1221, Thu Nov 20 12:07:19 2003 UTC revision 1344, Fri Jan 30 18:53:50 2004 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.55 2003-11-20 12:07:19 syskin Exp $   * $Id: encoder.c,v 1.95.2.63 2004-01-30 18:53:50 chl 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 403  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 469  Line 478 
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 597  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 639  Line 652 
652                  data.max_quant[i] = pEnc->mbParam.max_quant[i];                  data.max_quant[i] = pEnc->mbParam.max_quant[i];
653          }          }
654    
655          data.reference.csp = XVID_CSP_USER;          data.reference.csp = XVID_CSP_PLANAR;
656          data.reference.plane[0] = pEnc->reference->image.y;          data.reference.plane[0] = pEnc->reference->image.y;
657          data.reference.plane[1] = pEnc->reference->image.u;          data.reference.plane[1] = pEnc->reference->image.u;
658          data.reference.plane[2] = pEnc->reference->image.v;          data.reference.plane[2] = pEnc->reference->image.v;
# Line 647  Line 660 
660          data.reference.stride[1] = pEnc->mbParam.edged_width/2;          data.reference.stride[1] = pEnc->mbParam.edged_width/2;
661          data.reference.stride[2] = pEnc->mbParam.edged_width/2;          data.reference.stride[2] = pEnc->mbParam.edged_width/2;
662    
663          data.current.csp = XVID_CSP_USER;          data.current.csp = XVID_CSP_PLANAR;
664          data.current.plane[0] = frame->image.y;          data.current.plane[0] = frame->image.y;
665          data.current.plane[1] = frame->image.u;          data.current.plane[1] = frame->image.u;
666          data.current.plane[2] = frame->image.v;          data.current.plane[2] = frame->image.v;
# Line 677  Line 690 
690    
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_PLANAR;
694                          data.original.plane[0] = original->y;                          data.original.plane[0] = original->y;
695                          data.original.plane[1] = original->u;                          data.original.plane[1] = original->u;
696                          data.original.plane[2] = original->v;                          data.original.plane[2] = original->v;
# Line 727  Line 740 
740                  data.mblks = frame->sStat.mblks;                  data.mblks = frame->sStat.mblks;
741                  data.ublks = frame->sStat.ublks;                  data.ublks = frame->sStat.ublks;
742    
743                  if (stats) {                  /* New code */
744                          stats->type = coding2type(frame->coding_type);                  data.stats.type      = coding2type(frame->coding_type);
745                          stats->quant = frame->quant;                  data.stats.quant     = frame->quant;
746                          stats->vol_flags = frame->vol_flags;                  data.stats.vol_flags = frame->vol_flags;
747                          stats->vop_flags = frame->vop_flags;                  data.stats.vop_flags = frame->vop_flags;
748                          stats->length = frame->length;                  data.stats.length    = frame->length;
749                          stats->hlength = frame->length - (frame->sStat.iTextBits / 8);                  data.stats.hlength   = frame->length - (frame->sStat.iTextBits / 8);
750                          stats->kblks = frame->sStat.kblks;                  data.stats.kblks     = frame->sStat.kblks;
751                          stats->mblks = frame->sStat.mblks;                  data.stats.mblks     = frame->sStat.mblks;
752                          stats->ublks = frame->sStat.ublks;                  data.stats.ublks     = frame->sStat.ublks;
753                          stats->sse_y = data.sse_y;                  data.stats.sse_y     = data.sse_y;
754                          stats->sse_u = data.sse_u;                  data.stats.sse_u     = data.sse_u;
755                          stats->sse_v = data.sse_v;                  data.stats.sse_v     = data.sse_v;
756                  }  
757                    if (stats)
758                            *stats = data.stats;
759          }          }
760    
761          /* call plugins */          /* call plugins */
# Line 835  Line 850 
850          pCur->ticks = (int32_t)pCur->stamp % time_base;          pCur->ticks = (int32_t)pCur->stamp % time_base;
851                  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) ;
852    
853                  /* HEAVY DEBUG OUTPUT remove when timecodes prove to be stable */  #if 0   /* HEAVY DEBUG OUTPUT */
854            fprintf(stderr,"WriteVop:   %d - %d \n",
 /*              fprintf(stderr,"WriteVop:   %d - %d \n",  
855                          ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));                          ((int32_t)pCur->stamp / time_base), ((int32_t)pRef->stamp / time_base));
856                  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",
857                          pCur->coding_type, pCur->stamp, pRef->stamp, time_base);                          pCur->coding_type, pCur->stamp, pRef->stamp, time_base);
858                  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",
859                          pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);                          pCur->coding_type, pCur->seconds, pCur->ticks, pRef->seconds, pRef->ticks);
860    #endif
861    }
862    
863  */  static int
864    gcd(int a, int b)
865    {
866            int r ;
867    
868            if (b > a) {
869                    r = a;
870                    a = b;
871                    b = r;
872  }  }
873    
874            while ((r = a % b)) {
875                    a = b;
876                    b = r;
877            }
878            return b;
879    }
880    
881    static void
882    simplify_par(int *par_width, int *par_height)
883    {
884    
885            int _par_width  = (!*par_width)  ? 1 : (*par_width<0)  ? -*par_width:  *par_width;
886            int _par_height = (!*par_height) ? 1 : (*par_height<0) ? -*par_height: *par_height;
887            int divisor = gcd(_par_width, _par_height);
888    
889            _par_width  /= divisor;
890            _par_height /= divisor;
891    
892            /* 2^8 precision maximum */
893            if (_par_width>255 || _par_height>255) {
894                    float div;
895                    emms();
896                    if (_par_width>_par_height)
897                            div = (float)_par_width/255;
898                    else
899                            div = (float)_par_height/255;
900    
901                    _par_width  = (int)((float)_par_width/div);
902                    _par_height = (int)((float)_par_height/div);
903            }
904    
905            *par_width = _par_width;
906            *par_height = _par_height;
907    
908            return;
909    }
910    
911    
912  /*****************************************************************************  /*****************************************************************************
# Line 1061  Line 1121 
1121    
1122          pEnc->current->fincr = pEnc->mbParam.fincr>0 ? pEnc->mbParam.fincr : frame->fincr;          pEnc->current->fincr = pEnc->mbParam.fincr>0 ? pEnc->mbParam.fincr : frame->fincr;
1123          inc_frame_num(pEnc);          inc_frame_num(pEnc);
1124          pEnc->current->vol_flags = pEnc->mbParam.vol_flags;          pEnc->current->vol_flags = frame->vol_flags;
1125          pEnc->current->vop_flags = frame->vop_flags;          pEnc->current->vop_flags = frame->vop_flags;
1126          pEnc->current->motion_flags = frame->motion;          pEnc->current->motion_flags = frame->motion;
1127          pEnc->current->fcode = pEnc->mbParam.m_fcode;          pEnc->current->fcode = pEnc->mbParam.m_fcode;
# Line 1096  Line 1156 
1156                  }                  }
1157          }          }
1158    
1159            if (type != I_VOP)
1160                    pEnc->current->vol_flags = pEnc->mbParam.vol_flags; /* don't allow VOL changes here */
1161    
1162          /* bframes buffer overflow check */          /* bframes buffer overflow check */
1163          if (type == B_VOP && pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {          if (type == B_VOP && pEnc->bframenum_tail >= pEnc->mbParam.max_bframes) {
1164                  type = P_VOP;                  type = P_VOP;
# Line 1208  Line 1271 
1271                  pEnc->iFrameNum = 1;                  pEnc->iFrameNum = 1;
1272    
1273                  /* ---- update vol flags at IVOP ----------- */                  /* ---- update vol flags at IVOP ----------- */
1274                  pEnc->current->vol_flags = pEnc->mbParam.vol_flags = frame->vol_flags;                  pEnc->mbParam.vol_flags = pEnc->current->vol_flags;
1275    
1276                    /* Aspect ratio */
1277                  switch(frame->par) {                  switch(frame->par) {
1278                  case XVID_PAR_11_VGA:                  case XVID_PAR_11_VGA:
1279                  case XVID_PAR_43_PAL:                  case XVID_PAR_43_PAL:
# Line 1219  Line 1284 
1284                          pEnc->mbParam.par = frame->par;                          pEnc->mbParam.par = frame->par;
1285                          break;                          break;
1286                  default:                  default:
1287                          pEnc->mbParam.par = XVID_PAR_EXT;                          pEnc->mbParam.par = XVID_PAR_11_VGA;
1288                          break;                          break;
1289                  }                  }
1290                  pEnc->mbParam.par_width = (frame->par_width)?frame->par_width:1;  
1291                  pEnc->mbParam.par_height = (frame->par_height)?frame->par_height:1;                  /* For extended PAR only, we try to sanityse/simplify par values */
1292                    if (pEnc->mbParam.par == XVID_PAR_EXT) {
1293                            pEnc->mbParam.par_width  = frame->par_width;
1294                            pEnc->mbParam.par_height = frame->par_height;
1295                            simplify_par(&pEnc->mbParam.par_width, &pEnc->mbParam.par_height);
1296                    }
1297    
1298                  if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {                  if ((pEnc->mbParam.vol_flags & XVID_VOL_MPEGQUANT)) {
1299                          if (frame->quant_intra_matrix != NULL)                          if (frame->quant_intra_matrix != NULL)
1300                                  set_intra_matrix(frame->quant_intra_matrix);                                  set_intra_matrix(pEnc->mbParam.mpeg_quant_matrices, frame->quant_intra_matrix);
1301                          if (frame->quant_inter_matrix != NULL)                          if (frame->quant_inter_matrix != NULL)
1302                                  set_inter_matrix(frame->quant_inter_matrix);                                  set_inter_matrix(pEnc->mbParam.mpeg_quant_matrices, frame->quant_inter_matrix);
1303                  }                  }
1304    
1305                  /* prevent vol/vop misuse */                  /* prevent vol/vop misuse */
# Line 1382  Line 1452 
1452    
1453          SetMacroblockQuants(&pEnc->mbParam, pEnc->current);          SetMacroblockQuants(&pEnc->mbParam, pEnc->current);
1454    
1455          BitstreamWriteVolHeader(bs, &pEnc->mbParam);          BitstreamWriteVolHeader(bs, &pEnc->mbParam, pEnc->current);
1456    
1457          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);          set_timecodes(pEnc->current,pEnc->reference,pEnc->mbParam.fbase);
1458    
# Line 1577  Line 1647 
1647    
1648          set_timecodes(current,reference,pParam->fbase);          set_timecodes(current,reference,pParam->fbase);
1649          if (vol_header)          if (vol_header)
1650          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam);          {       BitstreamWriteVolHeader(bs, &pEnc->mbParam, current);
1651                  BitstreamPad(bs);                  BitstreamPad(bs);
1652          }          }
1653    

Legend:
Removed from v.1221  
changed lines
  Added in v.1344

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