Browse Source

use a standard value for the control attribute

pull/4/head
aler9 5 years ago
parent
commit
87a41685e8
  1. 2
      server_client.go

2
server_client.go

@ -59,7 +59,7 @@ func sdpFilter(msgIn *sdp.Message, byteIn []byte) (*sdp.Message, []byte) { @@ -59,7 +59,7 @@ func sdpFilter(msgIn *sdp.Message, byteIn []byte) (*sdp.Message, []byte) {
// to the stream path in SETUP
attributes = append(attributes, sdp.Attribute{
Key: "control",
Value: "streamid=" + strconv.FormatInt(int64(i), 10),
Value: "trackID=" + strconv.FormatInt(int64(i), 10),
})
msgOut.Medias = append(msgOut.Medias, sdp.Media{

Loading…
Cancel
Save