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