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

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

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

revision 1204, Thu Nov 13 22:35:30 2003 UTC revision 1309, Wed Jan 7 13:51:24 2004 UTC
# Line 25  Line 25 
25   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
26   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27   *   *
28   * $Id: plugin_2pass2.c,v 1.1.2.25 2003-11-13 22:35:30 edgomez Exp $   * $Id: plugin_2pass2.c,v 1.1.2.34 2004-01-07 13:51:24 edgomez Exp $
29   *   *
30   *****************************************************************************/   *****************************************************************************/
31    
32    #define BQUANT_PRESCALE
33  #undef COMPENSATE_FORMULA  #undef COMPENSATE_FORMULA
34    
35    /* forces second pass not to be bigger than first */
36    #undef PASS_SMALLER
37    
38  #include <stdio.h>  #include <stdio.h>
39  #include <math.h>  #include <math.h>
40  #include <limits.h>  #include <limits.h>
# Line 39  Line 43 
43  #include "../image/image.h"  #include "../image/image.h"
44    
45  /*****************************************************************************  /*****************************************************************************
46   * Some constants   * Some default settings
47   ****************************************************************************/   ****************************************************************************/
48    
49  #define DEFAULT_KEYFRAME_BOOST 0  #define DEFAULT_KEYFRAME_BOOST 0
50  #define DEFAULT_OVERFLOW_CONTROL_STRENGTH 10  #define DEFAULT_OVERFLOW_CONTROL_STRENGTH 10
51  #define DEFAULT_CURVE_COMPRESSION_HIGH 0  #define DEFAULT_CURVE_COMPRESSION_HIGH 0
52  #define DEFAULT_CURVE_COMPRESSION_LOW 0  #define DEFAULT_CURVE_COMPRESSION_LOW 0
53  #define DEFAULT_MAX_OVERFLOW_IMPROVEMENT 60  #define DEFAULT_MAX_OVERFLOW_IMPROVEMENT 10
54  #define DEFAULT_MAX_OVERFLOW_DEGRADATION 60  #define DEFAULT_MAX_OVERFLOW_DEGRADATION 10
55    
56  /* Keyframe settings */  /* Keyframe settings */
57  #define DEFAULT_KFREDUCTION 20  #define DEFAULT_KFREDUCTION 20
58  #define DEFAULT_MIN_KEY_INTERVAL 1  #define DEFAULT_KFTHRESHOLD 1
59    
60    /*****************************************************************************
61     * Some default constants (can be tuned)
62     ****************************************************************************/
63    
64    /* Specify the invariant part of the headers bits (header+MV)
65     * as  hlength/cst */
66    #define INVARIANT_HEADER_PART_IVOP 1 /* factor 1.0f   */
67    #define INVARIANT_HEADER_PART_PVOP 2 /* factor 0.5f   */
68    #define INVARIANT_HEADER_PART_BVOP 8 /* factor 0.125f */
69    
70  /*****************************************************************************  /*****************************************************************************
71   * Structures   * Structures
# Line 61  Line 75 
75  typedef struct {  typedef struct {
76          int type;               /* first pass type */          int type;               /* first pass type */
77          int quant;              /* first pass quant */          int quant;              /* first pass quant */
         int quant2;             /* Second pass quant */  
78          int blks[3];                    /* k,m,y blks */          int blks[3];                    /* k,m,y blks */
79          int length;             /* first pass length */          int length;             /* first pass length */
80            int invariant;          /* what we assume as being invariant between the two passes, it's a sub part of header + MV bits */
81          int scaled_length;      /* scaled length */          int scaled_length;      /* scaled length */
82          int desired_length;     /* desired length; calculated during encoding */          int desired_length;     /* desired length; calculated during encoding */
83          int error;          int error;
# Line 95  Line 109 
109    
110          /* Total length of each frame types (1st pass) */          /* Total length of each frame types (1st pass) */
111          uint64_t tot_length[3];          uint64_t tot_length[3];
112            uint64_t tot_invariant[3];
113    
114          /* Average length of each frame types (used first for 1st pass data and          /* Average length of each frame types (used first for 1st pass data and
115           * then for scaled averages */           * then for scaled averages */
# Line 115  Line 130 
130    
131          /*----------------------------------          /*----------------------------------
132           * Zones statistical data           * Zones statistical data
          *  
          * ToDo: Fix zones, current  
          *       implementation is buggy  
133           *--------------------------------*/           *--------------------------------*/
134    
         /* Average weight of the zones */  
         double avg_weight;  
   
