Rename Ssrc -> SSRC

This capitalization is consistent with other uses in the project,
and matches the Go convention of capitalizing initialisms.

https://github.com/golang/go/wiki/CodeReviewComments#initialisms

Relates to #417
This commit is contained in:
Max Hawkins
2019-02-17 16:37:11 -08:00
committed by Sean DuBois
parent 632b16b852
commit c6592e6c4b
8 changed files with 20 additions and 20 deletions

View File

@@ -41,7 +41,7 @@ func main() {
go func() {
ticker := time.NewTicker(time.Second * 3)
for range ticker.C {
err := peerConnection.SendRTCP(&rtcp.PictureLossIndication{MediaSSRC: track.Ssrc})
err := peerConnection.SendRTCP(&rtcp.PictureLossIndication{MediaSSRC: track.SSRC})
if err != nil {
fmt.Println(err)
}