summaryrefslogtreecommitdiffstats
path: root/mpvcore/player/command.c
Commit message (Collapse)AuthorAgeFilesLines
* input: remove unused key_down_event commandwm42013-11-061-4/+0
| | | | | There's no real use-case for this, and is wasn't documented (didn't even appear on the "undocumented commands" list).
* configure: uniform the defines to #define HAVE_xxx (0|1)Stefano Pigozzi2013-11-031-29/+29
| | | | | | | | | | | | | | | | | | | | | The configure followed 5 different convetions of defines because the next guy always wanted to introduce a new better way to uniform it[1]. For an hypothetic feature 'hurr' you could have had: * #define HAVE_HURR 1 / #undef HAVE_DURR * #define HAVE_HURR / #undef HAVE_DURR * #define CONFIG_HURR 1 / #undef CONFIG_DURR * #define HAVE_HURR 1 / #define HAVE_DURR 0 * #define CONFIG_HURR 1 / #define CONFIG_DURR 0 All is now uniform and uses: * #define HAVE_HURR 1 * #define HAVE_DURR 0 We like definining to 0 as opposed to `undef` bcause it can help spot typos and is very helpful when doing big reorganizations in the code. [1]: http://xkcd.com/927/ related
* command: replace speed_mult with multiply commandwm42013-10-311-8/+0
| | | | The compatibility layer still takes care of the old speed_mult command.
* command: add generic "multiply" commandwm42013-10-311-0/+40
| | | | Essentially works like "add".
* command: add property to scale window sizewm42013-10-311-0/+35
|
* player: merge mp_osd.h into mp_core.hwm42013-10-301-1/+0
| | | | | | | | Just doing this because mp_osd.h and osd.c is not consistent. There are some other header files (command.h and screenshot.h), but since I don't feel too good about inflating mp_core.h, I'm not merging them, at least not yet.
* Move files part of the playback core to player sub-directorywm42013-10-301-0/+3019
All these files access mp_core.h and MPContext, and form the actual player application. They should be all in one place, and separate from the other sources that are mere utility helpers. Preparation for splitting mplayer.c into multiple smaller parts.