135          /* Total length used by XVID_ZONE_QUANT zones */          /* Total length used by XVID_ZONE_QUANT zones */
136          int64_t tot_quant;          uint64_t tot_quant;
137            uint64_t tot_quant_invariant;
138    
139            /* Holds the total amount of frame bytes, zone weighted (only scalable
140             * part of frame bytes) */
141            uint64_t tot_weighted;
142    
143          /*----------------------------------          /*----------------------------------
144           * Advanced settings helper ratios           * Advanced settings helper ratios
# Line 220  Line 234 
234  {  {
235          switch(opt) {          switch(opt) {
236          case XVID_PLG_INFO :          case XVID_PLG_INFO :
237            case XVID_PLG_FRAME :
238                  return 0;                  return 0;
239    
240          case XVID_PLG_CREATE :          case XVID_PLG_CREATE :
# Line 281  Line 296 
296    
297          /* Keyframe settings */          /* Keyframe settings */
298          _INIT(rc->param.kfreduction, DEFAULT_KFREDUCTION);          _INIT(rc->param.kfreduction, DEFAULT_KFREDUCTION);
299          _INIT(rc->param.min_key_interval, DEFAULT_MIN_KEY_INTERVAL);          _INIT(rc->param.kfthreshold, DEFAULT_KFTHRESHOLD);
300  #undef _INIT  #undef _INIT
301    
302          /* Initialize some stuff to zero */          /* Initialize some stuff to zero */
# Line 332  Line 347 
347          /* Compute the target filesize */          /* Compute the target filesize */
348          if (rc->param.bitrate<0) {          if (rc->param.bitrate<0) {
349                  /* if negative, bitrate equals the target (in kbytes) */                  /* if negative, bitrate equals the target (in kbytes) */
350                  rc->target = (-rc->param.bitrate) * 1024;                  rc->target = ((uint64_t)(-rc->param.bitrate)) * 1024;
351          } else if (rc->num_frames  < create->fbase/create->fincr) {          } else if (rc->num_frames  < create->fbase/create->fincr) {
352                  /* Source sequence is less than 1s long, we do as if it was 1s long */                  /* Source sequence is less than 1s long, we do as if it was 1s long */
353                  rc->target = rc->param.bitrate / 8;                  rc->target = rc->param.bitrate / 8;
# Line 358  Line 373 
373          if(rc->param.container_frame_overhead)          if(rc->param.container_frame_overhead)
374                  DPRINTF(XVID_DEBUG_RC, "[xvid rc] -- New target filesize after container compensation: %lld\n", rc->target);                  DPRINTF(XVID_DEBUG_RC, "[xvid rc] -- New target filesize after container compensation: %lld\n", rc->target);
375    
376            /* When bitrate is not given it means it has been scaled by an external
377             * application */
378            if (rc->param.bitrate) {
379                    /* Apply zone settings
380                     * - set rc->tot_quant which represents the total num of bytes spent in
381                     *   fixed quant zones
382                     * - set rc->tot_weighted which represents the total amount of bytes
383                     *   spent in normal or weighted zones in first pass (normal zones can
384                     *   be considered weight=1)
385                     * - set rc->tot_quant_invariant which represents the total num of bytes
386                     *   spent in fixed quant zones for headers */
387                    zone_process(rc, create);
388            } else {
389                    /* External scaling -- zones are ignored */
390                    for (i=0;i<rc->num_frames;i++) {
391                            rc->stats[i].zone_mode = XVID_ZONE_WEIGHT;
392                            rc->stats[i].weight = 1.0;
393                    }
394                    rc->tot_quant = 0;
395            }
396    
397          /* Gathers some information about first pass stats:          /* Gathers some information about first pass stats:
398           *  - finds the minimum frame length for each frame type during 1st pass.           *  - finds the minimum frame length for each frame type during 1st pass.
399           *     rc->min_size[]           *     rc->min_size[]
# Line 366  Line 402 
402           *  - count how many times each frame type has been used.           *  - count how many times each frame type has been used.
403           *     rc->count[]           *     rc->count[]
404           *  - total bytes used per frame type           *  - total bytes used per frame type
405           *     rc->total[]           *     rc->tot_length[]
406             *  - total bytes considered invariant between the 2 passes
407           *  - store keyframe location           *  - store keyframe location
408           *     rc->keyframe_locations[]           *     rc->keyframe_locations[]
409           */           */
410          first_pass_stats_prepare_data(rc);          first_pass_stats_prepare_data(rc);
411    
412          /* When bitrate is not given it means it has been scaled by an external          /* If we have a user bitrate, it means it's an internal curve scaling */
          * application */  
413          if (rc->param.bitrate) {          if (rc->param.bitrate) {
                 /* Apply zone settings */  
                 zone_process(rc, create);  
414                  /* Perform internal curve scaling */                  /* Perform internal curve scaling */
415                  first_pass_scale_curve_internal(rc);                  first_pass_scale_curve_internal(rc);
         } else {  
                 /* External scaling -- zones are ignored */  
                 for (i=0;i<rc->num_frames;i++) {  
                         rc->stats[i].zone_mode = XVID_ZONE_WEIGHT;  
                         rc->stats[i].weight = 1.0;  
                 }  
                 rc->avg_weight = 1.0;  
                 rc->tot_quant = 0;  
416          }          }
417    
418          /* Apply advanced curve options, and compute some parameters in order to          /* Apply advanced curve options, and compute some parameters in order to
# Line 435  Line 461 
461          if (data->quant > 0)          if (data->quant > 0)
462                  return(0);                  return(0);
463    
464          /* Second case: We are in a Quant zone */          /* Second case: insufficent stats data
465             * We can't guess much what we should do, let core decide all alone */
466            if (data->frame_num >= rc->num_frames) {
467                    DPRINTF(XVID_DEBUG_RC,"[xvid rc] -- stats file too short (now processing frame %d)",
468                            data->frame_num);
469                    return(0);
470            }
471    
472            /* Third case: We are in a Quant zone
473             * Quant zones must just ensure we use the same settings as first pass
474             * So set the quantizer and the type */
475          if (s->zone_mode == XVID_ZONE_QUANT) {          if (s->zone_mode == XVID_ZONE_QUANT) {
476                    /* Quant stuff */
477                  rc->fq_error += s->weight;                  rc->fq_error += s->weight;
478                  data->quant = (int)rc->fq_error;                  data->quant = (int)rc->fq_error;
479                  rc->fq_error -= data->quant;                  rc->fq_error -= data->quant;
480    
481                    /* The type stuff */
482                    data->type = s->type;
483    
484                    /* The only required data for AFTER step is this one for the overflow
485                     * control */
486                  s->desired_length = s->length;                  s->desired_length = s->length;
487    
488                  return(0);                  return(0);
489          }          }
490    
         /* Third case: insufficent stats data */  
         if (data->frame_num >= rc->num_frames)  
                 return(0);  
491    
492          /*************************************************************************/          /*************************************************************************/
493          /*************************************************************************/          /*************************************************************************/
# Line 466  Line 505 
505    
506          /* IFrame user settings*/          /* IFrame user settings*/
507          if (s->type == XVID_TYPE_IVOP) {          if (s->type == XVID_TYPE_IVOP) {
   
508                  /* Keyframe boosting -- All keyframes benefit from it */                  /* Keyframe boosting -- All keyframes benefit from it */
509                  dbytes += dbytes*rc->param.keyframe_boost / 100;                  dbytes += dbytes*rc->param.keyframe_boost / 100;
510    
511                  /* Applies keyframe penalties, but not the first frame */  #if 0 /* ToDo: decide how to apply kfthresholding */
512                  if (rc->KF_idx) {  #endif
                         int penalty_distance;  
   
                         /* Minimum keyframe distance penalties */  
                         penalty_distance  = rc->param.min_key_interval;  
                         penalty_distance -= rc->keyframe_locations[rc->KF_idx];  
                         penalty_distance += rc->keyframe_locations[rc->KF_idx-1];  
   
                         /* Ah ah ! guilty keyframe, you're under arrest ! */  
                         if (penalty_distance > 0)  
                                 dbytes -= dbytes*penalty_distance*rc->param.kfreduction/100;  
                 }  
513          } else {          } else {
514    
515                  /* P/S/B frames must reserve some bits for iframe boosting */                  /* P/S/B frames must reserve some bits for iframe boosting */
# Line 524  Line 551 
551           *-----------------------------------------------------------------------*/           *-----------------------------------------------------------------------*/
552    
553          /* Compute the overflow we should compensate */          /* Compute the overflow we should compensate */
554          if (s->type != XVID_TYPE_IVOP) {          if (s->type != XVID_TYPE_IVOP || rc->overflow > 0) {
555                  double frametype_factor;                  double frametype_factor;
556                  double framesize_factor;                  double framesize_factor;
557    
# Line 555  Line 582 
582                  /* Apply the overflow strength imposed by the user */                  /* Apply the overflow strength imposed by the user */
583                  overflow *= (rc->param.overflow_control_strength/100.0f);                  overflow *= (rc->param.overflow_control_strength/100.0f);
584          } else {          } else {
585                  /* no overflow applied in IFrames because:                  /* no negative overflow applied in IFrames because:
586                   *  - their role is important as they're references for P/BFrames.                   *  - their role is important as they're references for P/BFrames.
587                   *  - there aren't much in typical sequences, so if an IFrame overflows too                   *  - there aren't much in typical sequences, so if an IFrame overflows too
588                   *    much, this overflow may impact the next IFrame too much and generate                   *    much, this overflow may impact the next IFrame too much and generate
# Line 587  Line 614 
614           * pass nor smaller than the allowed minimum.           * pass nor smaller than the allowed minimum.
615           *-----------------------------------------------------------------------*/           *-----------------------------------------------------------------------*/
616    
617    #ifdef PASS_SMALLER
618          if (dbytes > s->length) {          if (dbytes > s->length) {
619                  dbytes = s->length;                  dbytes = s->length;
620          } else if (dbytes < rc->min_length[s->type-1]) {          } else
621    #endif
622                    if (dbytes < rc->min_length[s->type-1]) {
623                  dbytes = rc->min_length[s->type-1];                  dbytes = rc->min_length[s->type-1];
624          } else if (dbytes > rc->max_length) {          } else if (dbytes > rc->max_length) {
625                  /* ToDo: this condition is always wrong as max_length == maximum frame                  /* ToDo: this condition is always wrong as max_length == maximum frame
# Line 605  Line 635 
635           * Desired frame length <-> quantizer mapping           * Desired frame length <-> quantizer mapping
636           *-----------------------------------------------------------------------*/           *-----------------------------------------------------------------------*/
637    
638          /* For bframes we must retrieve the original quant used (sent to xvidcore)  #ifdef BQUANT_PRESCALE
639           * as core applies the bquant formula before writing the stat log entry */          /* For bframes we prescale the quantizer to avoid too high quant scaling */
640          if(s->type == XVID_TYPE_BVOP) {          if(s->type == XVID_TYPE_BVOP) {
641    
642                  twopass_stat_t *b_ref = s;                  twopass_stat_t *b_ref = s;
# Line 616  Line 646 
646                          b_ref--;                          b_ref--;
647    
648                  /* Compute the original quant */                  /* Compute the original quant */
649                  s->quant  = 100*s->quant - data->bquant_offset;                  s->quant  = 2*(100*s->quant - data->bquant_offset);
650                  s->quant += data->bquant_ratio - 1; /* to avoid rouding issues */                  s->quant += data->bquant_ratio - 1; /* to avoid rounding issues */
651                  s->quant  = s->quant/data->bquant_ratio - b_ref->quant;                  s->quant  = s->quant/data->bquant_ratio - b_ref->quant;
652          }          }
653    #endif
654    
655          /* Don't laugh at this very 'simple' quant<->filesize relationship, it          /* Don't laugh at this very 'simple' quant<->size relationship, it
656           * proves to be acurate enough for our algorithm */           * proves to be acurate enough for our algorithm */
657          scaled_quant = (double)s->quant*(double)s->length/(double)dbytes;          scaled_quant = (double)s->quant*(double)s->length/(double)dbytes;
658    
# Line 709  Line 740 
740          /* Don't forget to force 1st pass frame type ;-) */          /* Don't forget to force 1st pass frame type ;-) */
741          data->type = s->type;          data->type = s->type;
742    
         /* Store the quantizer into the statistics -- Used to compensate the double  
          * formula symptom */  
         s->quant2 = data->quant;  
   
743          return 0;          return 0;
744  }  }
745    
# Line 774  Line 801 
801                  rc->KFoverflow -= rc->KFoverflow_partial;                  rc->KFoverflow -= rc->KFoverflow_partial;
802          }          }
803    
804          rc->overflow += s->error = s->desired_length - data->length;          rc->overflow += (s->error = s->desired_length - data->length);
805          rc->real_total += data->length;          rc->real_total += data->length;
806    
807          DPRINTF(XVID_DEBUG_RC, "[xvid rc] -- frame:%d type:%c quant:%d stats:%d scaled:%d desired:%d actual:%d error:%d overflow:%.2f\n",          DPRINTF(XVID_DEBUG_RC, "[xvid rc] -- frame:%d type:%c quant:%d stats:%d scaled:%d desired:%d actual:%d error:%d overflow:%.2f\n",
# Line 839  Line 866 
866                  /* Read the stat line from buffer */                  /* Read the stat line from buffer */
867                  fields = sscanf(ptr, "%c", &type);                  fields = sscanf(ptr, "%c", &type);
868    
869                  /* Valid stats files have at least 6 fields */                  /* Valid stats files have at least 7 fields */
870                  if (fields == 1) {                  if (fields == 1) {
871                          switch(type) {                          switch(type) {
872                          case 'i':                          case 'i':
# Line 861  Line 888 
888                  } else {                  } else {
889                                  DPRINTF(XVID_DEBUG_RC,                                  DPRINTF(XVID_DEBUG_RC,
890                                                  "[xvid rc] -- WARNING: L%d misses some stat fields (%d).\n",                                                  "[xvid rc] -- WARNING: L%d misses some stat fields (%d).\n",
891                                                  lines, 6-fields);                                                  lines, 7-fields);
892                  }                  }
893    
894                  /* Free the line buffer */                  /* Free the line buffer */
# Line 910  Line 937 
937    
938                  /* Convert the fields */                  /* Convert the fields */
939                  fields = sscanf(ptr,                  fields = sscanf(ptr,
940                                                  "%c %d %d %d %d %d %d\n",                                                  "%c %d %d %d %d %d %d %d\n",
941                                                  &type,                                                  &type,
942                                                  &s->quant,                                                  &s->quant,
943                                                  &s->blks[0], &s->blks[1], &s->blks[2],                                                  &s->blks[0], &s->blks[1], &s->blks[2],
944                                                  &s->length,                                                  &s->length, &s->invariant /* not really yet */,
945                                                  &s->scaled_length);                                                  &s->scaled_length);
946    
947                  /* Free line buffer, we don't need it anymore */                  /* Free line buffer, we don't need it anymore */
# Line 922  Line 949 
949    
950                  /* Fail silently, this has probably been warned in                  /* Fail silently, this has probably been warned in
951                   * statsfile_count_frames */                   * statsfile_count_frames */
952                  if(fields != 6 && fields != 7)                  if(fields != 7 && fields != 8)
953                          continue;                          continue;
954    
955                  /* Convert frame type */                  /* Convert frame type and compute the invariant length part */
956                  switch(type) {                  switch(type) {
957                  case 'i':                  case 'i':
958                  case 'I':                  case 'I':
959                          s->type = XVID_TYPE_IVOP;                          s->type = XVID_TYPE_IVOP;
960                            s->invariant /= INVARIANT_HEADER_PART_IVOP;
961                          break;                          break;
962                  case 'p':                  case 'p':
963                  case 'P':                  case 'P':
964                  case 's':                  case 's':
965                  case 'S':                  case 'S':
966                          s->type = XVID_TYPE_PVOP;                          s->type = XVID_TYPE_PVOP;
967                            s->invariant /= INVARIANT_HEADER_PART_PVOP;
968                          break;                          break;
969                  case 'b':                  case 'b':
970                  case 'B':                  case 'B':
971                          s->type = XVID_TYPE_BVOP;                          s->type = XVID_TYPE_BVOP;
972                            s->invariant /= INVARIANT_HEADER_PART_BVOP;
973                          break;                          break;
974                  default:                  default:
975                          /* Same as before, fail silently */                          /* Same as before, fail silently */
# Line 958  Line 988 
988    
989  /* pre-process the statistics data  /* pre-process the statistics data
990   * - for each type, count, tot_length, min_length, max_length   * - for each type, count, tot_length, min_length, max_length
991   * - set keyframes_locations */   * - set keyframes_locations, tot_prescaled */
992  static void  static void
993  first_pass_stats_prepare_data(rc_2pass2_t * rc)  first_pass_stats_prepare_data(rc_2pass2_t * rc)
994  {  {
# Line 970  Line 1000 
1000          for (i=0; i<3; i++) {          for (i=0; i<3; i++) {
1001                  rc->count[i]=0;                  rc->count[i]=0;
1002                  rc->tot_length[i] = 0;                  rc->tot_length[i] = 0;
1003                    rc->tot_invariant[i] = 0;
1004                  rc->min_length[i] = INT_MAX;                  rc->min_length[i] = INT_MAX;
1005          }          }
1006    
1007          rc->max_length = INT_MIN;          rc->max_length = INT_MIN;
1008            rc->tot_weighted = 0;
1009    
1010          /* Loop through all frames and find/compute all the stuff this function          /* Loop through all frames and find/compute all the stuff this function
1011           * is supposed to do */           * is supposed to do */
# Line 982  Line 1014 
1014    
1015                  rc->count[s->type-1]++;                  rc->count[s->type-1]++;
1016                  rc->tot_length[s->type-1] += s->length;                  rc->tot_length[s->type-1] += s->length;
1017                    rc->tot_invariant[s->type-1] += s->invariant;
1018                    if (s->zone_mode != XVID_ZONE_QUANT)
1019                            rc->tot_weighted += (int)(s->weight*(s->length - s->invariant));
1020    
1021                  if (s->length < rc->min_length[s->type-1]) {                  if (s->length < rc->min_length[s->type-1]) {
1022                          rc->min_length[s->type-1] = s->length;                          rc->min_length[s->type-1] = s->length;
# Line 1016  Line 1051 
1051          int i,j;          int i,j;
1052          int n = 0;          int n = 0;
1053    
         rc->avg_weight = 0.0;  
1054          rc->tot_quant = 0;          rc->tot_quant = 0;
1055            rc->tot_quant_invariant = 0;
1056    
1057          if (create->num_zones == 0) {          if (create->num_zones == 0) {
1058                  for (j = 0; j < rc->num_frames; j++) {                  for (j = 0; j < rc->num_frames; j++) {
1059                          rc->stats[j].zone_mode = XVID_ZONE_WEIGHT;                          rc->stats[j].zone_mode = XVID_ZONE_WEIGHT;
1060                          rc->stats[j].weight = 1.0;                          rc->stats[j].weight = 1.0;
1061                  }                  }
                 rc->avg_weight += rc->num_frames * 1.0;  
1062                  n += rc->num_frames;                  n += rc->num_frames;
1063          }          }
1064    
# Line 1034  Line 1067 
1067    
1068                  int next = (i+1<create->num_zones) ? create->zones[i+1].frame : rc->num_frames;                  int next = (i+1<create->num_zones) ? create->zones[i+1].frame : rc->num_frames;
1069    
1070                    /* Zero weight make no sense */
1071                    if (create->zones[i].increment == 0) create->zones[i].increment = 1;
1072                    /* And obviously an undetermined infinite makes even less sense */
1073                    if (create->zones[i].base == 0) create->zones[i].base = 1;
1074    
1075                  if (i==0 && create->zones[i].frame > 0) {                  if (i==0 && create->zones[i].frame > 0) {
1076                          for (j = 0; j < create->zones[i].frame && j < rc->num_frames; j++) {                          for (j = 0; j < create->zones[i].frame && j < rc->num_frames; j++) {
1077                                  rc->stats[j].zone_mode = XVID_ZONE_WEIGHT;                                  rc->stats[j].zone_mode = XVID_ZONE_WEIGHT;
1078                                  rc->stats[j].weight = 1.0;                                  rc->stats[j].weight = 1.0;
1079                          }                          }
                         rc->avg_weight += create->zones[i].frame * 1.0;  
1080                          n += create->zones[i].frame;                          n += create->zones[i].frame;
1081                  }                  }
1082    
# Line 1049  Line 1086 
1086                                  rc->stats[j].weight = (double)create->zones[i].increment / (double)create->zones[i].base;                                  rc->stats[j].weight = (double)create->zones[i].increment / (double)create->zones[i].base;
1087                          }                          }
1088                          next -= create->zones[i].frame;                          next -= create->zones[i].frame;
                         rc->avg_weight += (double)(next * create->zones[i].increment) / (double)create->zones[i].base;  
1089                          n += next;                          n += next;
1090                  }else{  /* XVID_ZONE_QUANT */                  }else{  /* XVID_ZONE_QUANT */
1091                          for (j = create->zones[i].frame; j < next && j < rc->num_frames; j++ ) {                          for (j = create->zones[i].frame; j < next && j < rc->num_frames; j++ ) {
1092                                  rc->stats[j].zone_mode = XVID_ZONE_QUANT;                                  rc->stats[j].zone_mode = XVID_ZONE_QUANT;
1093                                  rc->stats[j].weight = (double)create->zones[i].increment / (double)create->zones[i].base;                                  rc->stats[j].weight = (double)create->zones[i].increment / (double)create->zones[i].base;
1094                                  rc->tot_quant += rc->stats[j].length;                                  rc->tot_quant += rc->stats[j].length;
1095                                    rc->tot_quant_invariant += rc->stats[j].invariant;
1096                          }                          }
1097                  }                  }
1098          }          }
         rc->avg_weight = n>0 ? rc->avg_weight/n : 1.0;  
   
         DPRINTF(XVID_DEBUG_RC, "[xvid rc] -- center_weight:%f (for %d frames)  fixed_bytes:%d\n", rc->avg_weight, n, rc->tot_quant);  
1099  }  }
1100    
1101    
# Line 1070  Line 1104 
1104  first_pass_scale_curve_internal(rc_2pass2_t *rc)  first_pass_scale_curve_internal(rc_2pass2_t *rc)
1105  {  {
1106          int64_t target;          int64_t target;
1107          int64_t pass1_length;          int64_t total_invariant;
1108          double scaler;          double scaler;
1109          int i, num_MBs;          int i, num_MBs;
1110    
1111          /* We remove the bytes used by the fixed quantizer zones          /* We only scale texture data ! */
1112           * ToDo: this approach is flawed, the same amount of bytes is removed from          total_invariant  = rc->tot_invariant[XVID_TYPE_IVOP-1];
1113           *       target and first pass data, this has no sense, zone_process should          total_invariant += rc->tot_invariant[XVID_TYPE_PVOP-1];
1114           *       give us two results one for unscaled data (1pass) and the other          total_invariant += rc->tot_invariant[XVID_TYPE_BVOP-1];
1115           *       one for scaled data and we should then write:          /* don't forget to substract header bytes used in quant zones, otherwise we
1116           *       target = rc->target - rc->tot_quant_scaled;           * counting them twice */
1117           *       pass1_length = rc->i+p+b - rc->tot_quant_firstpass */          total_invariant -= rc->tot_quant_invariant;
1118          target = rc->target - rc->tot_quant;  
1119            /* We remove the bytes used by the fixed quantizer zones during first pass
1120          /* Do the same for the first pass data */           * with the same quants, so we know very precisely how much that
1121          pass1_length  = rc->tot_length[XVID_TYPE_IVOP-1];           * represents */
1122          pass1_length += rc->tot_length[XVID_TYPE_PVOP-1];          target  = rc->target;
1123          pass1_length += rc->tot_length[XVID_TYPE_BVOP-1];          target -= rc->tot_quant;
         pass1_length -= rc->tot_quant;  
1124    
1125          /* Let's compute a linear scaler in order to perform curve scaling */          /* Let's compute a linear scaler in order to perform curve scaling */
1126          scaler = (double)target / (double)pass1_length;          scaler = (double)(target - total_invariant) / (double)(rc->tot_weighted);
   
         if (target <= 0 || pass1_length <= 0 || target >= pass1_length) {  
                 DPRINTF(XVID_DEBUG_RC, "[xvid rc] -- WARNING: Undersize detected before correction\n");  
                 scaler = 1.0;  
         }  
1127    
1128          /* Compute min frame lengths (for each frame type) according to the number          /* Compute min frame lengths (for each frame type) according to the number
1129           * of MBs. We sum all block type counters of frame 0, this gives us the           * of MBs. We sum all block type counters of frame 0, this gives us the
# Line 1137  Line 1165 
1165                          continue;                          continue;
1166                  }                  }
1167    
1168                  /* Compute the scaled length */                  /* Compute the scaled length -- only non invariant data length is scaled */
1169                  len = (int)((double)s->length * scaler * s->weight / rc->avg_weight);                  len = s->invariant + (int)((double)(s->length-s->invariant) * scaler * s->weight);
1170    
1171                  /* Compare with the computed minimum */                  /* Compare with the computed minimum */
1172                  if (len < rc->min_length[s->type-1]) {                  if (len < rc->min_length[s->type-1]) {
# Line 1150  Line 1178 
1178                           * total counters, as we prepare a second pass for 'regular'                           * total counters, as we prepare a second pass for 'regular'
1179                           * frames */                           * frames */
1180                          target -= s->scaled_length;                          target -= s->scaled_length;
                         pass1_length -= s->length;  
1181                  } else {                  } else {
1182                          /* Do nothing for now, we'll scale this later */                          /* Do nothing for now, we'll scale this later */
1183                          s->scaled_length = 0;                          s->scaled_length = 0;
# Line 1161  Line 1188 
1188           * total counters. Now, it's possible to scale the 'regular' frames. */           * total counters. Now, it's possible to scale the 'regular' frames. */
1189    
1190          /* Scaling factor for 'regular' frames */          /* Scaling factor for 'regular' frames */
1191          scaler = (double)target / (double)pass1_length;          scaler = (double)(target - total_invariant) / (double)(rc->tot_weighted);
   
         /* Detect undersizing */  
         if (target <= 0 || pass1_length <= 0 || target >= pass1_length) {  
                 DPRINTF(XVID_DEBUG_RC, "[xvid rc] -- WARNING: Undersize detected after correction\n");  
                 scaler = 1.0;  
         }  
1192    
1193          /* Do another pass with the new scaler */          /* Do another pass with the new scaler */
1194          for (i=0; i<rc->num_frames; i++) {          for (i=0; i<rc->num_frames; i++) {
# Line 1175  Line 1196 
1196    
1197                  /* Ignore frame with forced frame sizes */                  /* Ignore frame with forced frame sizes */
1198                  if (s->scaled_length == 0)                  if (s->scaled_length == 0)
1199                          s->scaled_length = (int)((double)s->length * scaler * s->weight / rc->avg_weight);                          s->scaled_length = s->invariant + (int)((double)(s->length-s->invariant) * scaler * s->weight);
1200          }          }
1201    
1202          /* Job done */          /* Job done */
# Line 1190  Line 1211 
1211  scaled_curve_apply_advanced_parameters(rc_2pass2_t * rc)  scaled_curve_apply_advanced_parameters(rc_2pass2_t * rc)
1212  {  {
1213          int i;          int i;
1214          uint64_t ivop_boost_total;          int64_t ivop_boost_total;
1215    
1216          /* Reset the rate controller (per frame type) total byte counters */          /* Reset the rate controller (per frame type) total byte counters */
1217          for (i=0; i<3; i++) rc->tot_scaled_length[i] = 0;          for (i=0; i<3; i++) rc->tot_scaled_length[i] = 0;
# Line 1213  Line 1234 
1234    
1235                  /* Some more work is needed for I frames */                  /* Some more work is needed for I frames */
1236                  if (s->type == XVID_TYPE_IVOP) {                  if (s->type == XVID_TYPE_IVOP) {
                         int penalty_distance;  
1237                          int ivop_boost;                          int ivop_boost;
1238    
1239                          /* Accumulate bytes needed for keyframe boosting */                          /* Accumulate bytes needed for keyframe boosting */
1240                          ivop_boost = s->scaled_length*rc->param.keyframe_boost/100;                          ivop_boost = s->scaled_length*rc->param.keyframe_boost/100;
1241    
1242                          if (rc->KF_idx) {  #if 0 /* ToDo: decide how to apply kfthresholding */
1243                                  /* Minimum keyframe distance penalties */  #endif
                                 penalty_distance  = rc->param.min_key_interval;  
                                 penalty_distance -= rc->keyframe_locations[rc->KF_idx];  
                                 penalty_distance += rc->keyframe_locations[rc->KF_idx-1];  
   
                                 /* Ah ah ! guilty keyframe, you're under arrest ! */  
                                 if (penalty_distance > 0)  
                                          ivop_boost -= (s->scaled_length + ivop_boost)*penalty_distance*rc->param.kfreduction/100;  
                         }  
   
1244                          /* If the frame size drops under the minimum length, then cap ivop_boost */                          /* If the frame size drops under the minimum length, then cap ivop_boost */
1245                          if (ivop_boost + s->scaled_length < rc->min_length[XVID_TYPE_IVOP-1])                          if (ivop_boost + s->scaled_length < rc->min_length[XVID_TYPE_IVOP-1])
1246                                  ivop_boost = rc->min_length[XVID_TYPE_IVOP-1] - s->scaled_length;                                  ivop_boost = rc->min_length[XVID_TYPE_IVOP-1] - s->scaled_length;
# Line 1259  Line 1270 
1270    
1271          /* Compute the ratio described above          /* Compute the ratio described above
1272           *     taxed_total = sum(0, n, tax*scaled_length)           *     taxed_total = sum(0, n, tax*scaled_length)
1273           * <=> taxed_total = tax.sum(0, n, tax*scaled_length)           * <=> taxed_total = tax.sum(0, n, scaled_length)
1274           * <=> tax = taxed_total / original_total */           * <=> tax = taxed_total / original_total */
1275          rc->pb_iboost_tax_ratio =          rc->pb_iboost_tax_ratio =
1276                  (rc->pb_iboost_tax_ratio - ivop_boost_total) /                  (rc->pb_iboost_tax_ratio - ivop_boost_total) /

Legend:
Removed from v.1204  
changed lines
  Added in v.1309

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