From: "Joël Bourquard" <numlock@freesurf.ch>
To: Stas Sergeev <stssppnn@yahoo.com>
Cc: linux-msdos@vger.kernel.org
Subject: Re: Hi, does someone use i810 onboard sound ?
Date: Sun, 05 Oct 2003 13:08:49 -0100 [thread overview]
Message-ID: <1065362927.4943.18.camel@localhost.localdomain> (raw)
In-Reply-To: <3F7F5269.1090407@yahoo.com>
Hi,
Thanks for the patch and the help !
I applied it, made a 'make clean' then tried various values between
[100..22050], but unfortunately I heard no improvement from the new
compiles.
Here's current status for all sound programs I have:
- Gobliiins (= Goblins 1): distorted
- Ween: distorted
- Stunts: no sound in Soundblaster mode
- Inca: double-speed, perhaps distorted
- dosamp: ok in stereo
About a workaround for the stereo issue, I didn't see it as
"post-processing". Perhaps a simple option to prevent opening /dev/dsp
in mono could be useful for people with buggy drivers (ie: i810) ?
Best Regards,
Joël
On Sat, 2003-10-04 at 22:06, Stas Sergeev wrote:
> Hello.
>
> Joлl Bourquard wrote:
> > Ok, I've played with the value of 6000 and tried various possibilities
> > up to 120000, but the sound doesn't improve.
> That's too much. 22050 is the maximum
> reasonable value for that, but in
> practice you'll in most cases need to
> lower the freq from 6000, not raise it.
>
> > There is something fishy, it seems. The sound is composed of a lot of
> > little "clicks". When a high sampling value (~60000) is used, it sounds
> > like the clicks become shorter.
> Well, after all there might be a bug
> somewhere. Try the attached patch and
> see if it helps, then try tuning the
> value again.
>
> ______________________________________________________________________
> --- src/arch/linux/dosext/sound/linux_sound.c Sat Jul 5 23:14:10 2003
> +++ src/arch/linux/dosext/sound/linux_sound.c Sun Oct 5 02:43:44 2003
> @@ -261,6 +261,7 @@
> static int sound_frag = 0x0200007;
> static uint8_t buffer[BUF_LEN];
> static size_t buffer_count = 0;
> + int result;
>
> buffer[buffer_count] = value;
> if (buffer_count < BUF_LEN - 1)
> @@ -274,20 +275,25 @@
> {
> S_printf ("SB:[Linux] Initialising Direct DAC write (%u bits)\n", bits);
> if (linux_sb_dma_is_empty() == DMA_HANDLER_OK) {
> - bits_per_samp = bits;
> + result = 0;
> if (ioctl (dsp_fd, SNDCTL_DSP_SAMPLESIZE, &bits)<0) {
> S_printf ("SB:[Linux] Warning: ioctl() (SAMPLESIZE) failed: %s\n", strerror(errno));
> - bits_per_samp = 0;
> + result = -1;
> }
> if (linux_set_OSS_fragsize(sound_frag) == DMA_HANDLER_NOT_OK) {
> S_printf ("SB:[Linux] Warning: failed to change sound fragment size.\n");
> - bits_per_samp = 0;
> + result = -1;
> }
> linux_sb_set_speed(DIRECT_WRITE_FREQ, 0, 0, 0);
> /* reset DMA settings */
> sample_rate = 0;
> num_channels = 0;
> oss_block_size = 0;
> + if (result == -1) {
> + bits_per_samp = 0;
> + return;
> + }
> + bits_per_samp = bits;
> }
> else {
> S_printf("SB:[Linux] Sorry, can't change OSS settings now...\n");
-
To unsubscribe from this list: send the line "unsubscribe linux-msdos" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2003-10-05 14:08 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-10-04 23:06 Hi, does someone use i810 onboard sound ? Stas Sergeev
2003-10-05 14:08 ` Joël Bourquard [this message]
-- strict thread matches above, loose matches on Subject: below --
2003-10-06 18:48 Stas Sergeev
2003-10-05 13:01 Stas Sergeev
2003-10-05 23:23 ` Joël Bourquard
2003-10-04 23:58 Joël Bourquard
2003-10-04 22:11 Stas Sergeev
2003-10-05 0:28 ` Ryan Underwood
2003-10-04 21:31 Stas Sergeev
2003-10-05 1:00 ` Joël Bourquard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1065362927.4943.18.camel@localhost.localdomain \
--to=numlock@freesurf.ch \
--cc=linux-msdos@vger.kernel.org \
--cc=stssppnn@yahoo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox