2020-08-11 Fred Gleason <fredg@paravelsystems.com>

* Dropped the 'ENCODERS', 'ENCODER_BITRATES', 'ENCODER_BITRATES'
	and 'ENCODER_CHANNELS' tables from the database.
	* Incremented the database version to 331.
	* Removed the 'RDSettings::customCommandLine()',
	'RDSettings::setCustomCommandLine()' and
	' RDSettings::resolvedCustomCommandLine()' methods.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2020-08-11 15:53:33 -04:00
parent 972b9c164e
commit 8ada6c0812
15 changed files with 91 additions and 189 deletions

View File

@@ -40,10 +40,6 @@ EXTRA_DIST = audio_cards.txt\
dropbox_paths.txt\
dropbox_sched_codes.txt\
elr_lines.txt\
encoder_bitrates.txt\
encoder_channels.txt\
encoder_samplerates.txt\
encoders.txt\
event_lines.txt\
event_perms.txt\
events.txt\

View File

@@ -1,11 +0,0 @@
ENCODER_BITRATES Table Layout for Rivendell
The ENCODER_BITRATES table holds data concerning the allowed bit rates
in bits/sec for each custom encoder format on the system.
Following is the layout of a record in the ENCODER_BITRATES table:
FIELD NAME TYPE REMARKS
-------------------------------------------------------------------
ID int(11)
ENCODER_ID int(11) From ENCODERS.ID
BITRATE int(11)

View File

@@ -1,11 +0,0 @@
ENCODER_CHANNELS Table Layout for Rivendell
The ENCODER_CHANNELS table holds data concerning the allowed channel
count for each custom encoder format on the system.
Following is the layout of a record in the ENCODER_CHANNELS table:
FIELD NAME TYPE REMARKS
-------------------------------------------------------------------
ID int(11)
ENCODER_ID int(11) From ENCODERS.ID
CHANNELS int(11)

View File

@@ -1,11 +0,0 @@
ENCODER_SAMPLERATES Table Layout for Rivendell
The ENCODER_SAMPLERATES table holds data concerning the allowed
sample rates in samples/sec for each custom encoder format on the system.
Following is the layout of a record in the ENCODER_SAMPLERATES table:
FIELD NAME TYPE REMARKS
-------------------------------------------------------------------
ID int(11)
ENCODER_ID int(11) From ENCODERS.ID
SAMPLERATE int(11)

View File

@@ -1,12 +0,0 @@
ENCODERS Table Layout for Rivendell
The EVENTS table holds data concerning each custom encoder format
on the system.
FIELD NAME TYPE REMARKS
-------------------------------------------------------------------
ID int(11)
NAME varchar(32)
STATION_NAME varchar(64) From STATIONS.NAME
COMMAND_LINE varchar(255)
DEFAULT_EXTENSION varchar(16)