Niels Möller | 4dc66c5 | 2018-10-05 14:17:58 +0200 | [diff] [blame] | 1 | /* |
| 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 API_VIDEO_ENCODED_IMAGE_H_ |
| 12 | #define API_VIDEO_ENCODED_IMAGE_H_ |
| 13 | |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 14 | #include <stdint.h> |
| 15 | |
Niels Möller | 4dc66c5 | 2018-10-05 14:17:58 +0200 | [diff] [blame] | 16 | #include "absl/types/optional.h" |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 17 | #include "api/video/video_bitrate_allocation.h" |
Niels Möller | 4dc66c5 | 2018-10-05 14:17:58 +0200 | [diff] [blame] | 18 | #include "api/video/video_content_type.h" |
| 19 | #include "api/video/video_rotation.h" |
| 20 | #include "api/video/video_timing.h" |
| 21 | #include "common_types.h" // NOLINT(build/include) |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 22 | #include "rtc_base/checks.h" |
Mirko Bonadei | ac19414 | 2018-10-22 17:08:37 +0200 | [diff] [blame] | 23 | #include "rtc_base/system/rtc_export.h" |
Niels Möller | 4dc66c5 | 2018-10-05 14:17:58 +0200 | [diff] [blame] | 24 | |
| 25 | namespace webrtc { |
| 26 | |
| 27 | // TODO(bug.webrtc.org/9378): This is a legacy api class, which is slowly being |
| 28 | // cleaned up. Direct use of its members is strongly discouraged. |
Mirko Bonadei | ac19414 | 2018-10-22 17:08:37 +0200 | [diff] [blame] | 29 | class RTC_EXPORT EncodedImage { |
Niels Möller | 4dc66c5 | 2018-10-05 14:17:58 +0200 | [diff] [blame] | 30 | public: |
| 31 | static const size_t kBufferPaddingBytesH264; |
| 32 | |
| 33 | // Some decoders require encoded image buffers to be padded with a small |
| 34 | // number of additional bytes (due to over-reading byte readers). |
| 35 | static size_t GetBufferPaddingBytes(VideoCodecType codec_type); |
| 36 | |
| 37 | EncodedImage(); |
| 38 | EncodedImage(const EncodedImage&); |
| 39 | EncodedImage(uint8_t* buffer, size_t length, size_t size); |
| 40 | |
| 41 | // TODO(nisse): Change style to timestamp(), set_timestamp(), for consistency |
| 42 | // with the VideoFrame class. |
| 43 | // Set frame timestamp (90kHz). |
| 44 | void SetTimestamp(uint32_t timestamp) { timestamp_rtp_ = timestamp; } |
| 45 | |
| 46 | // Get frame timestamp (90kHz). |
| 47 | uint32_t Timestamp() const { return timestamp_rtp_; } |
| 48 | |
| 49 | void SetEncodeTime(int64_t encode_start_ms, int64_t encode_finish_ms); |
| 50 | |
| 51 | absl::optional<int> SpatialIndex() const { |
| 52 | if (spatial_index_ < 0) |
| 53 | return absl::nullopt; |
| 54 | return spatial_index_; |
| 55 | } |
| 56 | void SetSpatialIndex(absl::optional<int> spatial_index) { |
| 57 | RTC_DCHECK_GE(spatial_index.value_or(0), 0); |
| 58 | RTC_DCHECK_LT(spatial_index.value_or(0), kMaxSpatialLayers); |
| 59 | spatial_index_ = spatial_index.value_or(-1); |
| 60 | } |
| 61 | |
| 62 | uint32_t _encodedWidth = 0; |
| 63 | uint32_t _encodedHeight = 0; |
| 64 | // NTP time of the capture time in local timebase in milliseconds. |
| 65 | int64_t ntp_time_ms_ = 0; |
| 66 | int64_t capture_time_ms_ = 0; |
| 67 | FrameType _frameType = kVideoFrameDelta; |
| 68 | uint8_t* _buffer; |
| 69 | size_t _length; |
| 70 | size_t _size; |
| 71 | VideoRotation rotation_ = kVideoRotation_0; |
| 72 | VideoContentType content_type_ = VideoContentType::UNSPECIFIED; |
| 73 | bool _completeFrame = false; |
| 74 | int qp_ = -1; // Quantizer value. |
| 75 | |
| 76 | // When an application indicates non-zero values here, it is taken as an |
| 77 | // indication that all future frames will be constrained with those limits |
| 78 | // until the application indicates a change again. |
| 79 | PlayoutDelay playout_delay_ = {-1, -1}; |
| 80 | |
| 81 | struct Timing { |
| 82 | uint8_t flags = VideoSendTiming::kInvalid; |
| 83 | int64_t encode_start_ms = 0; |
| 84 | int64_t encode_finish_ms = 0; |
| 85 | int64_t packetization_finish_ms = 0; |
| 86 | int64_t pacer_exit_ms = 0; |
| 87 | int64_t network_timestamp_ms = 0; |
| 88 | int64_t network2_timestamp_ms = 0; |
| 89 | int64_t receive_start_ms = 0; |
| 90 | int64_t receive_finish_ms = 0; |
| 91 | } timing_; |
| 92 | |
| 93 | private: |
| 94 | uint32_t timestamp_rtp_ = 0; |
| 95 | // -1 means not set. Use a plain int rather than optional, to keep this class |
| 96 | // copyable with memcpy. |
| 97 | int spatial_index_ = -1; |
| 98 | }; |
| 99 | |
| 100 | } // namespace webrtc |
| 101 | |
| 102 | #endif // API_VIDEO_ENCODED_IMAGE_H_ |