mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-25 22:13:04 +00:00
14 lines
240 B
Java
14 lines
240 B
Java
package com.limelight.nvstream.av;
|
|
|
|
public interface RtpPacketFields {
|
|
public byte getPacketType();
|
|
|
|
public short getRtpSequenceNumber();
|
|
|
|
public int referencePacket();
|
|
|
|
public int dereferencePacket();
|
|
|
|
public int getRefCount();
|
|
}
|