mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2025-08-17 17:05:50 +00:00
Remove unused parameter
This commit is contained in:
parent
437645da13
commit
a29fb05f6c
@ -313,8 +313,7 @@ static int isFirstPacket(char flags) {
|
||||
}
|
||||
|
||||
/* Adds a fragment directly to the queue */
|
||||
static void processRtpPayloadFast(PNV_VIDEO_PACKET videoPacket, BUFFER_DESC location) {
|
||||
// FIXME not using videoPacket parameter??
|
||||
static void processRtpPayloadFast(BUFFER_DESC location) {
|
||||
queueFragment(location.data, location.offset, location.length);
|
||||
}
|
||||
|
||||
@ -439,7 +438,7 @@ void processRtpPayload(PNV_VIDEO_PACKET videoPacket, int length) {
|
||||
}
|
||||
else
|
||||
{
|
||||
processRtpPayloadFast(videoPacket, currentPos);
|
||||
processRtpPayloadFast(currentPos);
|
||||
}
|
||||
|
||||
if (flags & FLAG_EOF) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user