Delete method webrtc::VideoFrame::allocated_size and enum PlaneType.

BUG=webrtc:5682

Review-Url: https://codereview.webrtc.org/2380623002
Cr-Commit-Position: refs/heads/master@{#14416}
This commit is contained in:
nisse
2016-09-28 03:14:07 -07:00
committed by Commit bot
parent 798896a4aa
commit e5684c5387
8 changed files with 10 additions and 73 deletions

View File

@ -49,6 +49,13 @@ void SetExpectedValues3(T value0, T value1, T value2, T* expected_values) {
expected_values[2] = value2;
}
enum PlaneType {
kYPlane = 0,
kUPlane = 1,
kVPlane = 2,
kNumOfPlanes = 3,
};
class Vp8TestEncodedImageCallback : public EncodedImageCallback {
public:
Vp8TestEncodedImageCallback() : picture_id_(-1) {