[svn] / trunk / xvidcore / src / encoder.c Repository:
ViewVC logotype

Diff of /trunk/xvidcore/src/encoder.c

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

revision 1500, Fri Jul 16 19:56:13 2004 UTC revision 1501, Sat Jul 17 11:42:46 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.105 2004-04-04 11:47:21 syskin Exp $   * $Id: encoder.c,v 1.106 2004-07-17 11:42:46 edgomez Exp $
25   *   *
26   ****************************************************************************/   ****************************************************************************/
27    
# Line 100  Line 100 
100                  i--;                  i--;
101          }          }
102    
103          /* if neccessary, round to 65535 accuracy */          if (*base > 65535 || *inc > 65535) {
104          if (*base > 65535) {                  int *biggest;
105                  float div = (float) *base / 65535;                  int *other;
106                  *base = (int) (*base / div);  
107                  *inc = (int) (*inc / div);                  if (*base > *inc) {
108                            biggest = base;
109                            other = inc;
110                    } else {
111                            biggest = inc;
112                            other = base;
113                    }
114    
115                    float div = ((float)*biggest)/((float)65535);
116                    *biggest = (int)(((float)*biggest)/div);
117                    *other = (int)(((float)*other)/div);
118          }          }
119  }  }
120    

Legend:
Removed from v.1500  
changed lines
  Added in v.1501

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