summaryrefslogtreecommitdiffstats
path: root/defaultopts.c
Commit message (Collapse)AuthorAgeFilesLines
* options: Move osd_level and osd_duration to options structUoti Urpala2009-03-311-0/+2
|
* Merge svn changes up to r28951Uoti Urpala2009-03-141-0/+1
|
* options: fix -ar default back to enabled if availableUoti Urpala2009-02-161-1/+1
| | | | | Due to a missed config variable rename -noar was always the default. Make it default to enabled if available as it was before.
* Merge svn changes up to r26979Uoti Urpala2008-06-041-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | Most of the conflicts are trivial. Conflicts: Makefile cfg-mplayer.h input/input.c libmenu/vf_menu.c libmpcodecs/dec_video.c libmpcodecs/vf_expand.c libmpcodecs/vf_vo.c libmpdemux/demux_mkv.c libmpdemux/demuxer.c libmpdemux/demuxer.h libvo/vo_directfb2.c libvo/vo_gl.c libvo/vo_winvidix.c libvo/vo_xv.c libvo/vo_xvidix.c libvo/vo_xvmc.c libvo/x11_common.c mplayer.c osdep/timer-linux.c stream/cache2.c
* Move aspect.c options to option structUoti Urpala2008-05-011-0/+2
|
* Move input options to option structUoti Urpala2008-04-301-0/+9
|
* Move key_fifo_size & doubleclick_time to options structUoti Urpala2008-04-291-0/+2
|
* Move vo_gamma_* to options structUoti Urpala2008-04-261-0/+5
|
* Move vd_use_slices to options structUoti Urpala2008-04-251-0/+1
|
* Move movie_aspect to options structUoti Urpala2008-04-251-0/+1
|
* Move flip and softzoom to options structUoti Urpala2008-04-251-0/+1
|
* Move -lavdopts to options structUoti Urpala2008-04-251-0/+6
|
* 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 correct_pts to options structUoti Urpala2008-04-231-0/+7
|
* Move options "vo" and "ao" to common structUoti Urpala2008-04-231-0/+3
|
* Start of new option systemUoti Urpala2008-04-231-0/+9
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.