mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +00:00
Remove /* package */ comment from public classes
Also make one class truly package-private and keep the comment instead. This comment should only appear on elements with default (package-private) visibility. PiperOrigin-RevId: 633911914
This commit is contained in:
parent
ed4820cb61
commit
c6f4ed0b66
4 changed files with 4 additions and 5 deletions
|
|
@ -25,8 +25,7 @@ import androidx.media3.exoplayer.rtsp.RtpPayloadFormat;
|
|||
|
||||
/** Default {@link RtpPayloadReader.Factory} implementation. */
|
||||
@UnstableApi
|
||||
/* package */ public final class DefaultRtpPayloadReaderFactory
|
||||
implements RtpPayloadReader.Factory {
|
||||
public final class DefaultRtpPayloadReaderFactory implements RtpPayloadReader.Factory {
|
||||
|
||||
@Override
|
||||
@Nullable
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
|||
|
||||
/** Parses an AC3 byte stream carried on RTP packets, and extracts AC3 frames. */
|
||||
@UnstableApi
|
||||
/* package */ public final class RtpAc3Reader implements RtpPayloadReader {
|
||||
public final class RtpAc3Reader implements RtpPayloadReader {
|
||||
|
||||
/** AC3 frame types defined in RFC4184 Section 4.1.1. */
|
||||
private static final int AC3_FRAME_TYPE_COMPLETE_FRAME = 0;
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
|
|||
|
||||
/** Extracts media samples from the payload of received RTP packets. */
|
||||
@UnstableApi
|
||||
/* package */ public interface RtpPayloadReader {
|
||||
public interface RtpPayloadReader {
|
||||
|
||||
/** Factory of {@link RtpPayloadReader} instances. */
|
||||
interface Factory {
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
|||
* details.
|
||||
*/
|
||||
@UnstableApi
|
||||
/* package */ public final class RtpPcmReader implements RtpPayloadReader {
|
||||
public final class RtpPcmReader implements RtpPayloadReader {
|
||||
|
||||
private static final String TAG = "RtpPcmReader";
|
||||
private final RtpPayloadFormat payloadFormat;
|
||||
|
|
|
|||
Loading…
Reference in a new issue