mirror of
https://github.com/mpv-player/mpv
synced 2025-01-13 02:16:40 +00:00
ee98209ab8
Add function set_osd_tmsg() which is a version of set_osd_msg that translates its format argument. Pass OSD message strings in the command.c property_osd_display table through mp_gtext before they're used.
30 lines
979 B
C
30 lines
979 B
C
#ifndef MPLAYER_MP_OSD_H
|
|
#define MPLAYER_MP_OSD_H
|
|
|
|
#define OSD_MSG_TV_CHANNEL 0
|
|
#define OSD_MSG_TEXT 1
|
|
#define OSD_MSG_SUB_DELAY 2
|
|
#define OSD_MSG_SPEED 3
|
|
#define OSD_MSG_OSD_STATUS 4
|
|
#define OSD_MSG_BAR 5
|
|
#define OSD_MSG_PAUSE 6
|
|
#define OSD_MSG_RADIO_CHANNEL 7
|
|
/// Base id for messages generated from the commmand to property bridge.
|
|
#define OSD_MSG_PROPERTY 0x100
|
|
#define OSD_MSG_SUB_BASE 0x1000
|
|
|
|
#define MAX_OSD_LEVEL 3
|
|
#define MAX_TERM_OSD_LEVEL 1
|
|
|
|
// These appear in options list
|
|
extern int term_osd;
|
|
|
|
struct MPContext;
|
|
|
|
void set_osd_bar(struct MPContext *mpctx, int type,const char* name,double min,double max,double val);
|
|
void set_osd_msg(int id, int level, int time, const char* fmt, ...);
|
|
void set_osd_tmsg(int id, int level, int time, const char* fmt, ...);
|
|
void rm_osd_msg(int id);
|
|
|
|
#endif /* MPLAYER_MP_OSD_H */
|