revid/config/config.go Alphabetically ordered type data

This commit is contained in:
Scott 2019-12-18 16:02:20 +10:30
parent f00918a73d
commit b59b342bee
1 changed files with 28 additions and 28 deletions

View File

@ -261,40 +261,40 @@ type Config struct {
// TypeData contains information about all of the variables that
// can be set over the web. It is a psuedo const.
var TypeData = map[string]string{
"Input": "enum:raspivid,rtsp,v4l,file",
"Brightness": "uint",
"Saturation": "int",
"Exposure": "enum:auto,night,nightpreview,backlight,spotlight,sports,snow,beach,verylong,fixedfps,antishake,fireworks",
"AutoWhiteBalance": "enum:off,auto,sun,cloud,shade,tungsten,fluorescent,incandescent,flash,horizon",
"BitDepth": "int",
"Brightness": "uint",
"BurstPeriod": "uint",
"CameraChan": "int",
"CBR": "bool",
"ClipDuration": "uint",
"Exposure": "enum:auto,night,nightpreview,backlight,spotlight,sports,snow,beach,verylong,fixedfps,antishake,fireworks",
"FrameRate": "uint",
"Height": "uint",
"HorizontalFlip": "bool",
"HTTPAddress": "string",
"Input": "enum:raspivid,rtsp,v4l,file",
"InputCodec": "enum:H264,MJPEG",
"InputPath": "string",
"Logging": "enum:Debug,Info,Warning,Error,Fatal",
"MinFrames": "uint",
"MTSRBElementSize": "int",
"MTSRBSize": "int",
"MTSRBWriteTimeout": "int",
"OutputPath": "string",
"Outputs": "string",
"Quantization": "uint",
"Rotation": "uint",
"RTMPRBElementSize": "int",
"RTMPRBSize": "int",
"RTMPRBWriteTimeout": "int",
"RTMPURL": "string",
"RTPAddress": "string",
"BitDepth": "int",
"OutputPath": "string",
"InputPath": "string",
"Height": "uint",
"Width": "uint",
"FrameRate": "uint",
"Rotation": "uint",
"HTTPAddress": "string",
"Quantization": "uint",
"MinFrames": "uint",
"ClipDuration": "uint",
"HorizontalFlip": "bool",
"VerticalFlip": "bool",
"BurstPeriod": "uint",
"Logging": "enum:Debug,Info,Warning,Error,Fatal",
"RTMPRBSize": "int",
"RTMPRBElementSize": "int",
"RTMPRBWriteTimeout": "int",
"MTSRBSize": "int",
"MTSRBElementSize": "int",
"MTSRBWriteTimeout": "int",
"CBR": "bool",
"VBRQuality": "enum:standard,fair,good,great,excellent",
"Saturation": "int",
"VBRBitrate": "int",
"CameraChan": "int",
"VBRQuality": "enum:standard,fair,good,great,excellent",
"VerticalFlip": "bool",
"Width": "uint",
}
// Validation errors.