Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Verkamp <daniel@drv.nu>2010-01-23 11:39:50 +0300
committerDaniel Verkamp <daniel@drv.nu>2010-01-23 11:39:50 +0300
commita7e6328cba02f07d5e8e358f473e1cff272175e6 (patch)
treed97ee4efa4932c885f91d50b722960afeffd4712 /libavcodec/wma.c
parent7a086a852cca662ceb54d88383d74dd366914dd6 (diff)
Export wma_critical_freqs as ff_wma_critical_freqs
Originally committed as revision 21391 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wma.c')
-rw-r--r--libavcodec/wma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wma.c b/libavcodec/wma.c
index 3322d0ed6a..65780459aa 100644
--- a/libavcodec/wma.c
+++ b/libavcodec/wma.c
@@ -242,7 +242,7 @@ int ff_wma_init(AVCodecContext *avctx, int flags2)
if (s->version == 1) {
lpos = 0;
for (i = 0; i < 25; i++) {
- a = wma_critical_freqs[i];
+ a = ff_wma_critical_freqs[i];
b = s->sample_rate;
pos = ((block_len * 2 * a) + (b >> 1)) / b;
if (pos > block_len)
@@ -277,7 +277,7 @@ int ff_wma_init(AVCodecContext *avctx, int flags2)
j = 0;
lpos = 0;
for (i = 0; i < 25; i++) {
- a = wma_critical_freqs[i];
+ a = ff_wma_critical_freqs[i];
b = s->sample_rate;
pos = ((block_len * 2 * a) + (b << 1)) / (4 * b);
pos <<= 2;