[SCM] libav/experimental: simplify

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:49:18 UTC 2013


The following commit has been merged in the experimental branch:
commit 79dc59b726f73f9464c8d5f74e8a01fab8151836
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu Jul 20 10:14:06 2006 +0000

    simplify
    
    Originally committed as revision 5802 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/rational.c b/libavutil/rational.c
index df4b218..4a7b0ed 100644
--- a/libavutil/rational.c
+++ b/libavutil/rational.c
@@ -76,8 +76,7 @@ AVRational av_mul_q(AVRational b, AVRational c){
  * returns b/c.
  */
 AVRational av_div_q(AVRational b, AVRational c){
-    av_reduce(&b.num, &b.den, b.num * (int64_t)c.den, b.den * (int64_t)c.num, INT_MAX);
-    return b;
+    return av_mul_q(b, (AVRational){c.den, c.num});
 }
 
 /**
@@ -92,8 +91,7 @@ AVRational av_add_q(AVRational b, AVRational c){
  * returns b-c.
  */
 AVRational av_sub_q(AVRational b, AVRational c){
-    av_reduce(&b.num, &b.den, b.num * (int64_t)c.den - c.num * (int64_t)b.den, b.den * (int64_t)c.den, INT_MAX);
-    return b;
+    return av_add_q(b, (AVRational){-c.num, c.den});
 }
 
 /**
@@ -102,7 +100,8 @@ AVRational av_sub_q(AVRational b, AVRational c){
  */
 AVRational av_d2q(double d, int max){
     AVRational a;
-    int exponent= FFMAX( (int)(log(fabs(d) + 1e-20)/log(2)), 0);
+#define LOG2  0.69314718055994530941723212145817656807550013436025
+    int exponent= FFMAX( (int)(log(fabs(d) + 1e-20)/LOG2), 0);
     int64_t den= 1LL << (61 - exponent);
     av_reduce(&a.num, &a.den, (int64_t)(d * den + 0.5), den, max);
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list