Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Oct 27, 2023
1 parent 967903f commit bcfc382
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/packets/RTCP/TccPacket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ export class TccPacket extends FeedbackPacket
{
return {

Check failure on line 125 in src/packets/RTCP/TccPacket.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-22.04, 16)

Type '{ baseSequenceNumber: number; packetStatusCount: number; referenceTime: any; feedbackPacketCount: any; byteLength: number; padding: number; packetType: RtcpPacketType; count: number; messageType: RtpFeedbackMessageType | PsFeedbackMessageType; senderSsrc: number; mediaSsrc: number; }' is not assignable to type 'TccPacketDump'.

Check failure on line 125 in src/packets/RTCP/TccPacket.ts

View workflow job for this annotation

GitHub Actions / ci (macos-12, 18)

Type '{ baseSequenceNumber: number; packetStatusCount: number; referenceTime: any; feedbackPacketCount: any; byteLength: number; padding: number; packetType: RtcpPacketType; count: number; messageType: RtpFeedbackMessageType | PsFeedbackMessageType; senderSsrc: number; mediaSsrc: number; }' is not assignable to type 'TccPacketDump'.
...super.dump(),
baseSequenceNumber : this.getBaseSequenceNumber();
packetStatusCount : this.getPacketStatusCount();
referenceTime : this.getReferenceTime();
feedbackPacketCount : this.getFeedbackPacketCount();
baseSequenceNumber : this.getBaseSequenceNumber(),
packetStatusCount : this.getPacketStatusCount(),
referenceTime : this.getReferenceTime(),

Check failure on line 129 in src/packets/RTCP/TccPacket.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-22.04, 16)

Property 'getReferenceTime' does not exist on type 'TccPacket'.

Check failure on line 129 in src/packets/RTCP/TccPacket.ts

View workflow job for this annotation

GitHub Actions / ci (macos-12, 18)

Property 'getReferenceTime' does not exist on type 'TccPacket'.
feedbackPacketCount : this.getFeedbackPacketCount()

Check failure on line 130 in src/packets/RTCP/TccPacket.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-22.04, 16)

Property 'getFeedbackPacketCount' does not exist on type 'TccPacket'.

Check failure on line 130 in src/packets/RTCP/TccPacket.ts

View workflow job for this annotation

GitHub Actions / ci (macos-12, 18)

Property 'getFeedbackPacketCount' does not exist on type 'TccPacket'.
};
}

Expand Down

0 comments on commit bcfc382

Please sign in to comment.