diff options
author | Andy Wingo <wingo@pobox.com> | 2002-03-29 00:23:16 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-03-29 00:23:16 +0000 |
commit | afb7bcab51f43db1ce9147a6343ecfd369ba36b9 (patch) | |
tree | 9a00578aefd44bf827c0fb4d8d31a2e96a394707 /sys/oss | |
parent | 983feed7a10aa11b6f761e25412860358c6b92eb (diff) |
some s/KHz/Hz/ fixes in osssrc consistency-with-the-rest-of-gst adjustments
Original commit message from CVS:
* some s/KHz/Hz/ fixes in osssrc
* added dxr3 plugin from rehan khwaja <rehankhwaja@yahoo.com>, with some
consistency-with-the-rest-of-gst adjustments
Diffstat (limited to 'sys/oss')
-rw-r--r-- | sys/oss/gstosssrc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/oss/gstosssrc.c b/sys/oss/gstosssrc.c index b499c750..4b8da32d 100644 --- a/sys/oss/gstosssrc.c +++ b/sys/oss/gstosssrc.c @@ -384,7 +384,7 @@ gst_osssrc_sync_parms (GstOssSrc *osssrc) audio_buf_info ispace; gint frag; /* remember : ioctl on samplerate returns the sample rate the card - * is actually set to ! Setting it to 44101 KHz could cause it to + * is actually set to ! Setting it to 44101 Hz could cause it to * be set to 44101, for example */ @@ -409,7 +409,7 @@ gst_osssrc_sync_parms (GstOssSrc *osssrc) ioctl(osssrc->fd, SNDCTL_DSP_GETISPACE, &ispace); ioctl(osssrc->fd, SNDCTL_DSP_GETBLKSIZE, &frag); - g_print("setting sound card to %dKHz %d bit %s (%d bytes buffer, %d fragment)\n", + g_print("setting sound card to %dHz %d bit %s (%d bytes buffer, %d fragment)\n", osssrc->frequency, osssrc->format, (osssrc->channels == 2) ? "stereo" : "mono", ispace.bytes, frag); |