1/*
2 *  Copyright 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 *  Use of this source code is governed by a BSD-style license
5 *  that can be found in the LICENSE file in the root of the source
6 *  tree. An additional intellectual property rights grant can be found
7 *  in the file PATENTS.  All contributing project authors may
8 *  be found in the AUTHORS file in the root of the source tree.
9 */
10
11#import "RTCEncodedImage.h"
12
13@implementation RTC_OBJC_TYPE (RTCEncodedImage)
14
15@synthesize buffer = _buffer;
16@synthesize encodedWidth = _encodedWidth;
17@synthesize encodedHeight = _encodedHeight;
18@synthesize timeStamp = _timeStamp;
19@synthesize captureTimeMs = _captureTimeMs;
20@synthesize ntpTimeMs = _ntpTimeMs;
21@synthesize flags = _flags;
22@synthesize encodeStartMs = _encodeStartMs;
23@synthesize encodeFinishMs = _encodeFinishMs;
24@synthesize frameType = _frameType;
25@synthesize rotation = _rotation;
26@synthesize completeFrame = _completeFrame;
27@synthesize qp = _qp;
28@synthesize contentType = _contentType;
29
30@end
31