summaryrefslogtreecommitdiffstats
path: root/libaf
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-19 15:44:09 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-19 15:44:09 +0000
commit15649d0f007a93eb2aa612ca276939f65be93e42 (patch)
tree8ef38283d4bcd8f64480f1a191e50a227dbbbea8 /libaf
parent0dddfa2285cdb8967d05388cf9951b9087de256e (diff)
downloadmpv-15649d0f007a93eb2aa612ca276939f65be93e42.tar.bz2
mpv-15649d0f007a93eb2aa612ca276939f65be93e42.tar.xz
Fix loads of typos
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24581 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf')
-rw-r--r--libaf/af_format.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/libaf/af_format.c b/libaf/af_format.c
index 1c4e8bfad8..c042c6acce 100644
--- a/libaf/af_format.c
+++ b/libaf/af_format.c
@@ -28,14 +28,14 @@ long int lrintf(float);
/* Functions used by play to convert the input audio to the correct
format */
-/* The below includes retrives functions for converting to and from
+/* The below includes retrieves functions for converting to and from
ulaw and alaw */
#include "af_format_ulaw.c"
#include "af_format_alaw.c"
-// Switch endianess
+// Switch endianness
static void endian(void* in, void* out, int len, int bps);
-// From singed to unsigned and the other way
+// From signed to unsigned and the other way
static void si2us(void* data, int len, int bps);
// Change the number of bits per sample
static void change_bps(void* in, void* out, int len, int inbps, int outbps);
@@ -110,11 +110,11 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
af->play = play; // set default
- // look whether only endianess differences are there
+ // look whether only endianness differences are there
if ((af->data->format & ~AF_FORMAT_END_MASK) ==
(data->format & ~AF_FORMAT_END_MASK))
{
- af_msg(AF_MSG_VERBOSE,"[format] Accelerated endianess conversion only\n");
+ af_msg(AF_MSG_VERBOSE,"[format] Accelerated endianness conversion only\n");
af->play = play_swapendian;
}
if ((data->format == AF_FORMAT_FLOAT_NE) &&
@@ -146,7 +146,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
return AF_OK;
}
case AF_CONTROL_FORMAT_FMT | AF_CONTROL_SET:{
- // Check for errors in configuraton
+ // Check for errors in configuration
if(AF_OK != check_format(*(int*)arg))
return AF_ERROR;
@@ -172,7 +172,7 @@ static af_data_t* play_swapendian(struct af_instance_s* af, af_data_t* data)
{
af_data_t* l = af->data; // Local data
af_data_t* c = data; // Current working data
- int len = c->len/c->bps; // Lenght in samples of current audio block
+ int len = c->len/c->bps; // Length in samples of current audio block
if(AF_OK != RESIZE_LOCAL_BUFFER(af,data))
return NULL;
@@ -189,7 +189,7 @@ static af_data_t* play_float_s16(struct af_instance_s* af, af_data_t* data)
{
af_data_t* l = af->data; // Local data
af_data_t* c = data; // Current working data
- int len = c->len/4; // Lenght in samples of current audio block
+ int len = c->len/4; // Length in samples of current audio block
if(AF_OK != RESIZE_LOCAL_BUFFER(af,data))
return NULL;
@@ -208,7 +208,7 @@ static af_data_t* play_s16_float(struct af_instance_s* af, af_data_t* data)
{
af_data_t* l = af->data; // Local data
af_data_t* c = data; // Current working data
- int len = c->len/2; // Lenght in samples of current audio block
+ int len = c->len/2; // Length in samples of current audio block
if(AF_OK != RESIZE_LOCAL_BUFFER(af,data))
return NULL;
@@ -228,7 +228,7 @@ static af_data_t* play(struct af_instance_s* af, af_data_t* data)
{
af_data_t* l = af->data; // Local data
af_data_t* c = data; // Current working data
- int len = c->len/c->bps; // Lenght in samples of current audio block
+ int len = c->len/c->bps; // Length in samples of current audio block
if(AF_OK != RESIZE_LOCAL_BUFFER(af,data))
return NULL;
@@ -292,7 +292,7 @@ static af_data_t* play(struct af_instance_s* af, af_data_t* data)
}
}
- // Switch from cpu native endian to the correct endianess
+ // Switch from cpu native endian to the correct endianness
if((l->format&AF_FORMAT_END_MASK)!=AF_FORMAT_NE)
endian(l->audio,l->audio,len,l->bps);