Skip to content

Commit

Permalink
fix(core): rename composite endpoint interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Jan 13, 2025
1 parent e0357bb commit f4e4e66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ open class CompositeEndpoint(
final override val muxer: IMuxerInternal,
override val sink: ISinkInternal
) :
ICompositeEndpoint {
ICompositeEndpointInternal {
/**
* The video and audio configurations.
* It is used to configure the sink.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package io.github.thibaultbee.streampack.core.elements.endpoints.composites

import io.github.thibaultbee.streampack.core.elements.endpoints.IEndpointInternal
import io.github.thibaultbee.streampack.core.elements.endpoints.IEndpoint
import io.github.thibaultbee.streampack.core.elements.endpoints.IEndpointInternal
import io.github.thibaultbee.streampack.core.elements.endpoints.composites.muxers.IMuxer
import io.github.thibaultbee.streampack.core.elements.endpoints.composites.sinks.ISink

interface ICompositeEndpoint : IEndpointInternal, IPublicCompositeEndpoint
interface ICompositeEndpointInternal : IEndpointInternal, ICompositeEndpoint

interface IPublicCompositeEndpoint : IEndpoint {
interface ICompositeEndpoint : IEndpoint {
val muxer: IMuxer
val sink: ISink
}

0 comments on commit f4e4e66

Please sign in to comment.