Include dependency graph for mediacontrol_internal.h:

Go to the source code of this file.
Data Structures | |
| struct | mediacontrol_Instance |
Defines | |
| #define | _VLC_MEDIACONTROL_INTERNAL_H 1 |
| #define | RAISE(c, m) |
| #define | RAISE_NULL(c, m) { RAISE( c, m ); return NULL; } |
| #define | RAISE_VOID(c, m) { RAISE( c, m ); return; } |
| #define | HANDLE_LIBVLC_EXCEPTION_VOID(e) |
| #define | HANDLE_LIBVLC_EXCEPTION_NULL(e) |
| #define | HANDLE_LIBVLC_EXCEPTION_ZERO(e) |
Functions | |
| libvlc_time_t | private_mediacontrol_unit_convert (libvlc_media_player_t *p_media_player, mediacontrol_PositionKey from, mediacontrol_PositionKey to, int64_t value) |
| libvlc_time_t | private_mediacontrol_position2microsecond (libvlc_media_player_t *p_media_player, const mediacontrol_Position *pos) |
| mediacontrol_RGBPicture * | private_mediacontrol_RGBPicture__alloc (int datasize) |
| Allocate a RGBPicture structure. | |
| mediacontrol_RGBPicture * | private_mediacontrol_createRGBPicture (int, int, long, int64_t l_date, char *, int) |
| #define _VLC_MEDIACONTROL_INTERNAL_H 1 |
| #define HANDLE_LIBVLC_EXCEPTION_NULL | ( | e | ) |
Value:
if( libvlc_exception_raised( e ) ) { \ RAISE( mediacontrol_InternalException, libvlc_exception_get_message( e )); \ libvlc_exception_clear( e ); \ return NULL; }
| #define HANDLE_LIBVLC_EXCEPTION_VOID | ( | e | ) |
Value:
if( libvlc_exception_raised( e ) ) { \ RAISE( mediacontrol_InternalException, libvlc_exception_get_message( e )); \ libvlc_exception_clear( e ); \ return; }
| #define HANDLE_LIBVLC_EXCEPTION_ZERO | ( | e | ) |
Value:
if( libvlc_exception_raised( e ) ) { \ RAISE( mediacontrol_InternalException, libvlc_exception_get_message( e )); \ libvlc_exception_clear( e ); \ return 0; }
| #define RAISE | ( | c, | |||
| m | ) |
| #define RAISE_NULL | ( | c, | |||
| m | ) | { RAISE( c, m ); return NULL; } |
| #define RAISE_VOID | ( | c, | |||
| m | ) | { RAISE( c, m ); return; } |
| mediacontrol_RGBPicture* private_mediacontrol_createRGBPicture | ( | int | , | |
| int | , | |||
| long | , | |||
| int64_t | l_date, | |||
| char * | , | |||
| int | ||||
| ) |
| libvlc_time_t private_mediacontrol_position2microsecond | ( | libvlc_media_player_t * | p_media_player, | |
| const mediacontrol_Position * | pos | |||
| ) |
| mediacontrol_RGBPicture* private_mediacontrol_RGBPicture__alloc | ( | int | datasize | ) |
Allocate a RGBPicture structure.
| datasize,: | the size of the data |
| libvlc_time_t private_mediacontrol_unit_convert | ( | libvlc_media_player_t * | p_media_player, | |
| mediacontrol_PositionKey | from, | |||
| mediacontrol_PositionKey | to, | |||
| int64_t | value | |||
| ) |
1.5.1