mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Added an 'AUDIO_INPUTS.LABEL' field to the database. * Added an 'AUDIO_OUTPUTS.LABEL' field to the database. * Incremented the database version to 350. * Added 'RDAudioPort::inputPortLabel()', 'RDAudioPort::setInputPortLabel()' 'RDAudioPort::outputPortLabel()' and 'RDAudioPort::setOutputPortLabel()' methods. * Added 'Label' fields to the 'Input Port' and 'Output Port' sections of the 'Edit Audio Ports' dialog in rdadmin(1). * Added code to rdairplay(1) to use port labels on audio meters. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			772 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			772 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
                  AUDIO_INPUTS Table Layout for Rivendell
 | 
						|
 | 
						|
The AUDIO_PORTS table holds data concerning which configuration of the 
 | 
						|
physical audio inputs.
 | 
						|
 | 
						|
FIELD NAME           TYPE              REMARKS
 | 
						|
---------------------------------------------------------------
 | 
						|
ID                   int(10) unsigned  Primary key, auto increment
 | 
						|
STATION_NAME	     varchar(64)
 | 
						|
CARD_NUMBER	     int(11) signed
 | 
						|
PORT_NUMBER          int(11) signed
 | 
						|
LABEL                varchar(4)
 | 
						|
TYPE                 int(11) signed    0 = Analog, 1 = AES/EBU,
 | 
						|
                                       2 = SP/DIFF
 | 
						|
LEVEL                int(11) signed    Gain offset, in 1/100 dB
 | 
						|
MODE                 int(11) signed    0 = Normal, 1 = Swap,
 | 
						|
                                       2 = Left Only, 3 = Right Only
 |