kodi
Enumerations
enum INPUTSTREAM_FLAGS

Inputstream flags
To identify extra stream flags used on inputstream. More...

Enumerations

enum  INPUTSTREAM_FLAGS {
  INPUTSTREAM_FLAG_NONE = 0, INPUTSTREAM_FLAG_DEFAULT = (1 << 0), INPUTSTREAM_FLAG_DUB = (1 << 1), INPUTSTREAM_FLAG_ORIGINAL = (1 << 2),
  INPUTSTREAM_FLAG_COMMENT = (1 << 3), INPUTSTREAM_FLAG_LYRICS = (1 << 4), INPUTSTREAM_FLAG_KARAOKE = (1 << 5), INPUTSTREAM_FLAG_FORCED = (1 << 6),
  INPUTSTREAM_FLAG_HEARING_IMPAIRED = (1 << 7), INPUTSTREAM_FLAG_VISUAL_IMPAIRED = (1 << 8)
}
 

Detailed Description

Inputstream flags
To identify extra stream flags used on inputstream.

Used on kodi::addon::InputstreamInfo::SetFlags and kodi::addon::InputstreamInfo::GetFlags.

Note
These variables are bit flags which are created using "|" can be used together.

Enumeration Type Documentation

◆ INPUTSTREAM_FLAGS

Enumerator
INPUTSTREAM_FLAG_NONE 

0000 0000 0000 0000 : Empty to set if nothing is used

INPUTSTREAM_FLAG_DEFAULT 

0000 0000 0000 0001 : Default

INPUTSTREAM_FLAG_DUB 

0000 0000 0000 0010 : Dub

INPUTSTREAM_FLAG_ORIGINAL 

0000 0000 0000 0100 : Original

INPUTSTREAM_FLAG_COMMENT 

0000 0000 0000 1000 : Comment

INPUTSTREAM_FLAG_LYRICS 

0000 0000 0001 0000 : Lyrics

INPUTSTREAM_FLAG_KARAOKE 

0000 0000 0010 0000 : Karaoke

INPUTSTREAM_FLAG_FORCED 

0000 0000 0100 0000 : Forced

INPUTSTREAM_FLAG_HEARING_IMPAIRED 

0000 0000 1000 0000 : Hearing impaired

INPUTSTREAM_FLAG_VISUAL_IMPAIRED 

0000 0001 0000 0000 : Visual impaired