Skip to content

Commit

Permalink
Refactoring playback
Browse files Browse the repository at this point in the history
  • Loading branch information
mondain committed Jul 6, 2016
1 parent f929d33 commit 640499d
Show file tree
Hide file tree
Showing 5 changed files with 221 additions and 198 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,10 @@
<artifactId>spring-web</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>spring-test</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>quartz</artifactId>
<groupId>org.quartz-scheduler</groupId>
Expand All @@ -177,6 +181,12 @@
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/red5/server/stream/AbstractStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.red5.server.net.rtmp.event.Notify;

/**
* Abstract base implementation of IStream. Contains codec information, stream name, scope, event handling meand, provides stream start and stop operations.
* Abstract base implementation of IStream. Contains codec information, stream name, scope, event handling, and provides stream start and stop operations.
*
* @see org.red5.server.api.stream.IStream
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,7 @@ public void onPipeConnectionEvent(PipeConnectionEvent event) {
subscriberStats.increment();
break;
case PipeConnectionEvent.CONSUMER_DISCONNECT:
log.debug("Consumer disconnect");
log.debug("Consumer: {}", event.getSource().getClass().getName());
log.debug("Consumer disconnect: {}", event.getSource().getClass().getName());
subscriberStats.decrement();
break;
default:
Expand Down
Loading

0 comments on commit 640499d

Please sign in to comment.