blob: 6ebc392453a8d20ddc55b66413519103a5a276a3 [file] [log] [blame]
pbos@webrtc.org776e6f22014-10-29 15:28:39 +00001/*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_VIDEO_DECODER_H_
12#define WEBRTC_VIDEO_DECODER_H_
13
14#include <vector>
15
16#include "webrtc/common_types.h"
17#include "webrtc/typedefs.h"
18#include "webrtc/video_frame.h"
19
20namespace webrtc {
21
22class RTPFragmentationHeader;
23// TODO(pbos): Expose these through a public (root) header or change these APIs.
24struct CodecSpecificInfo;
25struct VideoCodec;
26
27class DecodedImageCallback {
28 public:
29 virtual ~DecodedImageCallback() {}
30
magjed@webrtc.org2056ee32015-03-16 13:46:52 +000031 virtual int32_t Decoded(I420VideoFrame& decodedImage) = 0;
pbos@webrtc.org776e6f22014-10-29 15:28:39 +000032 virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId) {
33 return -1;
34 }
35
36 virtual int32_t ReceivedDecodedFrame(const uint64_t pictureId) { return -1; }
37};
38
39class VideoDecoder {
40 public:
41 enum DecoderType {
42 kVp8,
Peter Boström7252a2b2015-05-18 19:42:03 +020043 kVp9,
44 kUnsupportedCodec,
pbos@webrtc.org776e6f22014-10-29 15:28:39 +000045 };
46
47 static VideoDecoder* Create(DecoderType codec_type);
48
49 virtual ~VideoDecoder() {}
50
Peter Boström7252a2b2015-05-18 19:42:03 +020051 virtual int32_t InitDecode(const VideoCodec* codec_settings,
52 int32_t number_of_cores) = 0;
pbos@webrtc.org776e6f22014-10-29 15:28:39 +000053
Peter Boström7252a2b2015-05-18 19:42:03 +020054 virtual int32_t Decode(const EncodedImage& input_image,
55 bool missing_frames,
pbos@webrtc.org776e6f22014-10-29 15:28:39 +000056 const RTPFragmentationHeader* fragmentation,
Peter Boström7252a2b2015-05-18 19:42:03 +020057 const CodecSpecificInfo* codec_specific_info = NULL,
58 int64_t render_time_ms = -1) = 0;
pbos@webrtc.org776e6f22014-10-29 15:28:39 +000059
60 virtual int32_t RegisterDecodeCompleteCallback(
61 DecodedImageCallback* callback) = 0;
62
63 virtual int32_t Release() = 0;
64 virtual int32_t Reset() = 0;
65
66 virtual int32_t SetCodecConfigParameters(const uint8_t* /*buffer*/,
67 int32_t /*size*/) {
68 return -1;
69 }
70
71 virtual VideoDecoder* Copy() { return NULL; }
72};
73
Peter Boström7252a2b2015-05-18 19:42:03 +020074// Class used to wrap external VideoDecoders to provide a fallback option on
75// software decoding when a hardware decoder fails to decode a stream due to
76// hardware restrictions, such as max resolution.
77class VideoDecoderSoftwareFallbackWrapper : public webrtc::VideoDecoder {
78 public:
79 VideoDecoderSoftwareFallbackWrapper(VideoCodecType codec_type,
80 VideoDecoder* decoder);
81
82 int32_t InitDecode(const VideoCodec* codec_settings,
83 int32_t number_of_cores) override;
84
85 int32_t Decode(const EncodedImage& input_image,
86 bool missing_frames,
87 const RTPFragmentationHeader* fragmentation,
88 const CodecSpecificInfo* codec_specific_info,
89 int64_t render_time_ms) override;
90
91 int32_t RegisterDecodeCompleteCallback(
92 DecodedImageCallback* callback) override;
93
94 int32_t Release() override;
95 int32_t Reset() override;
96
97 private:
98 bool InitFallbackDecoder();
99
100 const DecoderType decoder_type_;
101 VideoDecoder* const decoder_;
102
103 VideoCodec codec_settings_;
104 int32_t number_of_cores_;
105 rtc::scoped_ptr<VideoDecoder> fallback_decoder_;
106 DecodedImageCallback* callback_;
107};
108
pbos@webrtc.org776e6f22014-10-29 15:28:39 +0000109} // namespace webrtc
110
111#endif // WEBRTC_VIDEO_DECODER_H_