OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... | |
33 virtual int32_t Decoded(VideoFrame& decodedImage) = 0; | 33 virtual int32_t Decoded(VideoFrame& decodedImage) = 0; |
34 // Provides an alternative interface that allows the decoder to specify the | 34 // Provides an alternative interface that allows the decoder to specify the |
35 // decode time excluding waiting time for any previous pending frame to | 35 // decode time excluding waiting time for any previous pending frame to |
36 // return. This is necessary for breaking positive feedback in the delay | 36 // return. This is necessary for breaking positive feedback in the delay |
37 // estimation when the decoder has a single output buffer. | 37 // estimation when the decoder has a single output buffer. |
38 // TODO(perkj): Remove default implementation when chromium has been updated. | 38 // TODO(perkj): Remove default implementation when chromium has been updated. |
39 virtual int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms) { | 39 virtual int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms) { |
40 // The default implementation ignores custom decode time value. | 40 // The default implementation ignores custom decode time value. |
41 return Decoded(decodedImage); | 41 return Decoded(decodedImage); |
42 } | 42 } |
43 virtual int32_t DecodedWithQp(VideoFrame& decodedImage, int qp) = 0; | |
44 virtual int32_t DecodedWithQp(VideoFrame& decodedImage, | |
45 int64_t decode_time_ms, | |
46 int qp) = 0; | |
hbos
2017/01/25 11:31:13
I think there should just be one Decoded function
sakal
2017/01/25 12:39:34
I removed the other DecodedWithQp method and renam
| |
43 | 47 |
44 virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId) { | 48 virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId) { |
45 return -1; | 49 return -1; |
46 } | 50 } |
47 | 51 |
48 virtual int32_t ReceivedDecodedFrame(const uint64_t pictureId) { return -1; } | 52 virtual int32_t ReceivedDecodedFrame(const uint64_t pictureId) { return -1; } |
49 }; | 53 }; |
50 | 54 |
51 class VideoDecoder { | 55 class VideoDecoder { |
52 public: | 56 public: |
(...skipping 17 matching lines...) Expand all Loading... | |
70 // That is, it can not decode infinite number of frames before the decoded | 74 // That is, it can not decode infinite number of frames before the decoded |
71 // frame is consumed. | 75 // frame is consumed. |
72 virtual bool PrefersLateDecoding() const { return true; } | 76 virtual bool PrefersLateDecoding() const { return true; } |
73 | 77 |
74 virtual const char* ImplementationName() const { return "unknown"; } | 78 virtual const char* ImplementationName() const { return "unknown"; } |
75 }; | 79 }; |
76 | 80 |
77 } // namespace webrtc | 81 } // namespace webrtc |
78 | 82 |
79 #endif // WEBRTC_VIDEO_DECODER_H_ | 83 #endif // WEBRTC_VIDEO_DECODER_H_ |
OLD | NEW |