Revert of Added VP8 simulcast tests. Fixed analyzer to correctly infer timestamps. (patchset #5 id:80001 of https://codereview.webrtc.org/2668763004/ )

Reason for revert:
Speculative revert due to regression in perf tests.

Original issue's description:
> Added VP8 simulcast tests. Fixed analyzer to correctly infer timestamps.
>
>
> BUG=webrtc:7095
>
> Review-Url: https://codereview.webrtc.org/2668763004
> Cr-Commit-Position: refs/heads/master@{#16428}
> Committed: 5f47126865

TBR=sprang@webrtc.org,nisse@webrtc.org,mflodman@webrtc.org,magjed@webrtc.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=webrtc:7095

Review-Url: https://codereview.webrtc.org/2687073002
Cr-Commit-Position: refs/heads/master@{#16510}
This commit is contained in:
ilnik
2017-02-09 04:08:56 -08:00
committed by Commit bot
parent ae8121701d
commit e67c59e7d2
5 changed files with 27 additions and 177 deletions

View File

@ -22,32 +22,13 @@ class VideoFrame;
struct EncodedFrame {
public:
EncodedFrame()
: data_(nullptr),
length_(0),
frame_type_(kEmptyFrame),
encoded_width_(0),
encoded_height_(0),
timestamp_(0) {}
EncodedFrame(const uint8_t* data,
size_t length,
FrameType frame_type,
uint32_t encoded_width,
uint32_t encoded_height,
uint32_t timestamp)
: data_(data),
length_(length),
frame_type_(frame_type),
encoded_width_(encoded_width),
encoded_height_(encoded_height),
timestamp_(timestamp) {}
EncodedFrame() : data_(NULL), length_(0), frame_type_(kEmptyFrame) {}
EncodedFrame(const uint8_t* data, size_t length, FrameType frame_type)
: data_(data), length_(length), frame_type_(frame_type) {}
const uint8_t* data_;
const size_t length_;
const FrameType frame_type_;
const uint32_t encoded_width_;
const uint32_t encoded_height_;
const uint32_t timestamp_;
};
class EncodedFrameObserver {