copy.c 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Linear conversion Plug-In
  3. * Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
  4. *
  5. *
  6. * This library is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU Library General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Library General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Library General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. */
  21. #include <sound/driver.h>
  22. #ifdef CONFIG_SND_PCM_OSS_PLUGINS
  23. #include <linux/time.h>
  24. #include <sound/core.h>
  25. #include <sound/pcm.h>
  26. #include "pcm_plugin.h"
  27. static snd_pcm_sframes_t copy_transfer(struct snd_pcm_plugin *plugin,
  28. const struct snd_pcm_plugin_channel *src_channels,
  29. struct snd_pcm_plugin_channel *dst_channels,
  30. snd_pcm_uframes_t frames)
  31. {
  32. unsigned int channel;
  33. unsigned int nchannels;
  34. snd_assert(plugin != NULL && src_channels != NULL && dst_channels != NULL, return -ENXIO);
  35. if (frames == 0)
  36. return 0;
  37. nchannels = plugin->src_format.channels;
  38. for (channel = 0; channel < nchannels; channel++) {
  39. snd_assert(src_channels->area.first % 8 == 0 &&
  40. src_channels->area.step % 8 == 0,
  41. return -ENXIO);
  42. snd_assert(dst_channels->area.first % 8 == 0 &&
  43. dst_channels->area.step % 8 == 0,
  44. return -ENXIO);
  45. if (!src_channels->enabled) {
  46. if (dst_channels->wanted)
  47. snd_pcm_area_silence(&dst_channels->area, 0, frames, plugin->dst_format.format);
  48. dst_channels->enabled = 0;
  49. continue;
  50. }
  51. dst_channels->enabled = 1;
  52. snd_pcm_area_copy(&src_channels->area, 0, &dst_channels->area, 0, frames, plugin->src_format.format);
  53. src_channels++;
  54. dst_channels++;
  55. }
  56. return frames;
  57. }
  58. int snd_pcm_plugin_build_copy(struct snd_pcm_substream *plug,
  59. struct snd_pcm_plugin_format *src_format,
  60. struct snd_pcm_plugin_format *dst_format,
  61. struct snd_pcm_plugin **r_plugin)
  62. {
  63. int err;
  64. struct snd_pcm_plugin *plugin;
  65. int width;
  66. snd_assert(r_plugin != NULL, return -ENXIO);
  67. *r_plugin = NULL;
  68. snd_assert(src_format->format == dst_format->format, return -ENXIO);
  69. snd_assert(src_format->rate == dst_format->rate, return -ENXIO);
  70. snd_assert(src_format->channels == dst_format->channels, return -ENXIO);
  71. width = snd_pcm_format_physical_width(src_format->format);
  72. snd_assert(width > 0, return -ENXIO);
  73. err = snd_pcm_plugin_build(plug, "copy", src_format, dst_format,
  74. 0, &plugin);
  75. if (err < 0)
  76. return err;
  77. plugin->transfer = copy_transfer;
  78. *r_plugin = plugin;
  79. return 0;
  80. }
  81. #endif