From: elinor <elinor.alp@gmail.com>
Date: Mon, 2 Apr 2018 10:49:26 +0000 (+0300)
Subject: Changed comments in opus_test.go
X-Git-Tag: v2.0.0~21^2~7
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=cec5e2771adee237a9b2ce898811f2958115af08;p=go-opus.git

Changed comments in opus_test.go
---

diff --git a/opus_test.go b/opus_test.go
index 99230dd..930ee13 100644
--- a/opus_test.go
+++ b/opus_test.go
@@ -164,11 +164,7 @@ func TestCodecFEC(t *testing.T) {
 		t.Fatalf("Input/Output length mismatch: %d samples in, %d out", len(mono), len(pcm))
 	}
 
-	// This is hard to check programatically, but I plotted the graphs in a
-	// spreadsheet and it looked great. The encoded waves both start out with a
-	// string of zero samples before they pick up, and the G4 is phase shifted
-	// by half a period, but that's all fine for lossy audio encoding.
-
+	// Commented out for the same reason as in TestStereo
 	/*
 		fmt.Printf("in,out\n")
 		for i := range mono {
@@ -250,11 +246,7 @@ func TestCodecFECFloat32(t *testing.T) {
 		t.Fatalf("Input/Output length mismatch: %d samples in, %d out", len(mono), len(pcm))
 	}
 
-	// This is hard to check programatically, but I plotted the graphs in a
-	// spreadsheet and it looked great. The encoded waves both start out with a
-	// string of zero samples before they pick up, and the G4 is phase shifted
-	// by half a period, but that's all fine for lossy audio encoding.
-
+	// Commented out for the same reason as in TestStereo
 	/*
 		fmt.Printf("in,out\n")
 		for i := 0; i < len(mono); i++ {