summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmavoice/libavutil/mathematics.h
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2010-08-07 11:46:15 +0000
committerMohamed Tarek <mt@rockbox.org>2010-08-07 11:46:15 +0000
commite3a6610ae7d2dfa5e7a0393938bccec07baf5b75 (patch)
tree7e27a48b8c7ed85612f4c36603a877e93f22de97 /apps/codecs/libwmavoice/libavutil/mathematics.h
parent5f9f6629fa88356e5735f83b09b9fa6623de9640 (diff)
downloadrockbox-e3a6610ae7d2dfa5e7a0393938bccec07baf5b75.tar.gz
rockbox-e3a6610ae7d2dfa5e7a0393938bccec07baf5b75.zip
Mistakenly committed a modification. The files in libwmavoice currently are exact copies of the ffmpeg files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27741 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwmavoice/libavutil/mathematics.h')
-rw-r--r--apps/codecs/libwmavoice/libavutil/mathematics.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libwmavoice/libavutil/mathematics.h b/apps/codecs/libwmavoice/libavutil/mathematics.h
index e07d4fe807..882a516393 100644
--- a/apps/codecs/libwmavoice/libavutil/mathematics.h
+++ b/apps/codecs/libwmavoice/libavutil/mathematics.h
@@ -24,7 +24,7 @@
24#include <stdint.h> 24#include <stdint.h>
25#include <math.h> 25#include <math.h>
26#include "attributes.h" 26#include "attributes.h"
27//#include "rational.h" 27#include "rational.h"
28 28
29#ifndef M_E 29#ifndef M_E
30#define M_E 2.7182818284590452354 /* e */ 30#define M_E 2.7182818284590452354 /* e */
@@ -87,7 +87,7 @@ int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_cons
87/** 87/**
88 * Rescale a 64-bit integer by 2 rational numbers. 88 * Rescale a 64-bit integer by 2 rational numbers.
89 */ 89 */
90//int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const; 90int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const;
91 91
92/** 92/**
93 * Compare 2 timestamps each in its own timebases. 93 * Compare 2 timestamps each in its own timebases.
@@ -95,7 +95,7 @@ int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_cons
95 * is outside the int64_t range when represented in the others timebase. 95 * is outside the int64_t range when represented in the others timebase.
96 * @return -1 if ts_a is before ts_b, 1 if ts_a is after ts_b or 0 if they represent the same position 96 * @return -1 if ts_a is before ts_b, 1 if ts_a is after ts_b or 0 if they represent the same position
97 */ 97 */
98//int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b); 98int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b);
99 99
100/** 100/**
101 * Compare 2 integers modulo mod. 101 * Compare 2 integers modulo mod.