aboutsummaryrefslogtreecommitdiffhomepage
path: root/defaultopts.c
Commit message (Collapse)AuthorAge
* Support for multiple editions in MatroskaGravatar Daniel Dawson2009-12-04
| | | | | | | | Add code to intelligently choose an appropriate Matroska edition when there are several. Will choose, in descending order of preference: the edition chosen by the user through the option "-edition <edition id>" if it exists, the first edition with EditionFlagDefault set to 1 if there is one, or the first edition.
* Merge svn changes up to r29752Gravatar Uoti Urpala2009-10-06
| | | | | | | | | As part of merging subtitle-in-terminal changes make update_subtitles() only clear existing subtitles if called with the reset argument, and not try to set new ones. Later calls should set the needed new subtitles, and this change avoids some problems with trying to set subtitles when mp_property_sub() in command.c gets called from initialization code before full initialization.
* defaultopts.c: Minor simplificationGravatar Uoti Urpala2009-04-09
| | | | | This happens to avoid a compiler bug in the current GCC development branch.
* Merge branch 'ordered_chapters'Gravatar Uoti Urpala2009-04-08
|\
| * Add option -noordered-chapters.Gravatar Uoti Urpala2009-04-08
| |
| * Make -fixed-vo the defaultGravatar Uoti Urpala2009-04-02
| | | | | | | | | | | | | | | | Lack of -fixed-vo causes the output window to be recreated not only when changing files but also when switching the video stream, and that happens when moving from one ordered chapter source to another. Having the window disappear and reappear (likely at another location if it was ever moved) is just too annoying.
* | Merge svn changes up to r29117Gravatar Uoti Urpala2009-04-01
| |
| * options: Move osd_level and osd_duration to options structGravatar Uoti Urpala2009-03-31
|/
* Merge svn changes up to r28951Gravatar Uoti Urpala2009-03-14
|
* options: fix -ar default back to enabled if availableGravatar Uoti Urpala2009-02-16
| | | | | 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 r26979Gravatar Uoti Urpala2008-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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 structGravatar Uoti Urpala2008-05-01
|
* Move input options to option structGravatar Uoti Urpala2008-04-30
|
* Move key_fifo_size & doubleclick_time to options structGravatar Uoti Urpala2008-04-29
|
* Move vo_gamma_* to options structGravatar Uoti Urpala2008-04-26
|
* Move vd_use_slices to options structGravatar Uoti Urpala2008-04-25
|
* Move movie_aspect to options structGravatar Uoti Urpala2008-04-25
|
* Move flip and softzoom to options structGravatar Uoti Urpala2008-04-25
|
* Move -lavdopts to options structGravatar Uoti Urpala2008-04-25
|
* Move dvdsub_id to options structGravatar Uoti Urpala2008-04-23
| | | | | | | 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 structGravatar Uoti Urpala2008-04-23
|
* Move playback_speed to options structGravatar Uoti Urpala2008-04-23
|
* Move loop_times to option structGravatar Uoti Urpala2008-04-23
|
* Move correct_pts to options structGravatar Uoti Urpala2008-04-23
|
* Move options "vo" and "ao" to common structGravatar Uoti Urpala2008-04-23
|
* Start of new option systemGravatar Uoti Urpala2008-04-23
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.