aboutsummaryrefslogtreecommitdiffhomepage
path: root/DOCS
Commit message (Collapse)AuthorAge
...
* manpage: put explicit links to config file path detailsGravatar wm42015-04-28
| | | | | It seems users still have trouble finding the exact paths, especially on Windows. Maybe this helps.
* command: change the default action for rescan_external_filesGravatar wm42015-04-28
| | | | | | | | Now the rescan_external_files command will by default reselect the audio and subtitle streams. This should be more intuitive. Client API users and Lua scripts might break, but can be fixed in a backward-compatible way by setting the mode explicitly.
* input.conf: map L to toggle infinite loopingGravatar wm42015-04-27
|
* ao_null: add an option for testing channel layout selectionGravatar wm42015-04-27
|
* manpage: update mpv IRC channelsGravatar Niklas Haas2015-04-27
| | | | | Moved to #mpv and #mpv-devel, respectively. Travis details were also updated.
* manpage: update colormatrix property descriptionGravatar wm42015-04-27
|
* DOCS/client-api-changes: fix release markerGravatar wm42015-04-25
| | | | | The release was pushed back and now actually happened; the marker became incorrect.
* manpage: move --autosync descriptionGravatar wm42015-04-24
| | | | | | This was in the "Window" section. It has absolutely nothing to do with windows. Move it to the "Miscellaneous" section instead. The "--mc" option, which has a similar function, was already there.
* player: add --window-scale optionGravatar wm42015-04-24
| | | | Requested. Works similar to the property with the same name.
* man: fix PDF buildGravatar Martin Herkt2015-04-24
| | | | | | | | | | | | | | The build failed because rst2pdf apparently has problems with page breaks. In this case, the link to the ALSA upmix guide was causing a page break in an admonition block. My guess is that rst2pdf screws up when it can’t fill at least one line of text following a page break, so I worked around this by making that paragraph a little longer. Seems to do the trick. I also shortened the URL using GitHub’s service because it was causing some rather unsightly formatting in the manpage output. Maybe we should just build HTML instead of a PDF.
* DOCS/mplayer-changes: Eleborate on joystick inputGravatar robin007bond2015-04-23
| | | | | | | | | | Since joystick support was removed and is a difference from mplayer, it should be included in the document with the mplayer changes. It will help new users who were using mplayer's joystick support to seek alternatives when switching to mpv. It will also be helpful for people that had problems with the joystick support in mplayer (for example, by incorrectly recognizing other input devices as joystick) to know that those problems won't persist in mpv.
* manpage: document ff-index sub-propertyGravatar wm42015-04-23
|
* demux_mkv: limit timestamp fixing to 1ms maxGravatar wm42015-04-23
| | | | | And also fix the description. It didn't actually reflect what the code did.
* demux_mkv: attempt to fix rounded timestampsGravatar wm42015-04-23
| | | | | There is some potential for breakage. If it happens, this might have to be disabled by default.
* lua: add utils.format_json() functionGravatar wm42015-04-22
| | | | Requested. Why not.
* command: demuxer-cache-time propertyGravatar xylosper2015-04-21
| | | | | | | | Approximate time of video buffered in the demuxer, in seconds. Same as `demuxer-cache-duration` but returns the last timestamp of bufferred data in demuxer. Signed-off-by: wm4 <wm4@nowhere>
* client API: add a screenshot_raw commandGravatar wm42015-04-20
| | | | | | | | | Requested. The wild code for setting up the mpv_node probably deserves to be cleaned up later. Fixes #1800.
* client API: add MPV_FORMAT_BYTE_ARRAY typeGravatar wm42015-04-20
| | | | | | | | | | | | This will be used in the following commit, which adds screenshot_raw. The reasoning is that this will be better for binding scripting languages. One could special-case the screenshot_raw commit and define fixed semantics for passing through a pointer using the current API, like formatting a pointer as string. But that would be ridiculous and unclean.
* player: change video-bitrate and audio-bitrate propertiesGravatar wm42015-04-20
| | | | | | | | | | | | | | Remove the old implementation for these properties. It was never very good, often returned very innaccurate values or just 0, and was static even if the source was variable bitrate. Replace it with the implementation of "packet-video-bitrate". Mark the "packet-..." properties as deprecated. (The effective difference is different formatting, and returning the raw value in bits instead of kilobits.) Also extend the documentation a little. It appears at least some decoders (sipr?) need the AVCodecContext.bit_rate field set, so this one is still passed through.
* command: disc-mouse-on-button propertyGravatar xylosper2015-04-21
| | | | | This property indicates whether mouse cursor is located on button or not for disc naviation.
* manpage: fix typoGravatar wm42015-04-19
|
* options: change [...] to balanced quotesGravatar wm42015-04-19
| | | | | | | | Useful for dealing with libavfilter's terrible graph syntax. Not strictly backwards compatible (for example "[a[b]" fails now - the "[" within the quote is interpreted now). But hopefully it's obscure enough not to warrant any kind of compatibility hacks.
* demuxer_lavf: add an option for disabling hacksGravatar wm42015-04-17
|
* options: clarify quoting for option values starting with %Gravatar wm42015-04-17
|
* vf_screenshot: remove this filterGravatar wm42015-04-16
| | | | | | It's entirely useless, especially now that vo.c handles screenshots in a generic way, and requires no special VO support. There are some potential weird use-cases, but actually I've never seen it being used.
* command: let screenshot_to_file command overwrite filesGravatar wm42015-04-16
| | | | | | | The old behavior does not make too much sense after all. If you don't want to file to be overwritten, the user can check this manually. This is a change in behavior - let's hope nobody actually relied on it.
* video: do not show decoder framedrops if they're not requestedGravatar wm42015-04-16
| | | | | | | | | | | libavcodec makes it impossible to distinguish dropped frames (requested with AVCodecContext.skip_frame), and cases when the decoder simply does not return a frame by default (such as with VP9, which has invisible reference frames). This confuses users when decoding VP9 video. It's basically a cosmetic issue, so just paint it over by ignoring them if framedropping is disabled.
* vo_drm: add missing documentationGravatar Marcin Kurczewski2015-04-16
|
* options: --hr-seek=always is the same as --hr-seek=yesGravatar wm42015-04-15
| | | | | | It seems this choice was never documented. "always" is actually older than "yes", so just declare it a compatibility value for "yes". (Also move it before "always" in the C code to make this clear.)
* manpage: clarify --af=formatGravatar Kevin Mitchell2015-04-15
|
* manpage: remove extra newline at end of af.rstGravatar Kevin Mitchell2015-04-15
|
* mapage: update --hwdec=vaapi description againGravatar wm42015-04-14
| | | | | Supposedly this is not an issue anymore after we've changed the code to use texture-from-pixmap.
* vo_opengl: change dwmflush option valuesGravatar wm42015-04-14
| | | | | Use a choice instead of an integer. This is incompatible, but I'm not adding any compatibility since this option was added recently.
* man/options: make --audio-display easier to findGravatar Martin Herkt2015-04-13
| | | | | | I tried to find that option by searching for terms like “cover art” and got nothing. I imagine most users would look for similar terms. Hope this helps.
* DOCS/contribute.md: Add guideline for pull requestsGravatar robin007bond2015-04-13
| | | | | | | This commit is to prevent changes being merged into upstream, without being known if it is tested or not. Signed-off-by: wm4 <wm4@nowhere>
* DOCS/waf: Edit --enable-feature sentencesGravatar robin2015-04-12
| | | | | | | The gender specific pronoun is changed, since we shouldn't assume the gender of the user. The sentence itself is also changed to be more correct in general.
* vo_opengl: unify blend-subtitles-res and blend-subtitlesGravatar wm42015-04-11
|
* manpage: mention how pseudo-gui mode is enabled on win32Gravatar wm42015-04-11
|
* vo_opengl: add blend-subtitles-resGravatar Niklas Haas2015-04-10
| | | | | This can be used to draw the subtitles at the video's native res, which can make them look more natural and increases performance.
* manpage: document pseudo-gui stuffGravatar wm42015-04-10
|
* opengl: win32 - add option 'dwmflush' to sync in DWMGravatar Avi Halachmi (:avih)2015-04-09
| | | | | | | This could help in cases where the DWM (Windows desktop compositor) adds another layer of bufferring and therefore the SwapBuffers timing could get messed up. Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl_cb: deprecate mpv_opengl_cb_render()Gravatar wm42015-04-09
| | | | Its vp parameter made no sense anymore. Introduce a new one.
* vo_opengl_cb: add a function to report vsync timeGravatar wm42015-04-09
| | | | | | | And also let vo.c know of it. Currently, this does not help much, but will facilitate future improvements.
* manpage: lua: clarify timer usageGravatar wm42015-04-08
| | | | | | This seems to come up often. I guess '.' vs. ':' for Lua calls is confusing, and this part of the scripting API is the only one which requires using it.
* manpage: remove confusing statementGravatar wm42015-04-07
| | | | | | There still might be FFmpeg demuxers which mess up if audio is disabled (like it happened to the FLV demuxer), but these are bugs and shouldn't happen.
* command: new subproperty for video-params: gammaGravatar Niklas Haas2015-04-04
|
* vf_format: add gamma override optionGravatar Niklas Haas2015-04-04
|
* vo_opengl: make csp options consistent with vf_formatGravatar Niklas Haas2015-04-04
|
* csputils: add some missing colorspacesGravatar Niklas Haas2015-04-04
| | | | | With target-prim and target-trc it makes sense to include some common colorspaces that aren't strictly speaking used for video.
* man/vf: update vf_format documentationGravatar Niklas Haas2015-04-04
| | | | Brings it in line with changes to vo_opengl options.