CodecCapInfo
Represents the codec capabilities of the SDK.
public class CodecCapInfo {
public int codecType;
public int codecCapMask;
public CodecCapLevels codecLevels;
}
Properties
- codecType
- Video codec type:
- 1: VP8.
- 2: H.264.
- 3: (Default) H.265.
- codecCapMask
- Bitmask of codec types:
- (0): Device does not support encoding or decoding.
- (1 << 0): Device supports hardware decoding.
- (1 << 1): Device supports hardware encoding.
- (1 << 2): Device supports software decoding.
- (1 << 3): Device supports software encoding.
- codecLevels
- Codec capabilities. See CodecCapLevels.