Functions | |
| const gavl_audio_format_t * | bgav_get_audio_format (bgav_t *bgav, int stream) |
| Get the format of an audio stream. | |
| const gavl_video_format_t * | bgav_get_video_format (bgav_t *bgav, int stream) |
| Get the format of a video stream. | |
| const gavl_video_format_t * | bgav_get_subtitle_format (bgav_t *bgav, int stream) |
| Get the video format of a subtitle stream. | |
| int | bgav_subtitle_is_text (bgav_t *bgav, int stream) |
| Check if a subtitle is text or graphics based. | |
| const char * | bgav_get_audio_description (bgav_t *bgav, int stream) |
| Get the description of an audio stream. | |
| const char * | bgav_get_audio_info (bgav_t *bgav, int stream) |
| Get additional info about an audio stream. | |
| const char * | bgav_get_video_description (bgav_t *bgav, int stream) |
| Get the description of a video stream. | |
| const char * | bgav_get_subtitle_description (bgav_t *bgav, int stream) |
| Get the description of a subtitle stream. | |
| const char * | bgav_get_subtitle_info (bgav_t *bgav, int stream) |
| Get additional info about a subtitle stream. | |
| int | bgav_can_pause (bgav_t *bgav) |
| Query if a track is pausable. | |
| const gavl_audio_format_t* bgav_get_audio_format | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get the format of an audio stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
| const gavl_video_format_t* bgav_get_video_format | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get the format of a video stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
| const gavl_video_format_t* bgav_get_subtitle_format | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get the video format of a subtitle stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
| int bgav_subtitle_is_text | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Check if a subtitle is text or graphics based.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
| const char* bgav_get_audio_description | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get the description of an audio stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
| const char* bgav_get_audio_info | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get additional info about an audio stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
Note, that you can trust the return value of this function only, if you enabled the stream (see bgav_set_audio_stream) and started the decoders (see bgav_start).
| const char* bgav_get_video_description | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get the description of a video stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
| const char* bgav_get_subtitle_description | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get the description of a subtitle stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
| const char* bgav_get_subtitle_info | ( | bgav_t * | bgav, | |
| int | stream | |||
| ) |
Get additional info about a subtitle stream.
| bgav | A decoder instance | |
| stream | Stream index (starting with 0) |
Note, that you can trust the return value of this function only, if you enabled the stream (see bgav_set_subtitle_stream) and started the decoders (see bgav_start).
| int bgav_can_pause | ( | bgav_t * | bgav | ) |
Query if a track is pausable.
| bgav | A decoder instance |
1.5.7