File: volume.c

package info (click to toggle)
mpg321 0.3.2-3.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 784 kB
  • sloc: ansic: 5,371; sh: 767; makefile: 75
file content (66 lines) | stat: -rw-r--r-- 1,938 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
   mpg321 - a fully free clone of mpg123.
   Copyright (C) 2006-2012 Nanakos Chrysostomos
   volume.c: Copyright (C) 2011 Nanakos Chrysostomos
	
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
#ifdef HAVE_ALSA
#include "mpg321.h"
#define ALSA_PCM_NEW_HW_PARAMS_API
#include <alsa/asoundlib.h>

snd_mixer_t *mixer;
snd_mixer_elem_t *mixerelem;
long volume_min,volume_max;


int init_alsa_volume_control(char *name)
{
	char *elemnam;
	snd_mixer_open(&mixer,0);
	snd_mixer_attach(mixer,name);
	snd_mixer_selem_register(mixer,NULL,NULL);
	snd_mixer_load(mixer);

	mixerelem = snd_mixer_first_elem(mixer);

	while (mixerelem) {
	
		elemnam = snd_mixer_selem_get_name(mixerelem);
		/* It should work on most of the systems. Tested on Debian, Fedora, Gentoo, Ubuntu, RedHat, CentOS */
		if (strcasecmp(elemnam, "Master") == 0) {
			snd_mixer_selem_get_playback_volume_range(mixerelem,&volume_min,&volume_max);
			return 0;
		}
		mixerelem = snd_mixer_elem_next(mixerelem);
	}

 return 1;
}

void mpg321_alsa_set_volume(long value)
{
	if(mixerelem)
	      	snd_mixer_selem_set_playback_volume_all(mixerelem,value);
}

long mpg321_alsa_get_volume()
{
	long volume;
	if(mixerelem)
	      	snd_mixer_selem_get_playback_volume(mixerelem,SND_MIXER_SCHN_FRONT_RIGHT,&volume);
	return volume;
}
#endif