Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: media/base/video_decoder.h

Issue 805193006: Fix VideoDecoderShim to return correct decode_id for all codecs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/pepper/video_decoder_shim.cc ('k') | media/filters/ffmpeg_video_decoder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 call |output_cb|
xhwang 2015/01/22 23:52:43 I get what you mean, but this can be complicated.
Sergey Ulanov 2015/01/23 00:19:37 Done.
83 // before calling |decode_cb|, i.e. while Decode() is pending.
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
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_
OLDNEW
« no previous file with comments | « content/renderer/pepper/video_decoder_shim.cc ('k') | media/filters/ffmpeg_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698