diff --git a/revid/config/config.go b/revid/config/config.go index 22dd3543..a8f43463 100644 --- a/revid/config/config.go +++ b/revid/config/config.go @@ -169,13 +169,13 @@ type Config struct { // Input defines the input data source. // // Valid values are defined by enums: - // Raspivid: + // InputRaspivid: // Read data from a Raspberry Pi Camera. - // V4l: + // InputV4l: // Read from webcam. - // File: + // InputFile: // Location must be specified in InputPath field. - // RTSP: + // InputRTSP: // CameraIP should also be defined. Input uint8 @@ -187,16 +187,16 @@ type Config struct { // Outputs define the outputs we wish to output data too. // // Valid outputs are defined by enums: - // File: + // OutputFile: // Location must be defined by the OutputPath field. MPEG-TS packetization // is used. - // HTTP: + // OutputHTTP: // Destination is defined by the sh field located in /etc/netsender.conf. // MPEGT-TS packetization is used. - // RTMP: + // OutputRTMP: // Destination URL must be defined in the RtmpUrl field. FLV packetization // is used. - // RTP: + // OutputRTP: // Destination is defined by RtpAddr field, otherwise it will default to // localhost:6970. MPEGT-TS packetization is used. Outputs []uint8