Skip to content

Commit

Permalink
Merge pull request #561 from dbuezas/fix/another-h265-mediaCode
Browse files Browse the repository at this point in the history
Add 83 (0x53) to h265 mediaCode
  • Loading branch information
AlexxIT authored Aug 4, 2023
2 parents 8778d7c + b7baef0 commit 9c5ae32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dvrip/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func (c *Client) AddVideoTrack(mediaCode byte, payload []byte) {
FmtpLine: h264.GetFmtpLine(payload),
}

case 0x03, 0x13, 0x43:
case 0x03, 0x13, 0x43, 0x53:
codec = &core.Codec{
Name: core.CodecH265,
ClockRate: 90000,
Expand Down

0 comments on commit 9c5ae32

Please # to comment.