.asoundrc 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # ALSA配置文件 - 自动生成
  2. # 用于修复音频设备配置问题
  3. # 默认设备配置
  4. pcm.!default {
  5. type hw
  6. card 0
  7. device 0
  8. }
  9. ctl.!default {
  10. type hw
  11. card 0
  12. }
  13. # 简单PCM设备
  14. pcm.simple {
  15. type plug
  16. slave.pcm "hw:0,0"
  17. }
  18. # 默认PCM设备
  19. pcm.!default {
  20. type plug
  21. slave.pcm "simple"
  22. }
  23. # 禁用不存在的设备以避免ALSA错误
  24. pcm.front {
  25. type null
  26. }
  27. pcm.rear {
  28. type null
  29. }
  30. pcm.center_lfe {
  31. type null
  32. }
  33. pcm.side {
  34. type null
  35. }
  36. pcm.surround21 {
  37. type null
  38. }
  39. pcm.surround40 {
  40. type null
  41. }
  42. pcm.surround41 {
  43. type null
  44. }
  45. pcm.surround50 {
  46. type null
  47. }
  48. pcm.surround51 {
  49. type null
  50. }
  51. pcm.surround71 {
  52. type null
  53. }
  54. pcm.iec958 {
  55. type null
  56. }
  57. pcm.spdif {
  58. type null
  59. }
  60. pcm.hdmi {
  61. type null
  62. }
  63. pcm.modem {
  64. type null
  65. }
  66. pcm.phoneline {
  67. type null
  68. }
  69. # 禁用OSS设备
  70. pcm.dsp {
  71. type null
  72. }
  73. # 禁用USB音频设备错误
  74. pcm.usb_stream {
  75. type null
  76. }