OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_BASE_VIDEO_DECODER_H_ | 5 #ifndef MEDIA_BASE_VIDEO_DECODER_H_ |
6 #define MEDIA_BASE_VIDEO_DECODER_H_ | 6 #define MEDIA_BASE_VIDEO_DECODER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
71 // GetMaxDecodeRequests() to get number of buffers that may be decoded in | 71 // GetMaxDecodeRequests() to get number of buffers that may be decoded in |
72 // parallel. Decoder must call |decode_cb| in the same order in which Decode() | 72 // parallel. Decoder must call |decode_cb| in the same order in which Decode() |
73 // is called. | 73 // is called. |
74 // | 74 // |
75 // Implementations guarantee that the callback will not be called from within | 75 // Implementations guarantee that the callback will not be called from within |
76 // this method and that |decode_cb| will not be blocked on the following | 76 // this method and that |decode_cb| will not be blocked on the following |
77 // Decode() calls (i.e. |decode_cb| will be called even if Decode() is never | 77 // Decode() calls (i.e. |decode_cb| will be called even if Decode() is never |
78 // called again). | 78 // called again). |
79 // | 79 // |
80 // After decoding is finished the decoder calls |output_cb| specified in | 80 // After decoding is finished the decoder calls |output_cb| specified in |
81 // Initialize() for each decoded frame. |output_cb| may be called before or | 81 // Initialize() for each decoded frame. In general |output_cb| may be called |
82 // after |decode_cb|. | 82 // before or after |decode_cb|, but software decoders must always call |
83 // |output_cb| before calling |decode_cb|. | |
xhwang
2015/01/15 21:35:10
Hmm, is there any reason why VideoDecoderShim can'
Sergey Ulanov
2015/01/15 22:59:20
PPB_VideoDecoder API needs to tell the plugin whic
xhwang
2015/01/15 23:41:47
Thanks for the info! But what exactly do you mean
| |
83 // | 84 // |
84 // If |buffer| is an EOS buffer then the decoder must be flushed, i.e. | 85 // If |buffer| is an EOS buffer then the decoder must be flushed, i.e. |
85 // |output_cb| must be called for each frame pending in the queue and | 86 // |output_cb| must be called for each frame pending in the queue and |
86 // |decode_cb| must be called after that. Callers will not call Decode() | 87 // |decode_cb| must be called after that. Callers will not call Decode() |
87 // again until after the flush completes. | 88 // again until after the flush completes. |
88 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, | 89 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, |
89 const DecodeCB& decode_cb) = 0; | 90 const DecodeCB& decode_cb) = 0; |
90 | 91 |
91 // Resets decoder state. All pending Decode() requests will be finished or | 92 // Resets decoder state. All pending Decode() requests will be finished or |
92 // aborted before |closure| is called. | 93 // aborted before |closure| is called. |
(...skipping 12 matching lines...) Expand all Loading... | |
105 // Returns maximum number of parallel decode requests. | 106 // Returns maximum number of parallel decode requests. |
106 virtual int GetMaxDecodeRequests() const; | 107 virtual int GetMaxDecodeRequests() const; |
107 | 108 |
108 private: | 109 private: |
109 DISALLOW_COPY_AND_ASSIGN(VideoDecoder); | 110 DISALLOW_COPY_AND_ASSIGN(VideoDecoder); |
110 }; | 111 }; |
111 | 112 |
112 } // namespace media | 113 } // namespace media |
113 | 114 |
114 #endif // MEDIA_BASE_VIDEO_DECODER_H_ | 115 #endif // MEDIA_BASE_VIDEO_DECODER_H_ |
OLD | NEW |