summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound/pcm/feeder.c
diff options
context:
space:
mode:
authorcg <cg@FreeBSD.org>2002-01-23 05:10:56 +0000
committercg <cg@FreeBSD.org>2002-01-23 05:10:56 +0000
commit3b2958fa78f7a813524c7610f56e82b698c8b2a1 (patch)
treef21778dd0d0ab7022262f33cab4f42bea09c5e9d /sys/dev/sound/pcm/feeder.c
parent29512efb54d698fea8add4100063a66dceb1633d (diff)
downloadFreeBSD-src-3b2958fa78f7a813524c7610f56e82b698c8b2a1.zip
FreeBSD-src-3b2958fa78f7a813524c7610f56e82b698c8b2a1.tar.gz
make the feederchain builder work for recording. this has not been tested
extensively as none of my testboxes have speakers or an audio source at present, but the chains built look correct and reading /dev/audio (ulaw, translated from signed 16 bit little-endian) gives values within the expected range for silence.
Diffstat (limited to 'sys/dev/sound/pcm/feeder.c')
-rw-r--r--sys/dev/sound/pcm/feeder.c61
1 files changed, 49 insertions, 12 deletions
diff --git a/sys/dev/sound/pcm/feeder.c b/sys/dev/sound/pcm/feeder.c
index f361ada..5f5da6b 100644
--- a/sys/dev/sound/pcm/feeder.c
+++ b/sys/dev/sound/pcm/feeder.c
@@ -267,25 +267,60 @@ no:
u_int32_t
chn_fmtchain(struct pcm_channel *c, u_int32_t *to)
{
- struct pcm_feeder *try, *stop;
- int max;
+ struct pcm_feeder *try, *del, *stop;
+ u_int32_t tmpfrom[2], best, *from;
+ int i, max, bestmax;
+
+ KASSERT(c != NULL, ("c == NULL"));
+ KASSERT(c->feeder != NULL, ("c->feeder == NULL"));
+ KASSERT(to != NULL, ("to == NULL"));
+ KASSERT(to[0] != 0, ("to[0] == 0"));
- /* we're broken for recording currently, reject attempts */
- if (c->direction == PCMDIR_REC)
- return EINVAL;
stop = c->feeder;
- try = NULL;
- max = 0;
- while (try == NULL && max < 8) {
- try = feeder_fmtchain(to, c->feeder, stop, max);
- max++;
+
+ if (c->direction == PCMDIR_REC && c->feeder->desc->type == FEEDER_ROOT) {
+ from = chn_getcaps(c)->fmtlist;
+ } else {
+ tmpfrom[0] = c->feeder->desc->out;
+ tmpfrom[1] = 0;
+ from = tmpfrom;
}
+
+ i = 0;
+ best = 0;
+ bestmax = 100;
+ while (from[i] != 0) {
+ c->feeder->desc->out = from[i];
+ try = NULL;
+ max = 0;
+ while (try == NULL && max < 8) {
+ try = feeder_fmtchain(to, c->feeder, stop, max);
+ if (try == NULL)
+ max++;
+ }
+ if (try != NULL && max < bestmax) {
+ bestmax = max;
+ best = from[i];
+ }
+ while (try != NULL && try != stop) {
+ del = try;
+ try = try->source;
+ feeder_destroy(del);
+ }
+ i++;
+ }
+ if (best == 0)
+ return 0;
+
+ c->feeder->desc->out = best;
+ try = feeder_fmtchain(to, c->feeder, stop, bestmax);
if (try == NULL)
return 0;
+
c->feeder = try;
c->align = 0;
#ifdef FEEDER_DEBUG
- printf("chain: ");
+ printf("\n\nchain: ");
#endif
while (try && (try != stop)) {
#ifdef FEEDER_DEBUG
@@ -293,6 +328,8 @@ chn_fmtchain(struct pcm_channel *c, u_int32_t *to)
if (try->source)
printf(" -> ");
#endif
+ if (try->source)
+ try->source->parent = try;
if (try->align > 0)
c->align += try->align;
else if (try->align < 0 && c->align < -try->align)
@@ -302,7 +339,7 @@ chn_fmtchain(struct pcm_channel *c, u_int32_t *to)
#ifdef FEEDER_DEBUG
printf("%s [%d]\n", try->class->name, try->desc->idx);
#endif
- return c->feeder->desc->out;
+ return (c->direction == PCMDIR_REC)? best : c->feeder->desc->out;
}
/*****************************************************************************/
OpenPOWER on IntegriCloud