copy.c 2.8 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 <linux/time.h>
  22. #include <sound/core.h>
  23. #include <sound/pcm.h>
  24. #include "pcm_plugin.h"
  25. static snd_pcm_sframes_t copy_transfer(struct snd_pcm_plugin *plugin,
  26. const struct snd_pcm_plugin_channel *src_channels,
  27. struct snd_pcm_plugin_channel *dst_channels,
  28. snd_pcm_uframes_t frames)
  29. {
  30. unsigned int channel;
  31. unsigned int nchannels;
  32. if (snd_BUG_ON(!plugin || !src_channels || !dst_channels))
  33. return -ENXIO;
  34. if (frames == 0)
  35. return 0;
  36. nchannels = plugin->src_format.channels;
  37. for (channel = 0; channel < nchannels; channel++) {
  38. if (snd_BUG_ON(src_channels->area.first % 8 ||
  39. src_channels->area.step % 8))
  40. return -ENXIO;
  41. if (snd_BUG_ON(dst_channels->area.first % 8 ||
  42. dst_channels->area.step % 8))
  43. return -ENXIO;
  44. if (!src_channels->enabled) {
  45. if (dst_channels->wanted)
  46. snd_pcm_area_silence(&dst_channels->area, 0, frames, plugin->dst_format.format);
  47. dst_channels->enabled = 0;
  48. continue;
  49. }
  50. dst_channels->enabled = 1;
  51. snd_pcm_area_copy(&src_channels->area, 0, &dst_channels->area, 0, frames, plugin->src_format.format);
  52. src_channels++;
  53. dst_channels++;
  54. }
  55. return frames;
  56. }
  57. int snd_pcm_plugin_build_copy(struct snd_pcm_substream *plug,
  58. struct snd_pcm_plugin_format *src_format,
  59. struct snd_pcm_plugin_format *dst_format,
  60. struct snd_pcm_plugin **r_plugin)
  61. {
  62. int err;
  63. struct snd_pcm_plugin *plugin;
  64. int width;
  65. if (snd_BUG_ON(!r_plugin))
  66. return -ENXIO;
  67. *r_plugin = NULL;
  68. if (snd_BUG_ON(src_format->format != dst_format->format))
  69. return -ENXIO;
  70. if (snd_BUG_ON(src_format->rate != dst_format->rate))
  71. return -ENXIO;
  72. if (snd_BUG_ON(src_format->channels != dst_format->channels))
  73. return -ENXIO;
  74. width = snd_pcm_format_physical_width(src_format->format);
  75. if (snd_BUG_ON(width <= 0))
  76. return -ENXIO;
  77. err = snd_pcm_plugin_build(plug, "copy", src_format, dst_format,
  78. 0, &plugin);
  79. if (err < 0)
  80. return err;
  81. plugin->transfer = copy_transfer;
  82. *r_plugin = plugin;
  83. return 0;
  84. }