2011-07-07 08:21:25 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2011 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MODULES_VIDEO_CODING_ENCODED_FRAME_H_
|
|
|
|
|
#define MODULES_VIDEO_CODING_ENCODED_FRAME_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-10-08 07:06:53 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
2018-10-05 14:17:58 +02:00
|
|
|
#include "api/video/encoded_image.h"
|
2017-09-15 13:58:09 +02:00
|
|
|
#include "common_types.h" // NOLINT(build/include)
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/include/module_common_types.h"
|
|
|
|
|
#include "modules/video_coding/include/video_codec_interface.h"
|
|
|
|
|
#include "modules/video_coding/include/video_coding_defines.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
namespace webrtc {
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
class VCMEncodedFrame : protected EncodedImage {
|
|
|
|
|
public:
|
|
|
|
|
VCMEncodedFrame();
|
2018-06-26 11:14:11 +02:00
|
|
|
VCMEncodedFrame(const VCMEncodedFrame&) = delete;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
~VCMEncodedFrame();
|
|
|
|
|
/**
|
|
|
|
|
* Delete VideoFrame and resets members to zero
|
|
|
|
|
*/
|
|
|
|
|
void Free();
|
|
|
|
|
/**
|
|
|
|
|
* Set render time in milliseconds
|
|
|
|
|
*/
|
|
|
|
|
void SetRenderTime(const int64_t renderTimeMs) {
|
|
|
|
|
_renderTimeMs = renderTimeMs;
|
|
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
|
|
|
|
* Set the encoded frame size
|
|
|
|
|
*/
|
|
|
|
|
void SetEncodedSize(uint32_t width, uint32_t height) {
|
|
|
|
|
_encodedWidth = width;
|
|
|
|
|
_encodedHeight = height;
|
|
|
|
|
}
|
2017-05-10 09:21:33 -07:00
|
|
|
|
|
|
|
|
void SetPlayoutDelay(PlayoutDelay playout_delay) {
|
|
|
|
|
playout_delay_ = playout_delay;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
|
|
|
|
* Get the encoded image
|
|
|
|
|
*/
|
|
|
|
|
const webrtc::EncodedImage& EncodedImage() const {
|
|
|
|
|
return static_cast<const webrtc::EncodedImage&>(*this);
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* Get pointer to frame buffer
|
|
|
|
|
*/
|
|
|
|
|
const uint8_t* Buffer() const { return _buffer; }
|
2018-10-17 17:27:25 -07:00
|
|
|
/**
|
|
|
|
|
* Get pointer to frame buffer that can be mutated.
|
|
|
|
|
*/
|
|
|
|
|
uint8_t* MutableBuffer() { return _buffer; }
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
|
|
|
|
* Get frame length
|
|
|
|
|
*/
|
|
|
|
|
size_t Length() const { return _length; }
|
2018-10-17 17:27:25 -07:00
|
|
|
/**
|
|
|
|
|
* Set frame length
|
|
|
|
|
*/
|
|
|
|
|
void SetLength(size_t length) {
|
|
|
|
|
RTC_DCHECK(length <= _size);
|
|
|
|
|
_length = length;
|
|
|
|
|
}
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
2018-08-16 10:24:12 +02:00
|
|
|
* Frame RTP timestamp (90kHz)
|
2015-12-21 04:12:39 -08:00
|
|
|
*/
|
2018-08-16 10:24:12 +02:00
|
|
|
using EncodedImage::Timestamp;
|
|
|
|
|
using EncodedImage::SetTimestamp;
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
|
|
|
|
* Get render time in milliseconds
|
|
|
|
|
*/
|
|
|
|
|
int64_t RenderTimeMs() const { return _renderTimeMs; }
|
|
|
|
|
/**
|
|
|
|
|
* Get frame type
|
|
|
|
|
*/
|
|
|
|
|
webrtc::FrameType FrameType() const { return _frameType; }
|
|
|
|
|
/**
|
|
|
|
|
* Get frame rotation
|
|
|
|
|
*/
|
2016-07-04 01:45:23 -07:00
|
|
|
VideoRotation rotation() const { return rotation_; }
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
2017-04-11 10:34:31 -07:00
|
|
|
* Get video content type
|
|
|
|
|
*/
|
|
|
|
|
VideoContentType contentType() const { return content_type_; }
|
2017-06-19 07:18:55 -07:00
|
|
|
/**
|
|
|
|
|
* Get video timing
|
|
|
|
|
*/
|
|
|
|
|
EncodedImage::Timing video_timing() const { return timing_; }
|
2017-04-11 10:34:31 -07:00
|
|
|
/**
|
|
|
|
|
* True if this frame is complete, false otherwise
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
bool Complete() const { return _completeFrame; }
|
|
|
|
|
/**
|
|
|
|
|
* True if there's a frame missing before this frame
|
|
|
|
|
*/
|
|
|
|
|
bool MissingFrame() const { return _missingFrame; }
|
|
|
|
|
/**
|
|
|
|
|
* Payload type of the encoded payload
|
|
|
|
|
*/
|
|
|
|
|
uint8_t PayloadType() const { return _payloadType; }
|
|
|
|
|
/**
|
|
|
|
|
* Get codec specific info.
|
|
|
|
|
* The returned pointer is only valid as long as the VCMEncodedFrame
|
|
|
|
|
* is valid. Also, VCMEncodedFrame owns the pointer and will delete
|
|
|
|
|
* the object.
|
|
|
|
|
*/
|
|
|
|
|
const CodecSpecificInfo* CodecSpecific() const { return &_codecSpecificInfo; }
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
protected:
|
|
|
|
|
/**
|
|
|
|
|
* Verifies that current allocated buffer size is larger than or equal to the
|
|
|
|
|
* input size.
|
|
|
|
|
* If the current buffer size is smaller, a new allocation is made and the old
|
|
|
|
|
* buffer data
|
|
|
|
|
* is copied to the new buffer.
|
|
|
|
|
* Buffer size is updated to minimumSize.
|
|
|
|
|
*/
|
|
|
|
|
void VerifyAndAllocate(size_t minimumSize);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
void Reset();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
void CopyCodecSpecific(const RTPVideoHeader* header);
|
2011-08-17 09:47:33 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
int64_t _renderTimeMs;
|
|
|
|
|
uint8_t _payloadType;
|
|
|
|
|
bool _missingFrame;
|
|
|
|
|
CodecSpecificInfo _codecSpecificInfo;
|
|
|
|
|
webrtc::VideoCodecType _codec;
|
2015-03-17 21:54:50 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
// Video rotation is only set along with the last packet for each frame
|
|
|
|
|
// (same as marker bit). This |_rotation_set| is only for debugging purpose
|
|
|
|
|
// to ensure we don't set it twice for a frame.
|
|
|
|
|
bool _rotation_set;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
2013-07-03 15:12:26 +00:00
|
|
|
} // namespace webrtc
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MODULES_VIDEO_CODING_ENCODED_FRAME_H_
|