blob: ad8441aabd93d1d64c96ac5d4ed0ae4b1feff7e8 [file] [log] [blame]
Anders Carlsson7bca8ca2018-08-30 09:30:29 +02001/*
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
Mirko Bonadeia81e9c82020-05-04 16:14:32 +020013@implementation RTC_OBJC_TYPE (RTCEncodedImage)
Anders Carlsson7bca8ca2018-08-30 09:30:29 +020014
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;
Anders Carlsson7bca8ca2018-08-30 09:30:29 +020026@synthesize qp = _qp;
27@synthesize contentType = _contentType;
28
29@end