| Index: media/filters/decoder_stream.h
|
| diff --git a/media/filters/decoder_stream.h b/media/filters/decoder_stream.h
|
| index 2856f8536e2cf7f931819f4f09a1fc2841ce5c9d..1a36558674e054e4e995de8e262e49799746e86f 100644
|
| --- a/media/filters/decoder_stream.h
|
| +++ b/media/filters/decoder_stream.h
|
| @@ -88,6 +88,9 @@ class MEDIA_EXPORT DecoderStream {
|
| // behavior.
|
| bool CanReadWithoutStalling() const;
|
|
|
| + // Returns maximum concurrent decode requests for the current |decoder_|.
|
| + int GetMaxDecodeRequests() const;
|
| +
|
| // Returns true if one more decode request can be submitted to the decoder.
|
| bool CanDecodeMore() const;
|
|
|
| @@ -141,9 +144,10 @@ class MEDIA_EXPORT DecoderStream {
|
| void FlushDecoder();
|
|
|
| // Callback for Decoder::Decode().
|
| - void OnDecodeOutputReady(int buffer_size,
|
| - DecoderStatus status,
|
| - const scoped_refptr<Output>& output);
|
| + void OnDecodeDone(int buffer_size, bool end_of_stream, DecoderStatus status);
|
| +
|
| + // Output callback passed to Decoder::Initialize().
|
| + void OnDecodeOutputReady(const scoped_refptr<Output>& output);
|
|
|
| // Reads a buffer from |stream_| and returns the result via OnBufferReady().
|
| void ReadFromDemuxerStream();
|
| @@ -208,7 +212,7 @@ template <>
|
| bool DecoderStream<DemuxerStream::AUDIO>::CanReadWithoutStalling() const;
|
|
|
| template <>
|
| -bool DecoderStream<DemuxerStream::AUDIO>::CanDecodeMore() const;
|
| +int DecoderStream<DemuxerStream::AUDIO>::GetMaxDecodeRequests() const;
|
|
|
| typedef DecoderStream<DemuxerStream::VIDEO> VideoFrameStream;
|
| typedef DecoderStream<DemuxerStream::AUDIO> AudioBufferStream;
|
|
|