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"
|
2019-10-07 12:56:24 +02:00
|
|
|
#include "modules/rtp_rtcp/source/rtp_video_header.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#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();
|
2019-06-20 11:13:03 +02:00
|
|
|
VCMEncodedFrame(const VCMEncodedFrame&);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
~VCMEncodedFrame();
|
|
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* Set render time in milliseconds
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
void SetRenderTime(const int64_t renderTimeMs) {
|
|
|
|
|
_renderTimeMs = renderTimeMs;
|
|
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* Set the encoded frame size
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
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
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* Get the encoded image
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
const webrtc::EncodedImage& EncodedImage() const {
|
|
|
|
|
return static_cast<const webrtc::EncodedImage&>(*this);
|
|
|
|
|
}
|
2019-01-11 10:21:35 +01:00
|
|
|
|
2019-05-13 16:13:36 +02:00
|
|
|
using EncodedImage::ColorSpace;
|
2019-01-11 10:21:35 +01:00
|
|
|
using EncodedImage::data;
|
2019-06-20 10:05:55 +02:00
|
|
|
using EncodedImage::PacketInfos;
|
2018-12-04 15:54:52 +01:00
|
|
|
using EncodedImage::set_size;
|
2019-05-13 16:13:36 +02:00
|
|
|
using EncodedImage::SetColorSpace;
|
2019-06-18 15:56:56 +02:00
|
|
|
using EncodedImage::SetEncodedData;
|
2019-06-20 10:05:55 +02:00
|
|
|
using EncodedImage::SetPacketInfos;
|
2018-12-20 14:32:14 +01:00
|
|
|
using EncodedImage::SetSpatialIndex;
|
2019-05-17 09:51:39 +02:00
|
|
|
using EncodedImage::SetSpatialLayerFrameSize;
|
2018-08-16 10:24:12 +02:00
|
|
|
using EncodedImage::SetTimestamp;
|
2018-11-28 16:31:29 +01:00
|
|
|
using EncodedImage::size;
|
2019-05-17 09:51:39 +02:00
|
|
|
using EncodedImage::SpatialIndex;
|
|
|
|
|
using EncodedImage::SpatialLayerFrameSize;
|
2018-12-04 15:54:52 +01:00
|
|
|
using EncodedImage::Timestamp;
|
|
|
|
|
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* Get render time in milliseconds
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
int64_t RenderTimeMs() const { return _renderTimeMs; }
|
|
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* Get frame type
|
|
|
|
|
*/
|
2019-03-07 10:18:23 +01:00
|
|
|
webrtc::VideoFrameType FrameType() const { return _frameType; }
|
2015-12-21 04:12:39 -08:00
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* 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_; }
|
2018-12-04 15:54:52 +01:00
|
|
|
EncodedImage::Timing* video_timing_mutable() { 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; }
|
|
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* True if there's a frame missing before this frame
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
bool MissingFrame() const { return _missingFrame; }
|
|
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* Payload type of the encoded payload
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
uint8_t PayloadType() const { return _payloadType; }
|
|
|
|
|
/**
|
2018-06-19 15:03:05 +02:00
|
|
|
* 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.
|
|
|
|
|
*/
|
2015-12-21 04:12:39 -08:00
|
|
|
const CodecSpecificInfo* CodecSpecific() const { return &_codecSpecificInfo; }
|
2018-12-04 15:54:52 +01:00
|
|
|
void SetCodecSpecific(const CodecSpecificInfo* codec_specific) {
|
|
|
|
|
_codecSpecificInfo = *codec_specific;
|
|
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2018-12-04 15:54:52 +01:00
|
|
|
protected:
|
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;
|
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_
|