|
| enum | StreamState {
StreamState::Idle = IDLE,
StreamState::PlayFromServer = PLAY_FROM_SERVER,
StreamState::PlayFromBuffer = PLAY_FROM_BUFFER,
StreamState::Stopped = STOPPED,
StreamState::Opening = OPENING,
StreamState::Buffering = BUFFERING,
StreamState::Opened = OPENED
} |
| | Media player state. More...
|
| |
| enum | PlaybackDirection { PlaybackDirection::Backwards = -1,
PlaybackDirection::Forwards = 1
} |
| | Playback direction. More...
|
| |
| enum | RtpTransport { RtpTransport::Tcp = RTP_TRANSPORT_TCP,
RtpTransport::Udp = RTP_TRANSPORT_UDP
} |
| | RTP transport. More...
|
| |
| enum | PixelFormat { PixelFormat::Yuv420P = PIX_YUV420P,
PixelFormat::Rgb24 = PIX_RGB24,
PixelFormat::Rgb32 = PIX_RGB32,
PixelFormat::Bgr32 = PIX_BGR32
} |
| | Pixel format. More...
|
| |
| enum | DecoderType { DecoderType::None = DECODER_NONE,
DecoderType::Hardware = DECODER_HW,
DecoderType::SoftwareMT = DECODER_SW_MT,
DecoderType::Software = DECODER_SW
} |
| | Decoder type. More...
|
| |
| enum | StreamType { StreamType::Audio = AUDIO,
StreamType::Video = VIDEO,
StreamType::Data = DATA,
StreamType::Unknown = UNKNOWN
} |
| | Stream type. More...
|
| |
| enum | RecordingStatus {
RecordingStatus::Idle = RECORDING_IDLE,
RecordingStatus::Started = RECORDING_STARTED,
RecordingStatus::Ending = RECORDING_ENDING,
RecordingStatus::Ended = RECORDING_ENDED,
RecordingStatus::Error = RECORDING_ERROR
} |
| | Recording video to file status. More...
|
| |
VideoNEXT media player API.