H264AccessUnitToolExtractParameterSet Method |
Extracts SPS/PPS from an AVC Configuration Record.
Namespace: StreamCoders.EncoderAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax public MediaBuffer<byte> ExtractParameterSet(
byte[] avcC,
int offset,
int count
)
Public Function ExtractParameterSet (
avcC As Byte(),
offset As Integer,
count As Integer
) As MediaBuffer(Of Byte)
public:
MediaBuffer<unsigned char>^ ExtractParameterSet(
array<unsigned char>^ avcC,
int offset,
int count
)
member ExtractParameterSet :
avcC : byte[] *
offset : int *
count : int -> MediaBuffer<byte>
Parameters
- avcC
- Type: SystemByte
The AVC Configuration record.
- offset
- Type: SystemInt32
The offset in the array.
- count
- Type: SystemInt32
Number of relevant bytes in the array.
Return Value
Type:
MediaBufferByte
The extracted parameter set.
See Also