Exemple #1
0
 private void EncoderErrorLog(EncoderErrorCode error, EncoderStatus?encoderStatus)
 {
     Debug.LogWarningFormat(LOG_FORMAT, "Error Occured of type: " + error + (encoderStatus != null ? " [Error code: " + encoderStatus + " ]" : ""));
 }
Exemple #2
0
 private void AudioErrorLog(EncoderErrorCode error)
 {
     Debug.LogWarning("AudioCapture Error Occured of type: " + error);
 }
Exemple #3
0
 private void EncoderErrorLog(EncoderErrorCode error, EncoderStatus?encoderStatus)
 {
     Debug.LogWarningFormat(LOG_FORMAT,
                            "FFmpeg Encoder Error Occured of type: " + error + " [Error code: " + encoderStatus + " ] \n" +
                            "Please check EncoderLog.txt log file for more information");
 }
Exemple #4
0
 private void MuxerErrorLog(EncoderErrorCode error)
 {
     Debug.LogWarningFormat(LOG_FORMAT, "Error Occured of type: " + error);
 }