2012-09-18 16:14:26 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-10-05 14:17:58 +02:00
|
|
|
#include "api/video/encoded_image.h"
|
2012-09-18 16:14:26 +00:00
|
|
|
|
2014-05-28 07:00:51 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
2012-09-18 16:14:26 +00:00
|
|
|
namespace webrtc {
|
|
|
|
|
|
2017-08-10 02:43:14 -07:00
|
|
|
EncodedImage::EncodedImage() : EncodedImage(nullptr, 0, 0) {}
|
|
|
|
|
|
2019-02-07 00:02:17 +01:00
|
|
|
EncodedImage::EncodedImage(EncodedImage&&) = default;
|
2018-04-05 11:42:24 +02:00
|
|
|
EncodedImage::EncodedImage(const EncodedImage&) = default;
|
|
|
|
|
|
2019-01-15 08:50:01 +01:00
|
|
|
EncodedImage::EncodedImage(uint8_t* buffer, size_t size, size_t capacity)
|
2019-02-07 00:02:17 +01:00
|
|
|
: size_(size), buffer_(buffer), capacity_(capacity) {}
|
|
|
|
|
|
|
|
|
|
EncodedImage::~EncodedImage() = default;
|
|
|
|
|
|
|
|
|
|
EncodedImage& EncodedImage::operator=(EncodedImage&&) = default;
|
|
|
|
|
EncodedImage& EncodedImage::operator=(const EncodedImage&) = default;
|
|
|
|
|
|
|
|
|
|
void EncodedImage::Retain() {
|
|
|
|
|
if (buffer_) {
|
2019-02-19 15:42:15 +01:00
|
|
|
encoded_data_.SetData(buffer_, size_);
|
2019-02-07 00:02:17 +01:00
|
|
|
buffer_ = nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-10 02:43:14 -07:00
|
|
|
|
|
|
|
|
void EncodedImage::SetEncodeTime(int64_t encode_start_ms,
|
2017-11-16 14:33:53 +01:00
|
|
|
int64_t encode_finish_ms) {
|
|
|
|
|
timing_.encode_start_ms = encode_start_ms;
|
|
|
|
|
timing_.encode_finish_ms = encode_finish_ms;
|
2017-08-10 02:43:14 -07:00
|
|
|
}
|
2019-05-17 09:51:39 +02:00
|
|
|
|
|
|
|
|
absl::optional<size_t> EncodedImage::SpatialLayerFrameSize(
|
|
|
|
|
int spatial_index) const {
|
|
|
|
|
RTC_DCHECK_GE(spatial_index, 0);
|
|
|
|
|
RTC_DCHECK_LE(spatial_index, spatial_index_.value_or(0));
|
|
|
|
|
|
|
|
|
|
auto it = spatial_layer_frame_size_bytes_.find(spatial_index);
|
|
|
|
|
if (it == spatial_layer_frame_size_bytes_.end()) {
|
|
|
|
|
return absl::nullopt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return it->second;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EncodedImage::SetSpatialLayerFrameSize(int spatial_index,
|
|
|
|
|
size_t size_bytes) {
|
|
|
|
|
RTC_DCHECK_GE(spatial_index, 0);
|
|
|
|
|
RTC_DCHECK_LE(spatial_index, spatial_index_.value_or(0));
|
|
|
|
|
RTC_DCHECK_GE(size_bytes, 0);
|
|
|
|
|
spatial_layer_frame_size_bytes_[spatial_index] = size_bytes;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-18 16:14:26 +00:00
|
|
|
} // namespace webrtc
|