summaryrefslogtreecommitdiffstats
path: root/options.h
Commit message (Collapse)AuthorAgeFilesLines
* Move input options to option structUoti Urpala2008-04-301-0/+11
|
* Move key_fifo_size & doubleclick_time to options structUoti Urpala2008-04-291-0/+2
|
* Move vf_settings to options structUoti Urpala2008-04-261-0/+1
|
* options.h: Field order cosmeticsUoti Urpala2008-04-261-1/+1
| | | | | Move correct_pts and user_correct_pts next to each other. loop_times was accidentally added between them.
* Move vo_gamma_* to options structUoti Urpala2008-04-261-0/+8
|
* Move vd_use_slices to options structUoti Urpala2008-04-251-0/+1
|
* Move movie_aspect to options structUoti Urpala2008-04-251-0/+1
|
* Move screen_size_xy to options structUoti Urpala2008-04-251-0/+1
|
* Move opt_screen_size_[x|y] to options structUoti Urpala2008-04-251-0/+2
|
* Move flip and softzoom to options structUoti Urpala2008-04-251-0/+2
|
* Move vidmode to options structUoti Urpala2008-04-251-0/+1
|
* Move fullscreen to options structUoti Urpala2008-04-251-0/+1
|
* Move -lavdopts to options structUoti Urpala2008-04-251-0/+19
|
* Move dvdsub_id to options structUoti Urpala2008-04-231-0/+1
| | | | | | | Name the field "sub_id" as it's not specific to DVD subs. Remove some other unused extern declarations together with dvdsub_id from demux_mkv.c and demux_lavf.c.
* Move audio_id and video_id to options structUoti Urpala2008-04-231-0/+2
|
* Move playback_speed to options structUoti Urpala2008-04-231-0/+1
|
* Move loop_times to option structUoti Urpala2008-04-231-0/+1
|
* Move vo_screenwidth,vo_screenheight to options structUoti Urpala2008-04-231-0/+2
|
* Move vo_dbpp to options structUoti Urpala2008-04-231-0/+1
|
* Move vo_ontop to options structUoti Urpala2008-04-231-0/+1
| | | | | | | | | | | Add a 'struct vo *vo' argument to the x11_common.c functions that access the variable so it's available as vo->opts->vo_ontop. To keep VOs using the old API working create a global vo variable that is set to the currently used old vo. "vo_ontop" will be #defined to "global_vo->opts->vo_ontop", and x11_common.h will add defines like the following when it is included by old VOs: #define vo_x11_ontop() vo_x11_ontop(global_vo) so that they will call the function according to the new declaration.
* Move correct_pts to options structUoti Urpala2008-04-231-0/+2
|
* Move options "vo" and "ao" to common structUoti Urpala2008-04-231-0/+2
|
* Start of new option systemUoti Urpala2008-04-231-0/+8
First part of option restructuring. The aim is to move option values from a huge number of separate globals to a single non-global struct. This part adds some support for parsing option values into such struct instances, and moves one example option (fixed-vo) to the struct.