forked from pool/alsa-utils
This commit is contained in:
parent
13931999dd
commit
548c5a376e
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:306bd7c4436c1c56a0a499317e23b5b58aea3718df17c138ab0df56fd9bf3e0c
|
||||
size 981123
|
3
alsa-utils-1.0.14rc4.tar.bz2
Normal file
3
alsa-utils-1.0.14rc4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0a80a74c9ea0f40c5c0d3f5e6c49c90aea75ab0a7666386635ed7ca731731135
|
||||
size 1013801
|
@ -1,24 +0,0 @@
|
||||
diff -r fe0e2571e09c amixer/amixer.c
|
||||
--- a/amixer/amixer.c Mon Jan 15 14:47:34 2007 +0100
|
||||
+++ b/amixer/amixer.c Thu Apr 05 17:21:33 2007 +0200
|
||||
@@ -534,6 +534,7 @@ static int show_control(const char *spac
|
||||
snd_ctl_elem_id_t *id;
|
||||
snd_ctl_elem_info_t *info;
|
||||
snd_ctl_elem_value_t *control;
|
||||
+ snd_aes_iec958_t iec958;
|
||||
snd_ctl_elem_id_alloca(&id);
|
||||
snd_ctl_elem_info_alloca(&info);
|
||||
snd_ctl_elem_value_alloca(&control);
|
||||
@@ -604,6 +605,12 @@ static int show_control(const char *spac
|
||||
break;
|
||||
case SND_CTL_ELEM_TYPE_BYTES:
|
||||
printf("0x%02x", snd_ctl_elem_value_get_byte(control, idx));
|
||||
+ break;
|
||||
+ case SND_CTL_ELEM_TYPE_IEC958:
|
||||
+ snd_ctl_elem_value_get_iec958(control, &iec958);
|
||||
+ printf("[AES0=0x%02x AES1=0x%02x AES2=0x%02x AES3=0x%02x]",
|
||||
+ iec958.status[0], iec958.status[1],
|
||||
+ iec958.status[2], iec958.status[3]);
|
||||
break;
|
||||
default:
|
||||
printf("?");
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed May 2 12:32:52 CEST 2007 - tiwai@suse.de
|
||||
|
||||
- updated to version 1.0.14rc4
|
||||
including HG fixes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 16 14:15:05 CEST 2007 - tiwai@suse.de
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
Name: alsa-utils
|
||||
BuildRequires: alsa-devel ncurses-devel
|
||||
%define package_version 1.0.14rc2
|
||||
%define package_version 1.0.14rc4
|
||||
License: GNU General Public License (GPL)
|
||||
Group: Productivity/Multimedia/Sound/Players
|
||||
Provides: alsa-conf
|
||||
@ -20,9 +20,9 @@ Requires: dialog pciutils
|
||||
Autoreqprov: on
|
||||
Summary: Advanced Linux Sound Architecture Utilities
|
||||
Version: 1.0.13
|
||||
Release: 1
|
||||
Release: 5
|
||||
Source: ftp://ftp.alsa-project.org/pub/util/alsa-utils-%{package_version}.tar.bz2
|
||||
Patch: alsa-utils-hg-fixes.diff
|
||||
# Patch: alsa-utils-hg-fixes.diff
|
||||
URL: http://www.alsa-project.org/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
@ -39,7 +39,7 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -n %{name}-%{package_version}
|
||||
%patch -p1
|
||||
# %patch -p1
|
||||
mv alsamixer/README alsamixer/README-alsamixer
|
||||
%{?suse_update_config:%{suse_update_config -f .}}
|
||||
|
||||
@ -69,5 +69,8 @@ make DESTDIR=$RPM_BUILD_ROOT install
|
||||
%{_datadir}/locale/*/*/*
|
||||
|
||||
%changelog
|
||||
* Wed May 02 2007 - tiwai@suse.de
|
||||
- updated to version 1.0.14rc4
|
||||
including HG fixes
|
||||
* Mon Apr 16 2007 - tiwai@suse.de
|
||||
- split from alsa package
|
||||
|
Loading…
Reference in New Issue
Block a user