summaryrefslogtreecommitdiffstats
path: root/libaf
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-02-17 15:35:44 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-02-17 15:35:44 +0000
commit80ddeccff93c730dd314cd724cfb508eecce4024 (patch)
treefc10133be7d8368fd7521d35b69355ddbcff70f6 /libaf
parent541480d75904d93117eda9c215b4208977a0c156 (diff)
downloadmpv-80ddeccff93c730dd314cd724cfb508eecce4024.tar.bz2
mpv-80ddeccff93c730dd314cd724cfb508eecce4024.tar.xz
confusing mixture of typecasts and casted variable, removed typecasts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14718 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf')
-rw-r--r--libaf/af_format.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libaf/af_format.c b/libaf/af_format.c
index 3261900608..e4e890302e 100644
--- a/libaf/af_format.c
+++ b/libaf/af_format.c
@@ -287,25 +287,25 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
af_data_t *data = arg;
// Make sure this filter isn't redundant
- if(af->data->format == ((af_data_t*)arg)->format &&
- af->data->bps == ((af_data_t*)arg)->bps)
+ if(af->data->format == data->format &&
+ af->data->bps == data->bps)
return AF_DETACH;
// Check for errors in configuraton
- if((AF_OK != check_bps(((af_data_t*)arg)->bps)) ||
- (AF_OK != check_format(((af_data_t*)arg)->format)) ||
+ if((AF_OK != check_bps(data->bps)) ||
+ (AF_OK != check_format(data->format)) ||
(AF_OK != check_bps(af->data->bps)) ||
(AF_OK != check_format(af->data->format)))
return AF_ERROR;
af_msg(AF_MSG_VERBOSE,"[format] Changing sample format from %s to %s\n",
- af_fmt2str(((af_data_t*)arg)->format,buf1,256),
+ af_fmt2str(data->format,buf1,256),
af_fmt2str(af->data->format,buf2,256));
- af->data->rate = ((af_data_t*)arg)->rate;
- af->data->nch = ((af_data_t*)arg)->nch;
+ af->data->rate = data->rate;
+ af->data->nch = data->nch;
af->mul.n = af->data->bps;
- af->mul.d = ((af_data_t*)arg)->bps;
+ af->mul.d = data->bps;
af_frac_cancel(&af->mul);
af->play = play; // set default
@@ -321,7 +321,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
(af->data->format == AF_FORMAT_S16_NE))
{
af_msg(AF_MSG_VERBOSE,"[format] Accelerated %s to %s conversion\n",
- af_fmt2str(((af_data_t*)arg)->format,buf1,256),
+ af_fmt2str(data->format,buf1,256),
af_fmt2str(af->data->format,buf2,256));
af->play = play_float_s16;
}
@@ -329,7 +329,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
(af->data->format == AF_FORMAT_FLOAT_NE))
{
af_msg(AF_MSG_VERBOSE,"[format] Accelerated %s to %s conversion\n",
- af_fmt2str(((af_data_t*)arg)->format,buf1,256),
+ af_fmt2str(data->format,buf1,256),
af_fmt2str(af->data->format,buf2,256));
af->play = play_s16_float;
}