mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
PR feedback
This commit is contained in:
parent
ab397e408a
commit
c09fa7560d
2 changed files with 2 additions and 2 deletions
|
|
@ -102,8 +102,8 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
||||||
* @param uri The RTSP playback {@link Uri}.
|
* @param uri The RTSP playback {@link Uri}.
|
||||||
* @param listener A {@link Listener} to receive session information updates.
|
* @param listener A {@link Listener} to receive session information updates.
|
||||||
* @param userAgent The user agent.
|
* @param userAgent The user agent.
|
||||||
* @param debugLoggingEnabled Whether to log RTSP messages.
|
|
||||||
* @param socketFactory A socket factory for {@link RtspClient}'s connection.
|
* @param socketFactory A socket factory for {@link RtspClient}'s connection.
|
||||||
|
* @param debugLoggingEnabled Whether to log RTSP messages.
|
||||||
*/
|
*/
|
||||||
public RtspMediaPeriod(
|
public RtspMediaPeriod(
|
||||||
Allocator allocator,
|
Allocator allocator,
|
||||||
|
|
|
||||||
|
|
@ -190,7 +190,7 @@ public final class RtspClientTest {
|
||||||
EMPTY_PLAYBACK_LISTENER,
|
EMPTY_PLAYBACK_LISTENER,
|
||||||
/* userAgent= */ "ExoPlayer:RtspClientTest",
|
/* userAgent= */ "ExoPlayer:RtspClientTest",
|
||||||
RtspTestUtils.getTestUri(rtspServer.startAndGetPortNumber()),
|
RtspTestUtils.getTestUri(rtspServer.startAndGetPortNumber()),
|
||||||
/* socketFactory */ null,
|
/* socketFactory */ SocketFactory.getDefault(),
|
||||||
/* debugLoggingEnabled= */ false);
|
/* debugLoggingEnabled= */ false);
|
||||||
rtspClient.start();
|
rtspClient.start();
|
||||||
RobolectricUtil.runMainLooperUntil(() -> tracksInSession.get() != null);
|
RobolectricUtil.runMainLooperUntil(() -> tracksInSession.get() != null);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue