summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-04-23 19:42:58 +0000
committerLennart Poettering <lennart@poettering.net>2006-04-23 19:42:58 +0000
commitb4ac6d05d21742af2558acbdfebc83805750356f (patch)
tree220ac0d279cfd5f0fce7802793fa796a907307bc
parent834506318d70d2562cf28539ab922388001d4247 (diff)
allow recieving of invalid channel maps, volumes and sample specs. This makes handling of uninitialized data better, e.g. when sending info about lazy-load sample chache entries, where the channel mapping and sample spec is still unknown.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@782 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/polypcore/tagstruct.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/polypcore/tagstruct.c b/src/polypcore/tagstruct.c
index 761f6d3d..86b8368a 100644
--- a/src/polypcore/tagstruct.c
+++ b/src/polypcore/tagstruct.c
@@ -311,9 +311,6 @@ int pa_tagstruct_get_sample_spec(pa_tagstruct *t, pa_sample_spec *ss) {
memcpy(&ss->rate, t->data+t->rindex+3, 4);
ss->rate = ntohl(ss->rate);
- if (!pa_sample_spec_valid(ss))
- return -1;
-
t->rindex += 7;
return 0;
}
@@ -379,7 +376,6 @@ int pa_tagstruct_get_timeval(pa_tagstruct*t, struct timeval *tv) {
tv->tv_usec = ntohl(tv->tv_usec);
t->rindex += 9;
return 0;
-
}
int pa_tagstruct_get_usec(pa_tagstruct*t, pa_usec_t *u) {
@@ -457,9 +453,6 @@ int pa_tagstruct_get_channel_map(pa_tagstruct *t, pa_channel_map *map) {
for (i = 0; i < map->channels; i ++)
map->map[i] = (int8_t) t->data[t->rindex + 2 + i];
- if (!pa_channel_map_valid(map))
- return -1;
-
t->rindex += 2 + map->channels;
return 0;
}
@@ -488,9 +481,6 @@ int pa_tagstruct_get_cvolume(pa_tagstruct *t, pa_cvolume *cvolume) {
cvolume->values[i] = (pa_volume_t) ntohl(vol);
}
- if (!pa_cvolume_valid(cvolume))
- return -1;
-
t->rindex += 2 + cvolume->channels * sizeof(pa_volume_t);
return 0;
}