view mp_osd.h @ 27136:25c8d906abb1

r24808: Add a space behind openal to get minimum length of 7 r24809: Replace Polyp- by PulseAudio output. r24820: Clarify that -vo gl bicubic filtering is B-spline, not polynomial r24837: Spelling, vf_ow parameters are optional. r24875: program switching in demux_lavf r24897+r24909 (already applied by Diego in r24955, at least in parts - did not check) r24924: Add audio filter scaletempo r24950: Explain new ao_pulse option syntax r24952, r24953, r24954: (appears to be in current version already, probably due to r24955) r25134: Fix a wrong cmdline example of using -menu-chroot.
author kraymer
date Mon, 30 Jun 2008 12:40:11 +0000
parents 4129c8cfa742
children 2e3751815a21
line wrap: on
line source

#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 MAX_OSD_LEVEL 3
#define MAX_TERM_OSD_LEVEL 1

// These appear in options list
extern int osd_duration;
extern int term_osd;

void set_osd_bar(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 rm_osd_msg(int id);

#endif /* MPLAYER_MP_OSD_H */