All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Even more hdspmixer fixes
@ 2011-03-01  9:42 Adrian Knoth
  2011-03-01  9:42 ` [PATCH 1/5] hdspmixer: Fix compiler warnings Adrian Knoth
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Adrian Knoth @ 2011-03-01  9:42 UTC (permalink / raw)
  To: patch; +Cc: Adrian Knoth, alsa-devel

Hi!

Next round of hdspmixer updates. Mostly cosmetics, but also fixing a
segfault with H9652 cards.

Thanks to Craig Bourne for immediate testing, also tested and confirmed
to be working on RayDAT, Multiface and AES32.


Adrian Knoth (5):
  hdspmixer: Fix compiler warnings.
  hdspmixer: Don't use hardcoded number of cards.
  hdspmixer: Make static destination maps extern
  hdspmixer: Lower nesting depth in label assignment
  hdspmixer: Fix labels on H9652

 hdspmixer/pixmaps/Slider1.xpm        |    2 +-
 hdspmixer/pixmaps/Slider2.xpm        |    2 +-
 hdspmixer/pixmaps/Zlmloop2.xpm       |    2 +-
 hdspmixer/pixmaps/Zlmloopm2.xpm      |    2 +-
 hdspmixer/pixmaps/b_blank.xpm        |    2 +-
 hdspmixer/pixmaps/b_card1.xpm        |    2 +-
 hdspmixer/pixmaps/b_card2.xpm        |    2 +-
 hdspmixer/pixmaps/b_card3.xpm        |    2 +-
 hdspmixer/pixmaps/b_mute.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre1.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre2.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre3.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre4.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre5.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre6.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre7.xpm         |    2 +-
 hdspmixer/pixmaps/b_pre8.xpm         |    2 +-
 hdspmixer/pixmaps/b_save.xpm         |    2 +-
 hdspmixer/pixmaps/b_solo.xpm         |    2 +-
 hdspmixer/pixmaps/b_zlm.xpm          |    2 +-
 hdspmixer/pixmaps/buttons.xpm        |    2 +-
 hdspmixer/pixmaps/empty.xpm          |    2 +-
 hdspmixer/pixmaps/empty_2.xpm        |    2 +-
 hdspmixer/pixmaps/empty_linux.xpm    |    2 +-
 hdspmixer/pixmaps/iomixer.xpm        |    2 +-
 hdspmixer/pixmaps/iomixer_r.xpm      |    2 +-
 hdspmixer/pixmaps/level.xpm          |    2 +-
 hdspmixer/pixmaps/matrix_black.xpm   |    2 +-
 hdspmixer/pixmaps/matrix_grey.xpm    |    2 +-
 hdspmixer/pixmaps/matrix_grey_l.xpm  |    2 +-
 hdspmixer/pixmaps/matrix_grey_o.xpm  |    2 +-
 hdspmixer/pixmaps/matrix_grey_ol.xpm |    2 +-
 hdspmixer/pixmaps/matrix_mute.xpm    |    2 +-
 hdspmixer/pixmaps/matrix_white.xpm   |    2 +-
 hdspmixer/pixmaps/matrix_yellow.xpm  |    2 +-
 hdspmixer/pixmaps/monitor.xpm        |    2 +-
 hdspmixer/pixmaps/mute.xpm           |    2 +-
 hdspmixer/pixmaps/output.xpm         |    2 +-
 hdspmixer/pixmaps/output_r.xpm       |    2 +-
 hdspmixer/pixmaps/over.xpm           |    2 +-
 hdspmixer/pixmaps/peak.xpm           |    2 +-
 hdspmixer/pixmaps/solo.xpm           |    2 +-
 hdspmixer/src/HDSPMixerAbout.cxx     |    2 +-
 hdspmixer/src/HDSPMixerAbout.h       |    2 +-
 hdspmixer/src/HDSPMixerAboutText.h   |    2 +-
 hdspmixer/src/HDSPMixerGain.cxx      |    2 +-
 hdspmixer/src/HDSPMixerGain.h        |    2 +-
 hdspmixer/src/HDSPMixerIOMixer.h     |    4 +-
 hdspmixer/src/HDSPMixerOutput.cxx    |  189 ++++++++++--------
 hdspmixer/src/HDSPMixerOutput.h      |    4 +-
 hdspmixer/src/HDSPMixerSelector.cxx  |   38 ++--
 hdspmixer/src/HDSPMixerSelector.h    |    2 +-
 hdspmixer/src/HDSPMixerSetup.cxx     |    2 +-
 hdspmixer/src/HDSPMixerSetup.h       |    2 +-
 hdspmixer/src/Makefile.am            |    1 +
 hdspmixer/src/channelmap.cxx         |  368 ++++++++++++++++++++++++++++++++++
 hdspmixer/src/channelmap.h           |  348 ++++++---------------------------
 hdspmixer/src/pixmaps.h              |   76 ++++----
 58 files changed, 642 insertions(+), 486 deletions(-)
 create mode 100644 hdspmixer/src/channelmap.cxx

-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-03-01 12:56 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-01  9:42 [PATCH 0/5] Even more hdspmixer fixes Adrian Knoth
2011-03-01  9:42 ` [PATCH 1/5] hdspmixer: Fix compiler warnings Adrian Knoth
2011-03-01  9:42 ` [PATCH 2/5] hdspmixer: Don't use hardcoded number of cards Adrian Knoth
2011-03-01  9:42 ` [PATCH 3/5] hdspmixer: Make static destination maps extern Adrian Knoth
2011-03-01  9:42 ` [PATCH 4/5] hdspmixer: Lower nesting depth in label assignment Adrian Knoth
2011-03-01  9:42 ` [PATCH 5/5] hdspmixer: Fix labels on H9652 Adrian Knoth
2011-03-01 12:54 ` [PATCH 0/5] Even more hdspmixer fixes Takashi Iwai
2011-03-01 12:56   ` Adrian Knoth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.