mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
6fec7ec734
Screen is now updated immediately (doesn't always work without correct-pts yet though). Doing audio unpause after the seek reset can display errors. Main loop code now checks for possible reasons to stop command processing instead of relying on each command to also set an explicit 'break' flag.
12 lines
280 B
C
12 lines
280 B
C
#ifndef MPLAYER_COMMAND_H
|
|
#define MPLAYER_COMMAND_H
|
|
|
|
struct MPContext;
|
|
struct mp_cmd;
|
|
|
|
void run_command(struct MPContext *mpctx, struct mp_cmd *cmd);
|
|
char *property_expand_string(struct MPContext *mpctx, char *str);
|
|
void property_print_help(void);
|
|
|
|
#endif /* MPLAYER_COMMAND_H */
|