Index: media/mojo/interfaces/demuxer_stream.mojom |
diff --git a/media/mojo/interfaces/demuxer_stream.mojom b/media/mojo/interfaces/demuxer_stream.mojom |
index 3bb54dfa9a6a3263108a90abbb2e00117036548b..5b880b747c4b3d43a60ff45aa4125c870a58598b 100644 |
--- a/media/mojo/interfaces/demuxer_stream.mojom |
+++ b/media/mojo/interfaces/demuxer_stream.mojom |
@@ -35,7 +35,7 @@ interface DemuxerStream { |
AudioDecoderConfig? audio_config, |
VideoDecoderConfig? video_config); |
- // Requests a MediaDecoderBuffer from this stream for decoding and rendering. |
+ // Requests a DecoderBuffer from this stream for decoding and rendering. |
// See media::DemuxerStream::ReadCB for a general explanation of the fields. |
// |
// Notes on the callback: |
@@ -50,7 +50,7 @@ interface DemuxerStream { |
// into the DataPipe given to Initialize() once DataPipe supports framed data |
// in a nicer fashion. |
Read() => (Status status, |
- MediaDecoderBuffer? buffer, |
+ DecoderBuffer? buffer, |
AudioDecoderConfig? audio_config, |
VideoDecoderConfig? video_config); |
}; |