2016-04-01 02:01:54 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_
|
|
|
|
|
#define WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_
|
|
|
|
|
|
2016-05-13 06:01:03 -07:00
|
|
|
#include "webrtc/common_types.h"
|
|
|
|
|
#include "webrtc/modules/include/module_common_types.h"
|
2016-07-04 16:18:55 +02:00
|
|
|
#include "webrtc/modules/video_coding/encoded_frame.h"
|
2016-04-01 02:01:54 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace video_coding {
|
|
|
|
|
|
2016-07-04 16:18:55 +02:00
|
|
|
class FrameObject : public webrtc::VCMEncodedFrame {
|
2016-04-01 02:01:54 -07:00
|
|
|
public:
|
2016-04-20 10:26:34 +02:00
|
|
|
static const uint8_t kMaxFrameReferences = 5;
|
|
|
|
|
|
2016-05-09 11:41:48 +02:00
|
|
|
FrameObject();
|
|
|
|
|
|
2016-04-01 02:01:54 -07:00
|
|
|
virtual bool GetBitstream(uint8_t* destination) const = 0;
|
|
|
|
|
virtual ~FrameObject() {}
|
2016-04-20 10:26:34 +02:00
|
|
|
|
2016-05-09 11:41:48 +02:00
|
|
|
// The tuple (|picture_id|, |spatial_layer|) uniquely identifies a frame
|
|
|
|
|
// object. For codec types that don't necessarily have picture ids they
|
|
|
|
|
// have to be constructed from the header data relevant to that codec.
|
2016-04-20 10:26:34 +02:00
|
|
|
uint16_t picture_id;
|
2016-05-09 11:41:48 +02:00
|
|
|
uint8_t spatial_layer;
|
2016-05-19 12:19:35 +02:00
|
|
|
uint32_t timestamp;
|
2016-05-09 11:41:48 +02:00
|
|
|
|
2016-04-20 10:26:34 +02:00
|
|
|
size_t num_references;
|
|
|
|
|
uint16_t references[kMaxFrameReferences];
|
2016-05-09 11:41:48 +02:00
|
|
|
bool inter_layer_predicted;
|
2016-05-24 10:20:47 +02:00
|
|
|
|
|
|
|
|
size_t size;
|
2016-04-01 02:01:54 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class PacketBuffer;
|
|
|
|
|
|
|
|
|
|
class RtpFrameObject : public FrameObject {
|
|
|
|
|
public:
|
|
|
|
|
RtpFrameObject(PacketBuffer* packet_buffer,
|
2016-05-13 06:01:03 -07:00
|
|
|
uint16_t first_seq_num,
|
2016-05-24 10:20:47 +02:00
|
|
|
uint16_t last_seq_num,
|
|
|
|
|
size_t frame_size,
|
|
|
|
|
int times_nacked);
|
2016-04-20 10:26:34 +02:00
|
|
|
|
2016-04-01 02:01:54 -07:00
|
|
|
~RtpFrameObject();
|
2016-04-20 10:26:34 +02:00
|
|
|
uint16_t first_seq_num() const;
|
|
|
|
|
uint16_t last_seq_num() const;
|
2016-05-24 10:20:47 +02:00
|
|
|
int times_nacked() const;
|
2016-07-04 16:18:55 +02:00
|
|
|
enum FrameType frame_type() const;
|
2016-05-13 06:01:03 -07:00
|
|
|
VideoCodecType codec_type() const;
|
2016-04-01 02:01:54 -07:00
|
|
|
bool GetBitstream(uint8_t* destination) const override;
|
2016-05-13 06:01:03 -07:00
|
|
|
RTPVideoTypeHeader* GetCodecHeader() const;
|
2016-04-01 02:01:54 -07:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
PacketBuffer* packet_buffer_;
|
2016-07-04 16:18:55 +02:00
|
|
|
enum FrameType frame_type_;
|
2016-05-13 06:01:03 -07:00
|
|
|
VideoCodecType codec_type_;
|
|
|
|
|
uint16_t first_seq_num_;
|
|
|
|
|
uint16_t last_seq_num_;
|
2016-05-24 10:20:47 +02:00
|
|
|
|
|
|
|
|
// Equal to times nacked of the packet with the highet times nacked
|
|
|
|
|
// belonging to this frame.
|
|
|
|
|
int times_nacked_;
|
2016-04-01 02:01:54 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace video_coding
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
#endif // WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_
|