-
Notifications
You must be signed in to change notification settings - Fork 1
/
MXVideoTrackWrapper.h
47 lines (35 loc) · 1.1 KB
/
MXVideoTrackWrapper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// MXVideoTrackWrapper.h
// Muxer
//
// Created by Ryan Walklin on 12/25/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "MXTrackWrapper.h"
@interface MXVideoTrackWrapper : MXTrackWrapper {
uint8_t ** sequenceParameterSet;
uint32_t * sequenceParameterSetSize;
uint8_t ** pictureParameterSet;
uint32_t * pictureParameterSetSize;
uint16_t frameWidth;
uint16_t frameHeight;
BOOL anamorphic;
float anamorphicWidth;
float anamorphicHeight;
uint64_t pixelHValue;
uint64_t pixelVValue;
}
@property (readonly) uint8_t ** sequenceParameterSet;
@property (readonly) uint32_t * sequenceParameterSetSize;
@property (readonly) uint8_t ** pictureParameterSet;
@property (readonly) uint32_t * pictureParameterSetSize;
@property (readonly) uint16_t frameWidth;
@property (readonly) uint16_t frameHeight;
@property (readonly) BOOL anamorphic;
@property (readonly) float anamorphicWidth;
@property (readonly) float anamorphicHeight;
@property (readonly) uint64_t pixelHValue;
@property (readonly) uint64_t pixelVValue;
-(void)readTrackDescription;
@end