Click or drag to resize
StreamSources Enumeration
Defines the origin of audio or video frames.

Namespace: StreamCoders.Decoder
Assembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax
public enum StreamSources
Members
  Member nameValueDescription
NETWORK_RTP0

Indicating that frames were packetized for RTP transport.
For H.264 this means NAL-Unit plus startcodes are expected.
For MPEG-4.2 this means that startcodes are expected.

NETWORK_OTHER1

Indicates the frames were packetized to be suitable for network transport.

For H.264 this means NAL-Unit plus startcodes are expected and the scraping of frames (early release from deferred buffer) will be disabled.
For MPEG-4.2 this means that startcodes are expected.

FILE_MP42

Indicates the frames originate from an MP4 container.

Expected encapsulation (if any) are access units.

FILE_AVI3

Indicates the frames originate from an AVI container.

Expected encapsulation (if any) are access units.

FILE_FLV4

Indicates the frames originate from an AVI container.

Expected encapsulation (if any) are access units.

FILE_OTHER5

Indicates the frames originate from an unknown container.

Expected encapsulation (if any) are NAL-Units plus startcodes.

See Also