Remove non-exist class MediaStream. (#308)

This commit is contained in:
Haoming Chen 2017-12-18 13:28:19 -08:00 committed by Kongqun Yang
parent 55edaf0bea
commit f22320bfa7
2 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,6 @@ class Decryptor;
class KeySource; class KeySource;
class MediaParser; class MediaParser;
class MediaSample; class MediaSample;
class MediaStream;
class StreamInfo; class StreamInfo;
/// Demuxer is responsible for extracting elementary stream samples from a /// Demuxer is responsible for extracting elementary stream samples from a

View File

@ -50,7 +50,7 @@ class Segmenter {
/// Initialize the segmenter. /// Initialize the segmenter.
/// Calling other public methods of this class without this method returning /// Calling other public methods of this class without this method returning
/// Status::OK results in an undefined behavior. /// Status::OK results in an undefined behavior.
/// @param streams contains the vector of MediaStreams to be segmented. /// @param streams contains the vector of StreamInfos for initialization.
/// @param muxer_listener receives muxer events. Can be NULL. /// @param muxer_listener receives muxer events. Can be NULL.
/// @param progress_listener receives progress updates. Can be NULL. /// @param progress_listener receives progress updates. Can be NULL.
/// @return OK on success, an error status otherwise. /// @return OK on success, an error status otherwise.