summaryrefslogtreecommitdiffstats
path: root/DOCS
Commit message (Collapse)AuthorAgeFilesLines
* manpage: explain deprecated usage of multiple items with *-addDave2020-01-071-6/+9
|
* DOCS/encoding.rst: remove deprecated usage of multiple items with *-addDave2020-01-071-2/+6
| | | | | | 4a084c0df8fd8aaa66073839d97e544c3b6903e7 deprecated multiple -add items with d3e3bd43074ddd8f4c8829a7454b9f855454f462 explicitly warning against this usage.
* libarchive: some shitty hack to make opening slightly fasterwm42020-01-041-0/+12
| | | | | | | | See manpage additions. The libarchive behavior mentioned in the last paragraph there is technically unrelated, but makes this new option mostly pointless. See: #7182
* manpage: update discussion of nvidia hardware accelerationPhilip Langdale2019-12-291-26/+25
| | | | | The text here has become somewhat outdated over the years, and it's worth updating to reflect the current situation.
* video: cuda: add explicit context creation for copy hwaccelsPhilip Langdale2019-12-291-8/+9
| | | | | | | | | | | | | | | | | | | | | In the distant past, the cuviddec backed copy hwaccel could be configured directly using lavc options. However, since that time, we gained support for automatic hw ctx creation which ended up bypassing the lavc options. Rather than trying to find a way to pass those options again, a better idea is to make the 'cuda-decode-device' option, used by the interop hwaccels, work for the copy hwaccels too. And that's pretty simple: we have to add a create function that checks the option and passes it on to ffmpeg. Note that this does require a slight re-jig to the configuration flags, as we now have a scenario where we want to build with support for the cuda copy hwaccels but not the interop ones. So we need a distinct configuration flag for that combination. Fixes #7295.
* command: add a playlist-unshuffle commandwm42019-12-281-0/+6
| | | | | | Has a number of restrictions. See: #2491, #7294
* Release 0.31.0v0.31.0release/0.31sfan52019-12-281-1/+3
|
* DOCS/tech-overview.txt: some more blablawm42019-12-281-27/+67
| | | | | This file is only complete once it contains the entire mpv source code in English form.
* DOCS/tech-overview.txt: add lots of irrelevant blablawm42019-12-271-0/+373
| | | | | | Thought it might be useful to document some of these things, instead of explaining them over and over again. But I can guarantee that nobody will ever read all this. (Independent of its quality and completeness.)
* manpage: fix example in --hwdec sectionwm42019-12-241-1/+3
|
* vd_lavc: remove hwdec-by-default special case for RPIwm42019-12-241-0/+3
|
* vd_lavc: more hwdec autoselect nonsensewm42019-12-241-4/+36
| | | | | | | | | | | | | Add an "auto-safe" mode, mostly triggered by Ubuntu's nonsense to force hwdec=vaapi in the global config file in their mpv package. But to be honest it's probably something more people want. This is implemented as explicit whitelist. On Windows, HEVC/Intel is sometimes broken, but it's still whitelisted, and in theory we'd need a detailed whitelist of device names etc. (like for example browsers tend to do). On OSX, videotoolbox is a pretty bad choice, but unfortunately the only one, so it's whitelisted too. There may be a larger number of hwdec wrappers that work anyway, and I'm for example ignoring Android.
* js: support mp.create_osd_overlay (match 07287262)Avi Halachmi (:avih)2019-12-231-0/+4
| | | | | The legacy mp.set_osd_ass(...) is still supported (but also still undocumented) as a wrapper for the new mp.create_osd_overlay(...).
* osc: add option to disable santa hatNicolas F2019-12-231-0/+5
| | | | | | | | | | A minority of users have expressed a dislike of hats, calling them "cancer [that] don't belong in software" describing the people who add them as "shitty circlejerks" and "chucklefuck." While I personally disagree with those opinions, it's probably easier to let them have it their way. For that reason this adds the option `greenandgrumpy` to the osc, which allows users to disable the hat.
* client API, lua: add new API for setting OSD overlayswm42019-12-232-0/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | Lua scripting has an undocumented mp.set_osd_ass() function, which is used by osc.lua and console.lua. Apparently, 3rd party scripts also use this. It's probably time to make this a public API. The Lua implementation just bypassed the libmpv API. To make it usable by any type of client, turn it into a command, "osd-overlay". There's already a "overlay-add". Ignore it (although the manpage admits guiltiness). I don't really want to deal with that old command. Its main problem is that it uses global IDs, while I'd like to avoid that scripts mess with each others overlays (whether that is accidentally or intentionally). Maybe "overlay-add" can eventually be merged into "osd-overlay", but I'm too lazy to do that now. Scripting now uses the commands. There is a helper to manage OSD overlays. The helper is very "thin"; I only want to force script authors to use the ID allocation, which may help with putting multiple scripts into a single .lua file without causing conflicts (basically, avoiding singletons within a script's environment). The old set_osd_ass() is emulated with the new API. The JS scripting wrapper also provides a set_osd_ass() function, which calls internal mpv API. Comment that part (to keep it compiling), but I'm leaving it to @avih to finish the change.
* manpage: document that --vo=xv breaks "boxvideo"wm42019-12-231-0/+3
| | | | (OK, maybe a bit redundant, since vo=xv breaks a lot of stuff.)
* client API: deprecate tick eventwm42019-12-221-0/+1
| | | | | This is conceptually outdated and should not exist. This affects Lua scripting and JSON IPC too.
* js: read_options: on_update: don't re-read the config fileAvi Halachmi (:avih)2019-12-221-1/+1
| | | | | | | | | | | | | Now that 00af718a made the lua read_options behavior much more similar to the js behavior, the main difference was that lua does not re-read the config file at on_update (but it does re-apply its stored content) while js did re-read it. Now the js on_update also does not re-read the config file and instead applies its stored original content. This is slightly hacky by adding an undocumented optional 4th argument to read_options which allows overriding the config file content.
* lua: change runtime option change behaviorwm42019-12-221-0/+6
| | | | | | | | | | | | As described in the manpage changes. This makes more sense than the previous approach, where options could "unexpectedly" stick. Although this is still a somewhat arbitrary policy (ask many people and you'd get a number of different expectations on what should happen), I think that it reflects what mpv's builtin stuff does. All the copying is annoying, but let's just hope nobody is stupid enough to change these properties per video frame or something equally ridiculous.
* video/out/x11: add fs-screen fallbackNicolas F2019-12-222-2/+4
| | | | | | | | | | | | | Apparently there are two different options for controlling which screen an mpv window goes onto: --fs-screen and --screen. The former explicitly only controls which screen a fullscreened window goes onto, but does not appear to actually care about this option at runtime for X11, so pressing f will always fullscreen to the screen mpv is currently on. This means the option is of questionable usefulness for starters. Making it worse, if you use --screen=1 --fs, mpv will actually fullscreen on screen 0, because --fs-screen isn't set. Instead of doing that, fall back to whatever --screen is set to.
* js: read_options: support on_update (match 478a321d)Avi Halachmi (:avih)2019-12-211-1/+2
| | | | | | | | | | | | | This is a bit different than the lua code: on script-opts change it simply re-applies the conf-file and script-opts to the options object, and if this results in any changed value at options then on_update is called with the changelist as argument. This allows a value to revert back to the conf-file value if the matching script-opts key had a different value and then got deleted. It also guarantees to call back whenever the options object is modified, which the lua code doesn't do (e.g. if the caller changed a value and the observer changed it back - it won't detect a change).
* lua: add a helper for runtime script option changeswm42019-12-201-2/+9
| | | | | A script can use this to easily get runtime updates. (Even if script-opts is sort of clunky.)
* manpage: add osc and console default keys to keyboard control sectionwm42019-12-201-0/+6
| | | | | | Although they were not undocumented, they were hidden away in the respective manpage sections. It's a good idea to add them to the main keyboard bindings overview too. stats.lua also did this.
* console: use hidpi scale reportingwm42019-12-201-1/+4
| | | | | | | | I decided to factor this into the user's scale option (instead of somehow using it as default if the user has not specified it), because it makes the option handling simpler, and won't break things like per-screen DPI if the user only wants to scale the console font by a factor.
* command: add property returning hidpi scalewm42019-12-201-0/+6
|
* demux: add an option to control tag charsetwm42019-12-201-0/+13
| | | | | | Fucking gross that you need this in almost-2020. Fixes: #7255
* edl: accept arbitrary pathswm42019-12-201-3/+0
| | | | | | | | | | Until now, .edl files accepted only "simple" filenames, i.e. no relative or absolute paths, no URLs. Now that the origin bullshit is a bit cleaned up and enforced in the EDL code, there's absolutely no reason to keep this. The new code behaves somewhat similar to playlists. (Although playlists are special because they're not truly recursively opened.)
* js: require: allow custom module search paths via mp.module_pathsAvi Halachmi (:avih)2019-12-191-0/+8
|
* DOCS: js: minor update for modules/requireAvi Halachmi (:avih)2019-12-191-7/+10
|
* manpage: lua: mention what happens on unavailable propertieswm42019-12-191-0/+4
| | | | Kind of as big one if the user unexpectedly gets nil instead of a value.
* command, lua: add a way to share data between scriptswm42019-12-181-0/+22
| | | | | | | | | Very primitive and dumb, but fulfils its purpose for the next commits. I chose this specific implementation because it has the lowest footprint in command.c, without resorting to crazy hacks such as sending messages between scripts (which would be hard to coordinate especially on startup).
* options: deprecate -del for list optionswm42019-12-184-6/+8
| | | | | | I never liked that these used integer indexes. -remove should have existed from the start. This deprecation is yet another empty threat, though.
* options: add -remove action to list optionswm42019-12-183-5/+24
| | | | | | Actually I wanted this for key/value lists only, but add it to the others for consistency too. (For vf/af it barely makes even sense, but anyway.)
* options: make keys in key/value lists uniquewm42019-12-181-0/+3
| | | | | | | | | | | | | | I don't even know anymore whether this was intended or not. Certain use cases for the "-o" options might require this. These options are for passing general FFmpeg options. These are translated to av_opt_set() calls, which may or may not accumulate the option values on multiple calls with the same option name (how should I know?). Anyway, it seems crazy to allow non-unique keys, so make them unique. The ad-hoc nature of the option code makes this wonderfully complicated (when I wrote that this code is cursed, I meant it). In combination with lazy testing, it probably means there are lots of bugs here.
* options: increase consistency between list options and document themwm42019-12-185-30/+129
| | | | | | | | | | | | | | | | | | | | Whenever I deal with this, I have to look at the code to make sense of this. And beyond that, there are some strange inconsistencies. (I think this code is cursed. It always was, and maybe always will be.) Although the manpage claimed that using multiple items for -add etc. is deprecated, string list options didn't warn against it. So add the warning, and add something in the changelog (even though nobody will ever read this). The manpage mentioned --vf-append, but this didn't even exist. So add it, I guess. We encourage using -append for the other option types, so for consistency, it should work on filter options. (And I already tricked me into believing it existed when I mentioned it in the manpage.) Make the "operations" table separate for all option types, and mention the option type on every single of the top-level list options.
* command: change "window-scale" property behaviorwm42019-12-162-4/+18
| | | | | | | | | This is similar to the "edition" change. I considered making this go through deprecation, but didn't have a good idea how to do that. Maybe it's fine, because this is pretty obscure. But it might break some API users/scripts (it certainly broke stats.lua), and all I have to say is sorry for that.
* command: change "edition" property behaviorwm42019-12-162-5/+17
| | | | | | | | | See manpage/changelog changes. The purpose of this change is to removes another case of inconsistent property behavior. At first I wanted to make this go through deprecation before making a technically incompatible change, but then I considered this feature too obscure as that anyone would care.
* mac: remove Apple Remote supportder richter2019-12-154-9/+4
| | | | | | the Apple Remote has long been deprecated and abandoned by Apple. current macs don't come with support for it anymore. support might be re-added with the next commit.
* DOCS/contribute.md: fix a typowm42019-12-151-1/+1
|
* DOCS/contribute.md: should -> mustwm42019-12-151-8/+8
| | | | | | | | | | People somehow think "should" makes things optional, even though the wording was merely trying to account for the exception of the rule. I guess this means programming documents should sound like we're running a police state (which is also the ultimate outcome of all technological development, if you weren't aware). See: #7248
* DOCS: mention that mpv doesn't build with MSVCwm42019-12-141-2/+6
| | | | | | | | | | And troll Microsoft slightly while we're at it. But is it trolling if it's the truth? The level of C99 support in MSVC is probably a bit better than most people think, but it's by far not adequate. We need a bit of either C11 or GNU extensions too, and rely on some MinGW helpers (that look like they're provided by MS, except they're not).
* manpage: fix --vulkan-async-compute default valuewm42019-12-121-2/+2
| | | | | | | | | | Seems like this was silently changed to enabled by default on the change to libplacebo, without adjusting the manpage. Fix the documented default. Also add a comment about Nvidia; see referenced issue. Fixes: #7245
* console.lua: add this scriptJames Ross-Gowan2019-12-083-0/+112
| | | | | | | | | | | | | | | | | | | | | Merged from mpv-repl git repo commit 5ea2bf64f9c239f0326b02. Some changes were made on top of it: - Tabs were converted to 4 spaces indentation (plus some manual indentation fixes in some places). - All user-visible mentions of "repl" were renamed to "console". - The README was converted to a manpage (with heavy changes, some additions taken from stats.rst; rossy converted the key bindings table to RST). - The method to change the default key binding was changed. - Change minor detail about "font" default value setting (not a functional change). - Integrate into the player as builtin script, including an option to prevent loading it. Above changes and commit message done by wm4. Signed-off-by: wm4 <wm4@nowhere>
* DOCS: fix wayland-frame-wait offset value rangedudemanguy2019-12-051-1/+1
| | | | It actually goes down to -500 not -100.
* osc: rework window control configuration to add auto modePhilip Langdale2019-12-041-1/+7
| | | | | | | | | | | | | | | | To aid in discoverability, and to address the most common case directly, I'm adding an 'auto' mode for the window controls. In this case, we will show the controls if there is no window border and hide them if there are borders. This also respects the option being toggled at runtime. To ensure that it works in the wayland case, I've also made sure that the wayland code explicitly forces the option to false if decoration support is missing. Based on feedback, I've split the config in two, with one option for whether controls are active, and one for alignment. These are new enough that we can get away with ignoring compatibility.
* demux: do not make up demuxer_idwm42019-12-031-1/+5
| | | | | | | | | | | | | | | | | | The demuxer_id (exported in as "src-id" property) is supposed to be the native stream ID, as it exists in the file, or -1 if that does not exist (actually any negative value), or if it is unknown. Until now, an ID was made up if it was missing. That seems like strange non-sense, and I can't find the reason why it was done. But it was probably for convenience by the EDL stuff or so. Stop doing this. Fortunately, the src-id property was documented as being unavailable if the ID is not known. Even the code for this was present, it was just inactive until now. Extend input.rst with some explanations. Also fixing 3 other places where negative demuxer_id was ignored or avoided.
* vf_gpu: render subtitleswm42019-11-301-3/+3
| | | | | | | Pretty annoying affair. The vo_gpu code could of course not trigger rendering from filters yet, so it needed to be extended. Also, this uses some icky stuff made for vf_sub (and this was the reason I marked vf_sub as deprecated), so everything is terrible.
* osc: apply boxvideo margins to the window controlsPhilip Langdale2019-11-301-1/+3
| | | | | | It seems logical to account for the window controls if `boxvideo` is in use (which has the effect of reducing the size of the video so that the osc is not covering the video).
* vf_gpu: add video filter using vo_gpu's rendererwm42019-11-291-0/+36
| | | | | | | | | Probably pretty useless in this form (see: the wall of warnings), but someone wanted this. I think this should be useful to perform some automated tests, maybe. Fixes: #7194
* x11: implement unminimizationwm42019-11-291-1/+1
| | | | This appears to work with IceWM.
* command: change window-minimized/window-maximized to optionswm42019-11-292-10/+17
| | | | | Unfortunately, this breaks window state reporting for all VOs which supported it. This can be fixed later (for x11 in the next commit).
* man/osc: fix typoPhilip Langdale2019-11-291-1/+1
|
* x11: implement minimize and maximize related VOCTRLsPhilip Langdale2019-11-291-2/+9
| | | | | This allows the pseudo client side decorations to be used under x11, which might be desirable when running in border=no mode.
* osc: implement pseudo client side decorations via OSCPhilip Langdale2019-11-291-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Today, if window decorations are not present, either because they were disabled, or because the platform doesn't support them (eg: gnome-shell on wayland), there are no window controls, meaning it is not possible to minimize/maximize/close a window without knowing keyboard shortcuts. While you can imagine various ways of offering client side decorations, it is attractive to consider using OSC because that is functionality that we already have. The main work here is defining a separate input area from the main OSC box with its own buttons, etc. While we could probably handle auto-detection based on whether decorations are present or not, it's manually controlled for now. The window control logic is mostly disconnected from the OSC itself, except in the case of the `topbar` layout, where there has to be coordination so that the controls don't get drawn on top of each other. I had to do fine-positioning of the buttons based on the font on my system, so don't be surprised if it looks wrong elsewhere. You could also argue that window controls should be unscaled, even if the main OSC box is scaled, but I've not tried to do this.
* DOCS/interface-changes.rst: more details about track property changeswm42019-11-271-1/+4
| | | | | Another subtle thing that should be mentioned. May or may not matter to someone.
* command: change vid/aid/sid property behavior slightlywm42019-11-252-4/+9
| | | | | Again in line with the option-to-property bridge changes. As usual, this causes subtle behavior changes, which may affect some users.
* command: change af/vf property behavior wrt. filter creation failureswm42019-11-252-6/+12
| | | | | | The behavior is slightly different in a messy way. The change is in line with the option-to-property bridge removal mentioned some commits ago and thus is deemed necessary.
* command, options: deprecate old --display-fps behaviorwm42019-11-253-6/+18
| | | | | | | See changelog and manpage changes. (So much effort to fix an ancient dumb mistake for an option nobody should use anyway.)
* manpage: remove audio-file etc. caveat descriptionwm42019-11-241-13/+0
| | | | | | | These properties actually were removed/replaced, so there is no conflict with the options of the same name anymore. For example, there is no "audio-file" property anymore, but you still can set "audio-files" (and --audio-file simply maps to --audio-files-append).
* options: remove deprecated --playlist-pos aliaswm42019-11-242-4/+1
| | | | | This causes problems because it has the same name as a property which behaves differently.
* lua: make add_key_binding() rotate optional arguments correctlywm42019-11-231-1/+3
| | | | | | | | add_key_binding() makes the name argument optional (in weird Lua fashion), which did not work if there were additional arguments. So there is no way to avoid specifying a name while passing a rp argument. Fix this, declare this way of skipping the argument as deprecated, and allow passing name=nil as the preferred way to skip the name argument.
* input: export input.conf comments ot input-bindings propertywm42019-11-231-2/+7
| | | | | | | | | | | | | | This is supposed to turn input.conf comments into inline documentation. Whether this will be useful depends on whether there'll be a script using this field. This changes a small aspect of input.conf parsing fundamentally: this attempts to strip comments/whitespace from the command string, which will later be used to generate the command when a key binding is executed. This should not have any negative effects, but there could be unknown bugs. (For some reason, every command is parsed when input.conf is parsed, but it still only stores the string for the command. I guess that saves some minor amount of memory.)
* command, input: add input-bindings propertywm42019-11-231-0/+37
| | | | | | Read-only information about all bindings. Somewhat hoping someone can make a nice GUI-like overlay thing for it, which provides information about mapped keys.
* command: add command-list propertywm42019-11-231-0/+8
|
* input: add text produced by key to script key eventswm42019-11-222-1/+14
| | | | | | | Particularly for "any_unicode" mappings, so they don't have to special-case keys like '#' and ' ', which are normally mapped to symbolic names for input.conf reasons. (Though admittedly, this is a pretty minor thing, since API users could map these manually.)
* manpage: correct "complex" key binding descriptionwm42019-11-221-2/+2
| | | | | | | The key is never nil if it's invoked through the normal input path. The key name could be "" if mp_cmd.key_name==NULL. This should not happen, but there's no strong guarantee in input.c that it cannot happen, so whatever.
* manpage: improve "complex" key binding list of table entrieswm42019-11-221-6/+13
|
* input: introduce a pseudo key name that grabs all text inputwm42019-11-221-0/+5
| | | | | | | | | The intended target for this is the mpv.repl script, which manually added every single ASCII key as a separate key binding. This provides a simpler mechanism, that will catch any kind of text input. Due to its special nature, explicitly do not give a guarantee for compatibility; thus the warning in input.rst.
* player: Optionally validate st_mtime when restoring playback stateChris Down2019-11-202-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I often watch sporting events. On many occasions I get files with the same filename for each session. For example, for F1 I might have the following directory structure: F1/ FP1.mkv FP2.mkv FP3.mkv Qualification.mkv Race.mkv Since usually one simply watches one race after the other, I usually just rsync the new event's files over the old ones, so, for example, Race.mkv will be replaced from the file for the last event with the file from the new event. One problem with this is that I like to use --resume-playback for other kinds of media, so I have it on by default. That works great for, say, a movie, but doesn't work so well with this scheme, because you can trivially forget to pass --no-resume-playback on the command line and end up 2 hours in, watching spoilers as the race results scroll down the screen :-) This patch adds a new option, --resume-playback-check-mtime, which validates that the file's mtime hasn't changed since the watch_later configuration was saved. It does this by setting the watch_later configuration to have the same mtime as the file after it is saved. Switching back and forth between checking mtime and not checking mtime works fine, as we only choose whether to compare based on it, but we update the watch_later configuration mtime regardless of its value.
* manpage: extend documentation of key nameswm42019-11-191-0/+74
| | | | These things weren't written down anywhere yet.
* lua: report key name for "complex" key bindingswm42019-11-191-3/+4
| | | | This might make certain use cases less of a mess.
* manpage: deprecate input section commandswm42019-11-192-0/+8
| | | | | | | | | | These were a bad idea and are obscure. Scripting key mapping support still uses them, but this is not relevant to scripting authors, because the mpv provided helper code (defaults.lua) takes care of this. In addition, the OSC uses a legacy form of this. Hopefully, this input section stuff can be removed, and replaced by a simpler mechanism.
* DOCS/contribute.md: some clarificationswm42019-11-181-3/+7
| | | | Even if nobody ever reads this file.
* options: deprecate --video-sync=display-adropwm42019-11-171-0/+2
| | | | A stupid thing that will probably be in the way.
* manpage: add section about using mpv from programs and scriptswm42019-11-161-0/+45
| | | | | | | | | | | | | | | Give an overview over the various methods. I feel like I've written text like this over and over again (compatibility.rst and interface-changes.rst for example duplicate the list of mpv API abstractions), but such is life in hell. Use this in particular to strongly suggest not to parse terminal output. This suggestion got lost or de-emphasized at some point (maybe when removing MPlayer and "slave mode" references). Some of this text is still there, but it can be considered "fine print" at best, that nobody will see. Now we have it in a more prominent place. This is especially important since MPlayer-style use of mpv still seems to be prevalent, see for example #7153.
* options: deprecate --input-filewm42019-11-162-0/+4
| | | | | | I have no idea why this still exists, since we have --input-ipc-server. I think there was something about Windows, but the latter option is implemented even on Windows.
* demux_lavf: fight ffmpeg API some more and get the timeout setwm42019-11-161-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | It sometimes happens that HLS streams freeze because the HTTP server is not responding for a fragment (or something similar, the exact circumstances are unknown). The --timeout option didn't affect this, because it's never set on HLS recursive connections (these download the fragments, while the main connection likely nothing and just wastes a TCP socket). Apply an elaborate hack on top of an existing elaborate hack to somehow get these options set. Of course this could still break easily, but hey, it's ffmpeg, it can't not try to fuck you over. I'm so fucking sick of ffmpeg's API bullshit, especially wrt. HLS. Of course the change is sort of pointless. For HLS, GET requests should just aggressively retried (because they're not "streamed", they're just actual files on a CDN), while normal HTTP connections should probably not be made this fragile (they could be streamed, i.e. they are backed by some sort of real time encoder, and block if there is no data yet). The 1 minute default timeout is too high to save playback if this happens with HLS. Vaguely related to #5793.
* stream_lavf: set --network-timeout to 60 seconds by defaultwm42019-11-141-5/+8
| | | | | | | | | | | Until now, we've made FFmpeg use the default network timeout - which is apparently infinite. I don't know if this was changed at some point, although it seems likely, as I was sure there was a more useful default. For most use cases, a smaller timeout is more useful (for example recording something in the background), so force a timeout of 1 minute. See: #5793
* wayland: use hidpi-window-scale optiondudemanguy2019-11-121-1/+1
|
* manpage: expand MPV_LEAK_REPORT environment variable descriptionwm42019-11-091-1/+5
|
* wscript: add --enable-ta-leak-report optionwm42019-11-081-0/+1
| | | | Kind of more convenient because I'm lazy.
* test: make tests part of the mpv binarywm42019-11-081-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, each .c file in test/ was built as separate, self-contained binary. Each binary could be run to execute the tests it contained. Change this and make them part of the normal mpv binary. Now the tests have to be invoked via the --unittest option. Do this for two reasons: - Tests now run within a "properly" initialized mpv instance, so all services are available. - Possibly simplifying the situation for future build systems. The first point is the main motivation. The mpv code is entangled with mp_log and the option system. It feels like a bad idea to duplicate some of the initialization of this just so you can call code using them. I'm also getting rid of cmocka. There wouldn't be any problem to keep it (it's a perfectly sane set of helpers), but NIH calls. I would have had to aggregate all tests into a CMUnitTest list, and I don't see how I'd get different types of entry points easily. Probably easily solvable, but since we made only pretty basic use of this library, NIH-ing this is actually easier (I needed a list of tests with custom metadata anyway, so all what was left was reimplement the assert_* helpers). Unit tests now don't output anything, and if they fail, they'll simply crash and leave a message that typically requires inspecting the test code to figure out what went wrong (and probably editing the test code to get more information). I even merged the various test functions into single ones. Sucks, but here you go. chmap_sel.c is merged into chmap.c, because I didn't see the point of this being separate. json.c drops the print_message() to go along with the new silent-by-default idea, also there's a memory leak fix unrelated to the rest of this commit. The new code is enabled with --enable-tests (--enable-test goes away). Due to waf's option parser, --enable-test still works, because it's a unique prefix to --enable-tests.
* vo_gpu: vdpau actually works under EGLwm42019-11-071-2/+1
| | | | | | | | | | | | | | | | | | The use of glXGetCurrentDisplay() restricted this to the GLX backend. But actually it works under EGL as well. Removing the GLX-specific call and using the general mpv-internal method to get the X "Display" makes it work in mpv. I didn't know this. Nvidia didn't list this as extension in the EGL context when I still used their GPUs. Note that this might in theory break use of vdpau in some libmpv clients using the render API. But only if MPV_RENDER_PARAM_X11_DISPLAY is not used, and they relied on mpv using glXGetCurrentDisplay(). EGL does not provide such an API, and hwdec_vaapi.c also uses what hwdec_vdpau.c uses now. Considering that vaapi is preferable these days, it's not bad at all if these clients get "broken". They can be easily fixed by passing the display to mpv correctly.
* manpage: vdpauglx backend was removedwm42019-11-071-5/+0
| | | | A while ago. It was 100% useless.
* DOCS/contribute.md: add #include order to coding stylewm42019-11-071-0/+11
| | | | Another thing nobody will read, or consciously follow.
* DOCS/contribute.md, zimg: remove 2 instances of an extraneous "s"wm42019-11-071-1/+1
|
* stream: bump default buffer size from 2K to 64Kwm42019-11-061-1/+1
| | | | | | | | | (Only half of the buffer is actually used in a useful way, see manpage or commit which added the option.) Might have some advantages with broken network filesystem drivers. See: #6802
* stream: turn into a ring buffer, make size configurablewm42019-11-061-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some corner cases (see #6802), it can be beneficial to use a larger stream buffer size. Use this as argument to rewrite everything for no reason. Turn stream.c itself into a ring buffer, with configurable size. The latter would have been easily achievable with minimal changes, and the ring buffer is the hard part. There is no reason to have a ring buffer at all, except possibly if ffmpeg don't fix their awful mp4 demuxer, and some subtle issues with demux_mkv.c wanting to seek back by small offsets (the latter was handled with small stream_peek() calls, which are unneeded now). In addition, this turns small forward seeks into reads (where data is simply skipped). Before this commit, only stream_skip() did this (which also mean that stream_skip() simply calls stream_seek() now). Replace all stream_peek() calls with something else (usually stream_read_peek()). The function was a problem, because it returned a pointer to the internal buffer, which is now a ring buffer with wrapping. The new function just copies the data into a buffer, and in some cases requires callers to dynamically allocate memory. (The most common case, demux_lavf.c, required a separate buffer allocation anyway due to FFmpeg "idiosyncrasies".) This is the bulk of the demuxer_* changes. I'm not happy with this. There still isn't a good reason why there should be a ring buffer, that is complex, and most of the time just wastes half of the available memory. Maybe another rewrite soon. It also contains bugs; you're an alpha tester now.
* manpage: update input protocolswm42019-11-041-55/+20
| | | | | | | | | tv:// and pvr:// are gone, DVD almost. The former didn't really have any uses left, except webcams. Provide a replacement example for that. We don't need a separate section for DVD. If you use DVD, you're on your own. There's still enough documentation left to puzzle things together even if you don't read the source code.
* manpage: opengl-cb -> libmpvwm42019-11-041-5/+5
| | | | | This was renamed ages ago. Fix the outdated usage. Except where opengl-cb was correct.
* manpage: fix global config file path in --hwdec descriptionwm42019-11-041-1/+1
|
* manpage: shovel around --hwdec description (again)wm42019-11-041-25/+39
| | | | | | | Not like anyone reads it. Although putting all this text before listing the allowed option values sort of has the intention to discourage users from using the option at all. Advertise Ctrl+h, which is a decent way of enabling hardware decoding temporarily.
* DOCS/interface-changes.rst: improve entry about sws changeswm42019-11-031-2/+7
| | | | | This was pretty vague. Add some context, and explicitly mention how these options now affect screenshots.
* vd_lavc: don't keep packets for fallbacks if errors are toleratedwm42019-11-021-0/+5
| | | | | | | | | | | | | | The user can raise the number of tolerated hardware decoding errors. On the other hand, we have a static limit on packets that are "saved" for fallback handling (and that's a good idea to avoid unbounded memory usage). In this case, it could happen that the start of a file was fine after a fallback, but after that buffered amount of data, it would suddenly skip. It's more useful to skip buffering entirely if the number of tolerated decoding errors exceeds the fixed buffer. (And also, I'm sure nobody gives a shit about this feature.)
* manpage: update --framedrop optionwm42019-11-021-10/+26
| | | | | | | | | | | | | The statement about the display FPS is outdated by several years. "audio"-sync mode does not use the display FPS anymore, and that it's X11 only also isn't true anymore. These modes have separate implementations for audio and display video sync. modes, so the explanations are separate. Why the hell are users playing around with this anyway? The explanations are probably too special to make sense for anyone who doesn't know the code (and who knows the code doesn't need them anyway), but whatever.
* zimg: make --zimg-fast=yes defaultwm42019-11-021-1/+1
| | | | | | This is mostly just because of the odd RGB default gamma issue, which shouldn't have any real impact. This also sets allow_approximate_gamma, which I hope is fine for normal use cases.
* options: make --show-profile without parameters list all profileswm42019-10-311-1/+2
|
* manpage: fix another typowm42019-10-311-1/+1
|
* manpage: update --zimg-scaler defaultwm42019-10-311-3/+3
| | | | Forgotten in previous commit.
* sws_utils, zimg: destroy vo_x11 and vo_drm performancewm42019-10-313-3/+52
| | | | | | | | | | | | | | | | | | | | | | | | | Raise swscale and zimg default parameters. This restores screenshot quality settings (maybe) unset in the commit before. Also expose some more libswscale and zimg options. Since these options are also used for VOs like x11 and drm, this will make x11/drm/etc. much slower. For compensation, provide a profile that sets the old option values: sw-fast. I'm also enabling zimg here, just as an experiment. The core problem is that we have a single set of command line options which control the settings used for most swscale/zimg uses. This was done in the previous commit. It cannot differentiate between the VOs, which need to be realtime and may accept/require lower quality options, and things like screenshots or vo_image, which can be slower, but should not sacrifice quality by default. Should this have two sets of options or something similar to do the right thing depending on the code which calls libswscale? Maybe. Or should I just ignore the problem, make it someone else's problem (users who want to use software conversion VOs), provide a sub-optimal solution, and call it a day? Definitely, sounds good, pushing to master, goodbye.
* manpage: document stats page 3wm42019-10-311-0/+3
|
* interface-changes: fixup the location of d3d11-output-cspJan Ekström2019-10-301-1/+2
| | | | 0.30.0 is already cut, so +1 it is.
* vo_gpu/d3d11: add support for configuring swap chain color spaceJan Ekström2019-10-302-0/+15
| | | | | | | | | | | | | | | | By default utilizes the color space of the desktop on which the swap chain is located. If a specific value is defined, it will be instead be utilized. Enables configuration of the PQ color space (BT.2020 primaries, PQ transfer function) for HDR. Additionally, signals the swap chain color space to the renderer, so that the render looks correct without having to specify target-trc or target-prim manually. Due to all of the APIs being Win10+ only, will only work starting with Windows 10.
* osc: Unify bottom and topbar codeJan Janssen2019-10-281-2/+2
| | | | | | Among the pointless duplication the right timecode label was given some extra space that wasn't needed. Fixes: #6904
* manpage: Update information about default mouse bindingsCameron Cawley2019-10-281-3/+12
|
* DOCS/release-policy.md: clarify a few detailssfan52019-10-271-3/+7
|
* input: disable gamepad code by defaultwm42019-10-251-1/+1
| | | | | | | Enabling this by default probably causes a number of issues, such as breaking vo_sdl, or reacting to various input devices while the window is not focused. It's also pretty obscure, or at least new. Disable it by default.
* manpage: fix --script docswm42019-10-251-3/+3
| | | | | | | | This doesn't take a ',' separated list. --script is just an alias for --scripts--append. --scripts accepts a list, but uses the mplayer-inherited platform-dependent path separator. Fixes: #5996
* vo_gpu, options: don't return NaN through APIwm42019-10-252-6/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | Internally, vo_gpu uses NaN for some options to indicate a default value that is different depending on the context (e.g. different scalers). There are 2 problems with this: 1. you couldn't reset the options to their defaults 2. NaN is a damn mess and shouldn't be part of the API The option parser already rejected NaN explicitly, which is why 1. didn't work. Regarding 2., JSON might be a good example, and actually caused a bug report. Fix this by mapping NaN to the special value "default". I think I'd prefer other mechanisms (maybe just having every scaler expose separate options?), but for now this will do. See you in a future commit, which painfully deprecates this and replaces it with something else. I refrained from using "no" (my favorite magic value for "unset" etc.) because then I'd have e.g. make --no-scale-param1 work, which in addition to a lot of effort looks dumb and nobody will use it. Here's also an apology for the shitty added test script. Fixes: #6691
* manpage: fix RST formatting errorin vf_format descriptionwm42019-10-241-1/+1
|
* manpage: slap "do not use" label on vf_vapoursynthwm42019-10-241-4/+10
| | | | Plus some other minor corrections.
* vf: improve vf_vapoursynth descriptionwm42019-10-231-18/+71
| | | | | | | In particular describe dataflow issues (see #7020). Insert complaint that I'm wasting time on this crap instead of things that benefit me.
* input: add gamepad support through SDL2Stefano Pigozzi2019-10-231-0/+3
| | | | | | | | | | | | | | | The code is very basic: - only handles gamepads, could be extended for generic joysticks in the future. - only has button mappings for controllers natively supported by SDL2. I heard more can be added through env vars, there's also ways to load mappings from text files, but I'd rather not go there yet. Common ones like Dualshock are supported natively. - analog buttons (TRIGGER and AXIS) are mapped to discrete buttons using an activation threshold. - only supports one gamepad at a time. the feature is intented to use gamepads as evolved remote controls, not play multiplayer games in mpv :)
* DOCS/client-api-changes.rst: fix formattingsfan52019-10-221-0/+1
|
* manpage: finish an unfinished sentencewm42019-10-211-5/+7
|
* filters: extend vf_format so that it can convert color parameterswm42019-10-211-4/+44
| | | | | | | | | | | | | | | | | | | | | | | | | Form some reason (and because of my fault), vf_format converts image formats, but nothing else. For example, setting the "colormatrix" sub-parameter would not convert it to the new value, but instead overwrite the metadata (basically "reinterpreting" the image data without changing it). Make the historical mistake worse, and go all the way and extend it such that it can perform a conversion. For compatibility reasons, this needs to be requested explicitly. (Maybe this would deserve a separate filter to begin with, but things are messed up anyway. Feel free to suggest an elegant and simple solution.) This demonstrates how zimg can properly perform some conversions which swscale cannot (see examples added to vf.rst). Stupidly this requires 2 code paths, one for conversion, and one for overriding the parameters. Due to the filter bullshit (what was I thinking), this requires quite some acrobatics that would not be necessary without these abstractions. On the other hand, it'd definitely be more of a mess without it. Oh whatever.
* manpage: describe stride parameter in screenshot-raw commandwm42019-10-201-0/+6
| | | | | This is mentioned and called "obvious", but it's conceivable users don't necessarily know about the concept. Just explain it.
* wayland: add various render-related optionsdudemanguy2019-10-201-0/+15
| | | | | The newest wayland changes have some new logic that make sense to expose to users as configurable options.
* sws_utils: hack in zimg redirection supportwm42019-10-201-0/+15
| | | | | | | | | | | | | | | | Awful shit. I probably wouldn't accept this code from someone else, just so you know. The idea is that a sws_utils user can automatically use zimg without large code changes. Basically, laziness. Since zimg support is still very new, and I don't want that anything breaks just because zimg was enabled at build time, an option needs to be set to enable it. (I have especially especially obscure stuff in mind, which is all what libswscale is used in mpv.) This _still_ doesn't cause zimg to be used anywhere, because the sws_utils user has to opt-in by setting allow_zimg. This is because some users depend on certain libswscale features.
* video: add zimg wrapperwm42019-10-201-0/+8
| | | | | | | | | | | | | | | | This provides a very similar API to sws_utils.h, which can be used to convert and scale from one mp_image to another. This commit adds only the code, but does not use it anywhere. The code is quite preliminary and barely tested. It supports only a few pixel formats, and will return failure for many others. (Unlike libswscale, which tries to support anything that FFmpeg knows.) zimg itself accepts only planar formats. Supporting other formats requires manual packing/unpacking. (Compared to libswscale, the zimg API is generally lower level, but allows for more flexibility.) Only BGR0 output was actually tested. It appears to work.
* manpage: docoument stream-open-filename propertywm42019-10-201-0/+9
|
* manpage: fix a typowm42019-10-181-1/+1
|
* video, demux: rip out unused spherical metadata codewm42019-10-171-11/+0
| | | | | | This was preparation into something that never happened. Spherical video is a shit idea anyway.
* video: do not disable display-sync on A/V desyncwm42019-10-171-4/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | On a audio/video desync by more than 0.5 seconds, display-sync mode was disabled, and not enabled again (until playback restart, e.g. a seek). The idea was that it this only happens when this playback mode is broken and can't perform well anyway (A/V desync is a clear indication that something is very wrong). Instead of behaving like a god damn POS, it should revert to the more robust audio-sync mode. Unfortunately, this could happen sporadically due to temporary system performance problems, such as toggling fullscreen. Users didn't like this, and asked for a function to disable it, or to recover in some other way. This mechanism is questionable anyway. If an ignorant user enables display-sync, and encounters problems with it (without being able to determine that display-sync is messing up), the player will still behave like a POS on every playback, and even after every seek. It might actually be helpful to fail more consistently. Also, I've found that it's sill relatively reliable anyway even without this mechanism. So just remove the fallback. Fixes: #7048
* Reintroduce vo_wayland as vo_wlshmMichael Forney2019-10-171-0/+6
| | | | | | | | vo_wayland was removed during the wayland rewrite done in 0.28. However, it is still useful for systems that do not have OpenGL. The new wayland_common code makes vo_wayland much simpler, and eliminates many of the issues the previous vo_wayland had.
* manpage: update --hwdec descriptionwm42019-10-171-17/+8
| | | | | vdpaurb, vaapi-glx, and ANGLE's NV12-restriction are gone, making things much simpler.
* vo_gpu/d3d11: switch adapter selection to case-insensitive startswithJan Ekström2019-10-151-0/+4
| | | | | | This lets users set values such as "intel" or "nvidia" as the adapter vendor is generally noted in the beginning of the description string.
* manpage: attempt to remove some more cache option confusionwm42019-10-141-6/+7
| | | | | | OK, so --cache-secs is useless, because the default is set to 10 hours. And that part about the "maximum" was obviously a lie (I wonder if it simply changed at some point).
* vo_gpu/d3d11: add support for configuring swap chain formatJan Ekström2019-10-132-0/+14
| | | | | | | Query information on the system output most linked to the swap chain, and either utilize a user-configured format, or either 8bit RGBA or 10bit RGB with 2bit alpha depending on the system output's bit depth.
* DOCS: explicitly mention that property observing has an initial eventwm42019-10-081-1/+5
| | | | | This is definitely intended from the start, and it's generally useful, but for some reason it wasn't actually documented.
* DOCS: some corrections around cache optionswm42019-10-082-3/+10
|
* demux_edl: better selection of part which defines the track layoutwm42019-10-061-0/+30
| | | | | | | | | | | | | | | Someone crazy is trying to mix images with videos in EDL files. Putting an image as first thing into the EDL disabled audio, because the first EDL entry was used to define the layout. Change this. Make it user-configurable, and use a "better" heuristic to select the default otherwise. In theory, EDL could be easily extended to specify track layout and mapping of parts to virtual EDL tracks manually and in great detail. But I don't think it's worth it - who would bother using it? Fixes: #6764
* audio: do not try gapless if video is still ongoingwm42019-10-061-0/+2
| | | | | | | | | | In this case, gapless will most likely not work. It will result in (very slight) desync, or (more commonly with small buffer sizes), in an underflow. I think it would be legitimate to disable gapless at end of playback completely if video is enabled at all. But this would need an exception for cover art mode, so I guess the current solution is OK as well.
* DOCS/compatibility.rst: add this filewm42019-10-053-1/+183
| | | | | | | | | | | Another thing nobody will read. I'm attempting to document the rules by which incompatible changes can be made. These rules have always been present in this project, but I don't think they were written down. Or maybe they were, but I forgot where. I think due to the time of the day it became increasingly incoherent (not necessarily near the end of the text). Hopefully no logical or freudian lapses in there.
* DOCS/interface-changes.rst: simplify playback abort change descriptionwm42019-10-051-11/+2
| | | | | | | | | | | Although it was not true at the time this was written, both the "program" and "cache-size" are gone now. Since the changelog is for the entire next release, it makes no sense to mention these removed properties. It also happens to make the description of this much simpler, because it's a non-issue now. It's probably not even worth mentioning anymore.
* options: rename --video-aspect to --video-aspect-overrideNiklas Haas2019-10-043-17/+14
| | | | | | | | | | | | The justification for this is the fact that the `video-aspect` property doesn't work well with `cycle_values` commands that include the value "-1". The "video-aspect" property has effectively no change in behavior, but we may want to make it read-only in the future. I think it's probably fine to leave as-is, though. Fixes #6068.
* manpage: clarify some details about async. commands and "subprocess"wm42019-10-042-4/+36
| | | | | | | | | There's potential confusion about how long a process started with the "subprocess" command is allowed to live. Add some more explanations regarding "subprocess" specifics (such as the playback_only field), and things that apply to asynchronous commands in general. Partially for #7025.
* DOCS/tech-overview.txt: caching has changedwm42019-10-021-3/+4
|
* DOCS: Document DVB changes in interface-changes.Oliver Freyermuth2019-10-021-0/+9
|
* DOCS: Add documentation for dvbin-prog and dvbin-channel-switch-offset.Oliver Freyermuth2019-10-021-0/+16
|
* DOCS/contribute.md: split into sections, random changeswm42019-10-011-17/+61
| | | | | | | | Still trying to get people to read it. Even though I wanted to make it less of a wall of text and more readable, it got bigger. Oops. While I'm at it, violate my own rules and mix these mostly cosmetic changes with some actual rule changes and clarifications.
* vo_gpu/d3d11: add adapter name validation and listing with "help"Jan Ekström2019-09-291-3/+2
| | | | Not the prettiest way to get it done, but seems to work.
* video/d3d11: add adapter selection by name into d3d11 optionsJan Ekström2019-09-292-0/+12
| | | | | This lets the user define an adapter name that can then be passed further into the internals.
* vo: make swapchain-depth option generic for all VOsAnton Kindestam2019-09-281-8/+7
| | | | In preparation for making vo_drm able to use swapchain-depth
* stream_cb: add cancel_fn callbackAman Gupta2019-09-271-0/+1
| | | | | | | | This allows stream_cb backends to implement blocking behavior inside read_fn, and still get notified when the user wants to cancel and stop playback. Signed-off-by: Aman Gupta <aman@tmm1.net>
* video: add pure gamma TRC curves for 2.0, 2.4 and 2.6.Wessel Dankers2019-09-272-0/+9
|
* DOCS: don't lie about the keybind commanddudemanguy2019-09-261-2/+1
| | | | | It turns out you can actually bind keybind to another keybind. Just be careful with all the quotes.
* DOCS/contribute.md: talk about non-standard and C11 language featureswm42019-09-261-3/+4
| | | | | | | | | | | The C11 situation is complicated. For example, MinGW doesn't seem to have a full C11 implementation, but we pretty much rely on C11 atomics. Regarding "#pragma once": they say it's not standard because of unsolved (admittedly valid) issues. Btu still, fuck writing include guards, I just can't be bothered with this crap. (Does anyone even read this document?)
* client API: be explicit about usage rules and deadlocks some morewm42019-09-261-0/+2
| | | | | | | I think a popular libmpv application did exactly this: enabling advanced control, and then receiving deadlocks. I didn't confirm it, though. In any case, the API docs should avoid tricking users into making this easy mistake.
* client API: fix potential deadlock problems by throwing more shit at itwm42019-09-261-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The render API (vo_libmpv) had potential deadlock problems with MPV_RENDER_PARAM_ADVANCED_CONTROL. This required vd-lavc-dr to be enabled (the default). I never observed these deadlocks in the wild (doesn't mean they didn't happen), although I could specifically provoke them with some code changes. The problem was mostly about DR (direct rendering, letting the video decoder write to OpenGL buffer memory). Allocating/freeing a DR image needs to be done on the OpenGL thread, even though _lots_ of threads are involved with handling images. Freeing a DR image is a special case that can happen any time. dr_helper.c does most of the evil magic of achieving this. Unfortunately, there was a (sort of) circular lock dependency: freeing an image while certain internal locks are held would trigger the user's context update callback, which in turn would call mpv_render_context_update(), which processed all pending free requests, and then acquire an internal lock - which the caller might not release until a further DR image could be freed. "Solve" this by making freeing DR images asynchronous. This is slightly risky, but actually not much. The DR images will be free'd eventually. The biggest disadvantage is probably that debugging might get trickier. Any solution to this problem will probably add images to free to some sort of queue, and then process it later. I considered making this more explicit (so there'd be a point where the caller forcibly waits for all queued items to be free'd), but discarded these ideas as this probably would only increase complexity. Another consequence is that freeing DR images on the GL thread is not synchronous anymore. Instead, it mpv_render_context_update() will do it with a delay. This seems roundabout, but doesn't actually change anything, and avoids additional code. This also fixes that the render API required the render API user to remain on the same thread, even though this wasn't documented. As such, it was a bug. OpenGL essentially forces you to do all GL usage on a single thread, but in theory the API user could for example move the GL context to another thread. The API bump is because I think you can't make enough noise about this. Since we don't backport fixes to old versions, I'm specifically stating that old versions are broken, and I'm supplying workarounds. Internally, dr_helper_create() does not use pthread_self() anymore, thus the vo.c change. I think it's better to make binding to the current thread as explicit as possible. Of course it's not sure that this fixes all deadlocks (probably not).
* cocoa-cb: add support for 10bit opengl renderingder richter2019-09-261-0/+7
| | | | | | | this will request a 16bit half-float framebuffer instead if a 8bit integer framebuffer. Fixes #3613
* sub: make font provider user-selectablewm42019-09-251-2/+20
| | | | | | | | | | | | | | | | | | | | libass had an API to configure this since 2013. mpv always used ASS_FONTPROVIDER_AUTODETECT, because usually there's little reason to use anything else. The intention of the now added option is to allow users to disable use of system fonts. I didn't consider it worth the trouble to add the coretext and directwrite enum items from ASS_DefaultFontProvider. The "auto" choice will have the same effect if they're available. Also, the part of the code which defines the option does not necessarily have libass available (it's still optional!), so defining all enum items as choices is icky. I still added fontconfig, since that may be nice to emulate a nostalgic 2010 feeling of mpv freezing on fontconfig. The option for OSD is even less useful. (But you get it for free, and why pass up a chance to add yet another useless option?) This is not quite what was requested in #6947, but as close as it gets.
* vo_drm: 30bpp supportAnton Kindestam2019-09-221-5/+4
|
* manpage: update requirements for vdpau hwdec useNicolas F2019-09-221-1/+2
| | | | | | | | | | We default to EGL instead of GLX now, which means vdpau only works if we explicitly specify that we want a GLX context, as vdpau lacks interop for EGL. Update the hwdec documentation to reflect this. Concerns #6980.
* command: add expand-path to expand mpv pathsNicolas F2019-09-221-0/+12
| | | | | | | The question came up on how a client would figure out where screenshot-directory saved its screenshots if it contained mpv-specific expansions. This command should remedy the situation by providing a way for the client to ask mpv to do an expansion.
* command: add sub-start & sub-end propertiesStefano Pigozzi2019-09-221-0/+11
| | | | | These properties contain the current subtitle's start and end times. Can be useful to cut sample audio through the scripting interface.
* input: add keybind commandDudemanguy9112019-09-211-0/+7
|
* player: expose pixel aspect ratio, bitrate and rotation value on trackswnoun2019-09-212-0/+14
|
* DOCS/contribute.md: expand on recommended C99 usagewm42019-09-211-1/+1
|
* osd: allow sub-text to work even if sub-visibility is disableddudemanguy2019-09-211-3/+3
|
* demux_cue: auto-detect CUE sheet charsetwnoun2019-09-212-0/+4
|
* command: add video-add/video-remove/video-reload commandsPaul B Mahol2019-09-211-0/+9
|
* DOCS/contribute.md: license clarificationswm42019-09-211-0/+4
| | | | | | | | | Basically, both the license of the file and the preferred license of the project (LGPLv2.1+) counts. I'm doing that so that files with more liberal licenses don't get infected by LGPL, but allow copy & pasting to LGPL source files without jumping through lawyer bullshit hoops. Mention this in Copyright too.
* ao_pulse: add --pulse-allow-suspendedTérence Clastres2019-09-211-0/+4
| | | | | | | | | | This flag makes mpv continue using the PulseAudio driver even if the sink is suspended. This can be useful if JACK is running with PulseAudio in bridge mode and the sink-input assigned to mpv is the one JACK controls, thus being suspended. By forcing mpv to still use PulseAudio in this case, the user can now adjust the sink to an unsuspended one.
* player: update status line cache displaywm42019-09-201-5/+3
| | | | | | | | | | | Replace the "+" with "/". The "+" was supposed to imply that the cache is the sum of the time (demuxer cache) and the size in bytes (stream cache). We could not provide something nicer, because we had no idea how many seconds of media was buffered in the stream cache. Now the stream cache is done, and both the duration and byte size show the amount buffered in the demuxer cache. Hopefully "/" is better to imply this properly. Update the manpage explanations too.
* manpage: input.rst: fix a typowm42019-09-191-1/+1
|
* video: add vf_fingerprint and a skip-logo scriptwm42019-09-191-0/+71
| | | | | | | | | | | | | | | | | | | | | | | | | skip-logo.lua is just what I wanted to have. Explanations are on the top of that file. As usual, all documentation threatens to remove this stuff all the time, since this stuff is just for me, and unlike a normal user I can afford the luxuary of hacking the shit directly into the player. vf_fingerprint is needed to support this script. It needs to scale down video frames as part of its operation. For that, it uses zimg. zimg is much faster than libswscale and generates more correct output. (The filter includes a runtime fallback, but it doesn't even work because libswscale fucks up and can't do YUV->Gray with range adjustment.) Note on the algorithm: seems almost too simple, but was suggested to me. It seems to be pretty effective, although long time experience with false positives is missing. At first I wanted to use dHash [1][2], which is also pretty simple and effective, but might actually be worse than the implemented mechanism. dHash has the advantage that the fingerprint is smaller. But exact matching is too unreliable, and you'd still need to determine the number of different bits for fuzzier comparison. So there wasn't really a reason to use it. [1] https://pypi.org/project/dhash/ [2] http://www.hackerfactor.com/blog/index.php?/archives/529-Kind-of-Like-That.html
* options: deprecate --stream-recordwm42019-09-193-20/+36
| | | | It's inadequate for most uses. There are better mechanisms.
* command, demux: add AB-loop keyframe cache align commandwm42019-09-191-0/+9
| | | | | | | | | | | | | | | Helper for the ab-loop-dump-cache command, see manpage additions. This is kind of shit. Not only is this a very "special" feature, but it also vomits more messy code into the big and already bloated demux.c, and the implementation is sort of duplicated with the dump-cache code. (Except it's different.) In addition, the results sort of depend what a video player would do with the dump-cache output, or what the user wants (for example, a user might be more interested in the range of output audio, instead of the video). But hey, I don't actually need to justify it. I'm only justifying it for fun.
* manpage: mention that there's a Lua API for async commandswm42019-09-191-0/+2
| | | | | | But don't tell the reader which those APIs are. Hope the user will just search for "async" in the Lua section (lua.rst). But of course, nobody will ever care about anything related to this.
* demux, command: add a third stream recording mechanismwm42019-09-192-5/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | That's right, and it's probably not the end of it. I'll just claim that I have no idea how to create a proper user interface for this, so I'm creating multiple partially-orthogonal, of which some may work better in each of its special use cases. Until now, there was --record-file. You get relatively good control about what is muxed, and it can use the cache. But it sucks that it's bound to playback. If you pause while it's set, muxing stops. If you seek while it's set, the output will be sort-of trashed, and that's by design. Then --stream-record was added. This is a bit better (especially for live streams), but you can't really control well when muxing stops or ends. In particular, it can't use the cache (it just dumps whatever the underlying demuxer returns). Today, the idea is that the user should just be able to select a time range to dump to a file, and it should not affected by the user seeking around in the cache. In addition, the stream may still be running, so there's some need to continue dumping, even if it's redundant to --stream-record. One notable thing is that it uses the async command shit. Not sure whether this is a good idea. Maybe not, but whatever. Also, a user can always use the "async" prefix to pretend it doesn't. Much of this was barely tested (especially the reinterleaving crap), let's just hope it mostly works. I'm sure you can tolerate the one or other crash?
* demux: allow backward cache to use unused forward cachewm42019-09-191-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, the following could happen: if you set a 1GB forward cache, and a 1GB backward cache, and you opened a 2GB file, it would prune away the data cached at the start as playback progressed past the 50% mark. With this commit, nothing gets pruned, because the total memory usage will still be 2GB, which equals the total allowed memory usage of 1GB + 1GB. There are no explicit buffers (every packet is malloc'ed and put into a linked list), so it all comes down to buffer size computations. Both reader and prune code use these sizes to decide whether a new packet should be read / an old packet discarded. So just add the remaining free "space" from the forward buffer to the available backward buffer. Still respect if the back buffer is set to 0 (e.g. unseekable cache where it doesn't make sense to keep old packets). We need to make sure that the forward buffer can always append, as long as the forward buffer doesn't exceed the set size, even if the back buffer "borrows" free space from it. For this reason, always keep 1 byte free, which is enough to allow it to read a new packet. Also, it's now necessary to call pruning when adding a packet, to get back "borrowed" space that may need to be free'd up after a packet has been added. I refrained from doing the same for forward caching (making forward cache use unused backward cache). This would work, but has a disadvantage. Assume playback starts paused. Demuxing will stop once the total allowed low total cache size is reached. When unpausing, the forward buffer will slowly move to the back buffer. That alone will not change the total buffer size, so demuxing remains stopped. Playback would need to pass over data of the size of the back buffer until demuxing resume; consider this unacceptable. Live playback would break (or rather, would not resume in unintuitive ways), even normal streaming may break if the server invalidates the URL due to inactivity. As an alternative implementation, you could prune the back buffer immediately, so the forward buffer can grow, but then the back buffer would never grow. Also makes no sense. As far as the user interface is concerned, the idea is that the limits on their own aren't really meaningful, the purpose is merely to vaguely restrict the cache memory usage. There could be just a single option to set the total allowed memory usage, but the separate backward cache controls the default ratio of backward/forward cache sizes. From that perspective, it doesn't matter if the backward cache uses more of the total buffer than assigned, if the forward buffer is complete.
* demux: runtime option changing for cache and stream recordingwm42019-09-191-2/+14
| | | | | | | | | Make most of the demuxer options runtime-changeable. This includes the cache options and stream recording. The manpage documents some of the possibly weird issues related to this. In particular, the disk cache isn't shuffled around if the setting changes at runtime.
* vf_vapourynth: remove Lua backendwm42019-09-191-25/+0
| | | | | | | | | | | | | | | I once created this because someone wanted to use vapoursynth without the Python dependency. No idea if anyone ever actually used it. It's sort of icky (it calls itself "lazy" to preempt complaints about how much it sucks), and complicates the build process. Kill it. It seems much more promising to have something like this: https://github.com/vapoursynth/vapoursynth/issues/386 This would either solve the build distribution problem by relaxing the Python dependency, and/or allow a Lua backend to be included without pain.
* audio: remove unreferenced af_lavrresamplewm42019-09-191-38/+0
| | | | | | | | | | | | | | This filter wasn't referenced anywhere and thus was dead code. It should have been in the audio filter list in user_filters.c. This was intended as compatibility wrapper (to avoid breaking old command lines and config files), and has no real use. Apparently I forgot to add it to the filter list (did I even test this shit?), and so it was rotting around for 1.5 years doing nothing (just like myself). Note that users can just use the libavfilter provided filter to force resampling, just that it has a different name and different options. There's also af_format to force inserting auto conversion through the internal f_swsresample filter.
* vo_gpu: remove mali-fbdevwm42019-09-191-2/+0
| | | | | Useless at this point, I don't even know if it still works, or how to test it.
* manpage: fix minor typowm42019-09-191-1/+1
|
* osc: add feature to bottombar to not cover the videowm42019-09-191-0/+20
| | | | | | | | | | | | | | | | | | | | | | Normally I use the OSC like this: not at all, but have a key binding that does "cycle osc" to show it. And in that case, I don't really want it to overlap the damn video. I could use the zoom/pan options to move the video out of the way, but this is also sort of annoying. Likewise, you could write a script or so which does this automatically if the OSC appears, but that's still annoying, and computing values for these options such that the video is moved correctly is tricky. So I added a bunch of options that set explicit video borders (previous commit), and a option for the OSC to use them (this commit). Disabled by default, since I'm afraid this is too awkward and unpolished, especially with OSC default settings. I'm also using "osc-visibility=always". Effectively, making the OSC appear will box the video, and making it disappear (by unloading osc.lua) will restore the video back to normal.
* aspect: add video margin optionswm42019-09-191-0/+24
| | | | | | | | | | | | | | | Semantics a bit questionable. This is done for the OSC (next commit), and a comment added the manpage explicitly states this. Meaning this is probably garbage and needs to revisit when the OSC changes and/or someone wants to use this margin feature for something else. Not sure about the subtitle thing. It's imaginable that someone uses these options to create empty borders for subtitles on the bottom, so subtitles should be located there. On the other hand, this gives a rather unpolished user experience when using the (later added) OSC feature to not overlap with the video. There's not much of a point if the OSC still overlaps the video. However, I'm too lazy to think about this, so it stays like it is.
* manpage: fix false statementwm42019-09-191-2/+2
|
* demux: add a on-disk cachewm42019-09-192-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Somewhat similar to the old --cache-file, except for the demuxer cache. Instead of keeping packet data in memory, it's written to disk and read back when needed. The idea is to reduce main memory usage, while allowing fast seeking in large cached network streams (especially live streams). Keeping the packet metadata on disk would be rather hard (would use mmap or so, or rewrite the entire demux.c packet queue handling), and since it's relatively small, just keep it in memory. Also for simplicity, the disk cache is append-only. If you're watching really long livestreams, and need pruning, you're probably out of luck. This still could be improved by trying to free unused blocks with fallocate(), but since we're writing multiple streams in an interleaved manner, this is slightly hard. Some rather gross ugliness in packet.h: we want to store the file position of the cached data somewhere, but on 32 bit architectures, we don't have any usable 64 bit members for this, just the buf/len fields, which add up to 64 bit - so the shitty union aliases this memory. Error paths untested. Side data (the complicated part of trying to serialize ffmpeg packets) untested. Stream recording had to be adjusted. Some minor details change due to this, but probably nothing important. The change in attempt_range_joining() is because packets in cache have no valid len field. It was a useful check (heuristically finding broken cases), but not a necessary one. Various other approaches were tried. It would be interesting to list them and to mention the pros and cons, but I don't feel like it.
* demux_lavf: compensate timestamp resets for OGG web radio streamswm42019-09-191-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some OGG web radio streams use timestamp resets when a new song starts (you can find those Xiph's directory - other streams there don't show this behavior). Basically, the OGG stream behaves like concatenated OGG files, and "of course" the timestamps will start at 0 again when the song changes. This is very inconvenient, and breaks the seekable demuxer cache. In fact, any kind of seeking will break This is more time wasted in Xiph's bullshit. No, having timestamp resets by design is not reasonable, and fuck you. I much prefer the awful ICY/mp3 streaming mess, even if that's lower quality and awful. Maybe it wouldn't be so bad if libavformat could tell us WHERE THE FUCK THE RESET HAPPENS. But it doesn't, and the randomly changing timestamps is the only thing we get from its API. At this point, demux_lavf.c is like 90% hacks. But well, if libavformat applies this strange mixture of being clever for us vs. giving us unfiltered garbage (while pretending it abstracts everything, and hiding _useful_ implementation/low level details), not much we can do. This timestamp linearizing would, in general, probably be better done after the decoder, because then we wouldn't need to deal with timestamp resets. But the main purpose of this change is to fix seeking within the demuxer cache, so we have to do it on the lowest level. This can probably be applied to other containers and video streams too. But that is untested. Some further caveats are explained in the manpage.
* manpage: some more backward playback editswm42019-09-191-12/+22
|
* demux: demux multiple audio frames in backward playbackwm42019-09-191-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, this usually passed a single audio frame to the decoder, and then did a backstep operation (cache seek + frame search) again. This is probably not very efficient, especially considering it has to search the packet queue from the "start" every time again. Also, with most audio codecs, an additional "preroll" frame was passed first. In these cases, the preroll frame would make up 50% of audio decoding time. Also not very efficient. Attempt to fix this by returning multiple frames at once. This reduces the number of backstep operations and the ratio the preoll frames. In theory, this should help efficiency. I didn't test it though, why would I do this? It's just a pain. Set it to unscientific 10 frames. (Actually, these are 10 keyframes, so it's much more for codecs like TrueHD. But I don't care about TrueHD.) This commit changes some other implementation details. Since we can return more than 1 non-preroll keyframe to the decoder, some new state is needed to remember how much. The resume packet search is adjusted to find N ("total") keyframe packets in general, not just preroll frames. I'm removing the special case for 1 preroll packet; audio used this, but doesn't anymore, and it's premature optimization anyway. Expose the new mechanism with 2 new options. They're almost completely pointless, since nobody will try them, and if they do, they won't understand what these options truly do. And if they actually do, they most likely would be capable of editing the source code, and we could just hardcode the parameters. Just so you know that I know that the added options are pointless. The following two things are truly unrelated to this commit, and more like general refactoring, but fortunately nobody can stop me. Don't set back_seek_pos in dequeue_packet() anymore. This was sort of pointless, since it was set in find_backward_restart_pos() anyway (using some of the same packets). The latter function tries to restrict this to the first keyframe range though, which is an optimization that in theory might break with broken files (duh), but in these cases a lot of other things would be broken anyway. Don't set back_restart_* in dequeue_packet(). I think this is an artifact of the old restart code (cf. ad9e473c555). It can be done directly in find_backward_restart_pos() now. Although this adds another shitty packet search loop, I prefer this, because clearer what's actually happening.
* manpage: another comment on backward playback with hardware decodingwm42019-09-191-2/+5
|
* vd_lavc: add --hwdec-extra-frames optionwm42019-09-191-0/+15
| | | | Surprised this didn't exist before.
* f_decoder_wrapper: reorganize, fix EDL/ordered chapters backward playbackwm42019-09-191-3/+1
| | | | | | | | | | | | | | | | | | | | | | | Before this commit, there was a single process_decoded_frame() function. It handled various aspects of dealing with a newly decoded frame. Move some of these to a separate process_output_frame() function. This new function is called in the order the frames are returned to the playback core. Some correct_audio_pts() (was process_audio_frame()) becomes slightly less awkward due to this, and the timestamp smoothing can actually work in backward playback mode now (thus moving p->pts out of reset_decoder()). Behavior for normal playback also changes subtly. This shouldn't matter in sane cases, but if you mix broken files, --no-correct-pts, and timeline stuff, differences in behavior might be visible. Timeline clipping (EDL/ordered chapters) works now, because it's done before "transforming" the timestamps. Audio timestamp smoothing happens after it, which is a behavior change, but should be more correct. This still runs crazy_video_pts_stuff() before everything else. On the pther hand, --no-correct-pts or missing timestamp processing is done last. But these things didn't really work with timeline before.
* options: rename --play-direction to --play-dirwm42019-09-191-2/+4
| | | | | | | | | | | | | | | | | | | And add simpler aliases for the modes. I'm not sure how to name things, and the option list is in general full of different conventions. Some names are shortened, some are explicit and long. I guess options that have a chance to be used normally (i.e. not obscure tuning or debugging) should have a short and convenient names. In this specific case, play-direction is like a mixture of both. It should be either playback-direction or play-dir, not shorten one word but not the other. The convenience aliases are because I got sick of typing out "backward". I guess "back" would also do it, but there's no proper antonym (and maybe it's "wrong" in the strict sense of the word).
* demux: more backwards playback preroll packets for vorbis and mp3wm42019-09-191-9/+2
| | | | | | | | | | | | | | | | | | | | Together with the previous commit, this seems to make backward playback work in files with vorbis and mp3 audio codecs. For Vorbis (with libavcodec's decoder, didn't test libvorbis), the first packet was just always completely discarded. This happened even though we tell libavcodec that we do discarding of padding manually. It simply happened inside the codec, not libavcodec's general initial padding handling. In addition, the first output decoded frame seems to contain partial data. (Unlike the opus decoder, it doesn't report any padding at all.) The Opus decoder (again libavcodec only tested) reports an initial padding, but it appears to be too small, and it sounds right only with 2 packets discarded. So its status doesn't change. I'm not sure why I need 2 frames for mp3, but with that value I had success on the samples I tested.
* manpage: document accidental feature/bugwm42019-09-191-5/+19
| | | | | | | | | | | | | | | | Clarify existing semantics for the --start/--end/--length options. De-emphasize the difference between absolute and relative timestamps, since they've not been different by default since mpv 0.14. Document a bug, that also happens to work as a feature: if the option value begins with spaces, the code for checking for relative timestamps is inactive, and they're always considered absolute. The check is done on the first character of the string - so even a negative timestamp will be treated as absolute.) Yes, this is useful in extremely rare situations, such as when you really want send a specific timestamp (even a negative one) to the demuxer.
* player: modify/simplify AB-loop behaviorwm42019-09-191-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the behavior of the --ab-loop-a/b options. In addition, it makes it work with backward playback mode. The most obvious change is that the both the A and B point need to be set now before any looping happens. Unlike before, unset points don't implicitly use the start or end of the file. I think the old behavior was a feature that was explicitly added/wanted. Well, it's gone now. This is because of 2 reasons: 1. I never liked this feature, and it always got in my way (as user). 2. It's inherently annoying with backward playback mode. In backward playback mode, the user wants to set A/B in the wrong order. The ab-loop command will first set A, then B, so if you use this command during backward playback, A will be set to a higher timestamps than B. If you switch back to forward playback mode, the loop would stop working. I want the loop to just continue to work, and the chosen solution conflicts with the removed feature. The order issue above _could_ be fixed by also switching the AB-loop user option values around on direction switch. But there are no other instances of option changes magically affecting other options, and doing this would probably lead to unexpected misery (dying from corner cases and such). Another solution is sorting the A/B points by timestamps after copying them from the user options. Then A/B options set in backward mode will work in forward mode. This is the chosen solution. If you sort the points, you don't know anymore whether the unset point is supposed to signify the end or the start of the file. The AB-loop code is slightly better abstracted now, so it should be easy to restore the removed feature. It would still require coming up with a solution for backwards playback, though. A minor change is that if one point is set and the other is unset, I'm rendering both the chapter markers and the marker for the set point. Why? I don't know. My test file had chapters, and I guess I decided this looked better. This commit also fixes some subtle and obvious issues that I already forgot about when I wrote this commit message. It cleans up some minor code duplication and nonsense too. Regarding backward playback, the code uses an unsanitary mix of internal ("transformed") and user timestamps. So the play_dir variable appears more than usual. To mention one unfixed issue: if you set an AB-loop that is completely past the end of the file, it will get stuck in an infinite seeking loop once playback reaches the end of the file. Fixing this reliably seemed annoying, so the fix is "just don't do this". It's not a hard freeze anyway.
* options: remove --chapterwm42019-09-192-6/+1
| | | | | | | | | Has been deprecated for almost 3 years. Manpage didn't mention the deprecation, but CLI and release notes did. It wouldn't be much effort to keep this option working, but I just don't see the damn point. --start/--end can specify chapters using special syntax, which is equivalent.
* demux_lavf: implement bad hack for backward playback of wavwm42019-09-191-11/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit generally fixes backward playing in wav, at least in most PCM cases. libavformat's wav demuxer (and actually all other raw PCM based demuxers) have a specific behavior that breaks backward demuxing. The same thing also breaks persistent seek ranges in the demuxer cache, although that's less critical (it just means some cached data gets discarded). The backward demuxing issue is fatal, will log the message "Demuxer not cooperating.", and then typically stop doing anything. Unlike modern media formats, these formats don't organize media data in packets, but just wrap a monolithic byte stream that is described by a header. This is good enough for PCM, which uses fixed frames (a single sample for all audio channels), and for which it would be too expensive to have per frame headers. libavformat (and mpv) is heavily packet based, and using a single packet for each PCM frame causes too much overhead. So they typically "bundle" multiple frames into a single packet. This packet size is obviously arbitrary, and in libavformat's case hardcoded in its source code. The problem is that seeking doesn't respect this arbitrary packet boundary. Seeking is sample accurate. You can essentially seek inside a packet. The resulting packets will not be aligned with previously demuxed packets. This is normally OK. Backward seeking (and some other demuxer layer features) expect that demuxing an earlier demuxed file position eventually results in the same packets, regardless of the seeks that were done to get there. I like to call this "deterministic" demuxing. Backward demuxing in particular requires this to avoid overlaps, which would make it rather hard to get continuous output. Fix this issue by detecting wav and hopefully other raw audio formats with a heuristic (even PCM needs to be detected as heuristic). Then, if a seek is requested, align the seek timestamps on the guessed number of samples in the audio packets returned by the demuxer. The heuristic excludes files with multiple streams. (Except "attachment" video streams, which could be an ID3 tag. Yes, FFmpeg allows ID3 tags on WAV files.) Such files will inherently use the packet concept in some way. We don't know how the demuxer chooses the internal packet size, but we assume that it's fixed and aligned to PCM frame sizes. The frame size is most likely given by block_align (the native wav frame size, according to Microsoft). We possibly need to explicitly read and discard a packet if the seek is done without reading anything before that. We ignore any subsequent packet sizes; we need to avoid the very last packet, which likely has a different size. This hack should be rather benign. In the worst case, it will "round" the seek target a little, but the maximum rounding amount is bounded. Maybe we _could_ round up if SEEK_FORWARD is specified, but I didn't bother. An earlier commit fixed the same issue for mpv's demux_raw. An alternative, and probably much better solution would be clipping decoded data by timestamp. demux.c could allow the type of overlap the wav demuxer introduces, and instruct the decoder to clip the output against the last decoded timestamp. There's already an infrastructure for this (demux_packet.end field) used by EDL/ordered chapters. Although this sounds like a good solution, mpv unfortunately uses floats for timestamps. The rounding errors break sample accuracy. Even if you used integers, you'd need a timebase that is sample accurate (not always easy, since EDL can merge tracks with different sample rates).
* manpage: deinterlacing with backwards playback probably workswm42019-09-191-3/+1
| | | | | | | | | | | | | | | | | | | | | | | As well as other filtering. I was writing this with the assumption that timestamps go backwards (which I first planned to do). But in fact, timestamps go forward, frame durations are positive, and adding a frame duration to a timestamp yields the correct result. The only strange thing is that timestamps are negative. Also, media of course goes backwards. In other possible implementation, filters would see normal forward playback, interrupted by seeks or discontinuities. It turns out the current implementation of providing a continuous backward media stream is probably better for filters. Even deinterlacing seems to work. libavcodec always outputs fields in as interleaved frames (i.e. fields are not reversed), and making up timestamps for the new frames (when doubling the framerate) works exactly like like in the forward case. Actually the previous paragraph was a lie, and libavcodec does not output fields as interleaved frames in rare cases. Sometimes AVFrame contains single fields. In this case you'd need to inverse the field dominance for deinterlacing filters to work correctly.
* manpage: backward encoding actually appears to workwm42019-09-191-1/+2
| | | | | | | | | | | | The way backward playback is implemented doesn't break basic assumptions about timestamps after the decoder, so I guess all the encoding mode needs to do is to adjust for the start offset, which it already does. Though I might be wrong and my test was possibly flawed. Stream recording on the other hand will fail immediately with --record-file, and --stream-record will probably yield unexpected results if any backstep seeks are done.
* demux: add a special case for backward demuxing of opuswm42019-09-191-1/+2
| | | | | | | | | | | Make --audio-backward-overlap default to 2 for Opus. I have no idea why this is needed. It seems to fix backward decoding though (going purely by listening). Normally, this should not be needed, since initial padding is completely contained within the first packet (normally, and in the case I tested). So the 2nd packet/frame should be fine, but for some unknown reason it works only with the 3rd.
* demux: use no overlapping packets for lossless audiowm42019-09-191-1/+2
| | | | | | Worthless optimization, but at least it justifies that the --audio-backward-overlap option has an "auto" choice. Tested with PCM and FLAC.
* manpage: document why Vorbis backward playback does not workwm42019-09-191-0/+7
| | | | | | | The only reasonable solution to this is probably to make discarding of preroll frames based on timestmaps, instead of frame/packet count. But then you get issues with video and its dumb timestamp reordering. So for now, fuck it.
* demux: change backward-overlap to keyframe ranges instead of packetswm42019-09-191-5/+5
| | | | | | | | | This seems more useful in general. This change also happens to fix a miscounting of preroll packets when some of them were "rounded" away, and which could make it stuck. Also a simple intra-refresh encode with x264 (and muxed to mkv by it) seems to work now. I guess I misinterpreted earlier results.
* demux: fix initial backward demuxing state in some caseswm42019-09-191-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Just "mpv file.mkv --play-direction=backward" did not work, because backward demuxing from the very end was not implemented. This is another corner case, because the resume mechanism so far requires a packet "position" (dts or pos) as reference. Now "EOF" is another possible reference. Also, the backstep mechanism could cause streams to find different playback start positions, basically leading to random playback start (instead of what you specified with --start). This happens only if backstep seeks are involved (i.e. no cached data yet), but since this is usually the case at playback start, it always happened. It was racy too, because it depended on the order the decoders on other threads requested new data. The comment below "resume_earlier" has some more blabla. Some other details are changed. I'm giving up on the "from_cache" parameter, and don't try to detect the situation when the demuxer does not seek properly. Instead, always seek back, hopefully some more. Instead of trying to adjust the backstep seek target by a random value of 1.0 seconds. Instead, always rely on the random value provided by the user via --demuxer-backward-playback-step. If the demuxer should really get "stuck" and somehow miss the seek target badly, or the user sets the option value to 0, then the demuxer will not make any progress and just eat CPU. (Although due to backward seek semantics used for backstep seeks, even a very small seek step size will work. Just not 0.) It seems this also fixes backstepping correctly when the initial seek ended at the last keyframe range. (The explanation above was about the case when it ends at EOF. These two cases are different. In the former, you just need to step to the previous keyframe range, which was broken because it didn't always react correctly to reaching EOF. In the latter, you need to do a separate search for the last keyframe.)
* sd_lavc: implement --sub-pos for bitmap subtitleswm42019-09-191-0/+3
| | | | | | | | | | | | | Simple enough to do. May have mixed results. Typically, bitmap subtitles will have a tight bounding box around the rendered text. But if for example there is text on the top and bottom, it may be a single big bitmap with a large transparent area between top and bottom. In particular, DVD subtitles are really just a single screen-sized RLE-encoded bitmap, though libavcodec will crop off transparent areas. Like with sd_ass, you can't move subtitles _down_ if they are already in their origin position. This could probably be improved, but I don't want to deal with that right now.
* manpage: document that backward playback from the end does not workwm42019-09-191-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | Not specifying a --start or using --start=100% with --play-direction=backward usually does not work. The demuxer gets no packets and immediately enters EOF state, which then hangs because backward playback mode neither considers this mode, nor propagates the EOF. As far as demuxer implementations are concerned, this behavior is OK and even wanted. Seeking near the end with SEEK_FORWARD set is allowed not to return any packets (so a normal relative forward seek as done by the user would end playback). Seeking exactly to the end or past it without SEEK_FORWARD set is probably also sane. Another vaguely related issue is that a backward seek during playback start does not "establish" the demux position correctly: if stream A hits the next keyframe and seeks back, while stream B has not had a chance to read a packet yet, then stream B will never try to read from the old position. The effect is that stream B (and thus playback) will effectively miss the seek target. This is "random" because it depends on the order and number of packet read calls made by the decoders. Fixing this is probably hard, and requires extending the already complex state machine with more states, so turn the manpage into a TODO list for now.
* demux_raw: fix operation with demuxer cache and backward playbackwm42019-09-191-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Raw audio formats can be accessed sample-wise, and logically audio packets demuxed from it would contain only 1 sample. This is inefficient, so raw audio demuxers typically "bundle" multiple samples in one packet. The problem for the demuxer cache and backward playback is that they need properly aligned packets to make seeking "deterministic". The requirement is that if you read some packets, and then seek back, you eventually see the same packets again. demux_raw basically allowed to seek into the middle of a previously returned packet, which makes it impossible to make the transition seamless. (Unless you'd be aware of the packet data format and cut them to make it seamless, which is too complex for such a use case.) Solve this by always aligning seeks to packet boundaries. This reduces the seek accuracy to the arbitrarily chosen packet size. But you can use hr-seek to fix this. The gain from not making raw audio an awful special case pays in exchange for this "stupid" suggestion to use hr-seek. It appears this also fixes that it could and did seek into the middle of the frame (not sure if this code was ever tested - it goes back to removing the code duplication between the former demux_rawaudio.c and demux_rawvideo.c). If you really cared, you could introduce a seek flag that controls whether the seek is aligned or not. Then code which requires "deterministic" demuxing could set it. But this isn't really useful for us, and we'd always set the flag anyway, unless maybe the caching were forced disabled. libavformat's wav demuxer exhibits the same issue. We can't fix it (it would require the unpleasant experience of contributing to FFmpeg), so document this in otions.rst. In theory, this also affects seek range joining, but the only bad effect should be that cached data is discarded.
* Implement backwards playbackwm42019-09-191-0/+191
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See manpage additions. This is a huge hack. You can bet there are shit tons of bugs. It's literally forcing square pegs into round holes. Hopefully, the manpage wall of text makes it clear enough that the whole shit can easily crash and burn. (Although it shouldn't literally crash. That would be a bug. It possibly _could_ start a fire by entering some sort of endless loop, not a literal one, just something where it tries to do work without making progress.) (Some obvious bugs I simply ignored for this initial version, but there's a number of potential bugs I can't even imagine. Normal playback should remain completely unaffected, though.) How this works is also described in the manpage. Basically, we demux in reverse, then we decode in reverse, then we render in reverse. The decoding part is the simplest: just reorder the decoder output. This weirdly integrates with the timeline/ordered chapter code, which also has special requirements on feeding the packets to the decoder in a non-straightforward way (it doesn't conflict, although a bugmessmass breaks correct slicing of segments, so EDL/ordered chapter playback is broken in backward direction). Backward demuxing is pretty involved. In theory, it could be much easier: simply iterating the usual demuxer output backward. But this just doesn't fit into our code, so there's a cthulhu nightmare of shit. To be specific, each stream (audio, video) is reversed separately. At least this means we can do backward playback within cached content (for example, you could play backwards in a live stream; on that note, it disables prefetching, which would lead to losing new live video, but this could be avoided). The fuckmess also meant that I didn't bother trying to support subtitles. Subtitles are a problem because they're "sparse" streams. They need to be "passively" demuxed: you don't try to read a subtitle packet, you demux audio and video, and then look whether there was a subtitle packet. This means to get subtitles for a time range, you need to know that you demuxed video and audio over this range, which becomes pretty messy when you demux audio and video backwards separately. Backward display is the most weird (and potentially buggy) part. To avoid that we need to touch a LOT of timing code, we negate all timestamps. The basic idea is that due to the navigation, all comparisons and subtractions of timestamps keep working, and you don't need to touch every single of them to "reverse" them. E.g.: bool before = pts_a < pts_b; would need to be: bool before = forward ? pts_a < pts_b : pts_a > pts_b; or: bool before = pts_a * dir < pts_b * dir; or if you, as it's implemented now, just do this after decoding: pts_a *= dir; pts_b *= dir; and then in the normal timing/renderer code: bool before = pts_a < pts_b; Consequently, we don't need many changes in the latter code. But some assumptions inhererently true for forward playback may have been broken anyway. What is mainly needed is fixing places where values are passed between positive and negative "domains". For example, seeking and timestamp user display always uses positive timestamps. The main mess is that it's not obvious which domain a given variable should or does use. Well, in my tests with a single file, it suddenly started to work when I did this. I'm honestly surprised that it did, and that I didn't have to change a single line in the timing code past decoder (just something minor to make external/cached text subtitles display). I committed it immediately while avoiding thinking about it. But there really likely are subtle problems of all sorts. As far as I'm aware, gstreamer also supports backward playback. When I looked at this years ago, I couldn't find a way to actually try this, and I didn't revisit it now. Back then I also read talk slides from the person who implemented it, and I'm not sure if and which ideas I might have taken from it. It's possible that the timestamp reversal is inspired by it, but I didn't check. (I think it claimed that it could avoid large changes by changing a sign?) VapourSynth has some sort of reverse function, which provides a backward view on a video. The function itself is trivial to implement, as VapourSynth aims to provide random access to video by frame numbers (so you just request decreasing frame numbers). From what I remember, it wasn't exactly fluid, but it worked. It's implemented by creating an index, and seeking to the target on demand, and a bunch of caching. mpv could use it, but it would either require using VapourSynth as demuxer and decoder for everything, or replacing the current file every time something is supposed to be played backwards. FFmpeg's libavfilter has reversal filters for audio and video. These require buffering the entire media data of the file, and don't really fit into mpv's architecture. It could be used by playing a libavfilter graph that also demuxes, but that's like VapourSynth but worse.
* manpage: remove double fw-bytes documentationwm42019-09-191-6/+3
| | | | | It was documented two times, with different text. Merge them and reword it a little.
* demux, command: export bof/eof flagswm42019-09-191-0/+9
| | | | | Export these flags with demuxer-cache-state. Useful for debugging, but any client API users could also make use of it.
* player: add --demuxer-cache-wait optionwm42019-09-191-0/+8
|
* DOCS/edl-mpv.rst: make clear the DASH stuff is for internal use onlywm42019-09-191-0/+7
| | | | | | | ytdl_hook.lua essentially uses these headers to implement parts of DASH. Hopefully the FFmpeg DASH demuxer gets usable at some point, and/or mpv gets a proper DASH demuxer. In any case, these EDL hacks could get removed as soon as they get unnecessary and too annoying.
* demux_edl: add no_clipwm42019-09-191-0/+5
| | | | | | Used by the next commit. It mostly exposes part of mp4_dash functionality. It actually makes little sense other than for ytdl special-use. See next commit.
* demux_edl: add a special header to disable chapter generationwm42019-09-191-0/+12
| | | | A bit of a hack.
* loadfile, ytdl_hook: don't reject EDL-resolved URLs through playlistwm42019-09-191-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The ytdl wrapper can resolve web links to playlists. This playlist is passed as big memory:// blob, and will contain further quite normal web links. When playback of one of these playlist entries starts, ytdl is called again and will resolve the web link to a media URL again. This didn't work if playlist entries resolved to EDL URLs. Playback was rejected with a "potentially unsafe URL from playlist" error. This was completely weird and unexpected: using the playlist entry directly on the command line worked fine, and there isn't a reason why it should be different for a playlist entry (both are resolved by the ytdl wrapper anyway). Also, if the only EDL URL was added via audio-add or sub-add, the URL was accessed successfully. The reason this happened is because the playlist entries were marked as STREAM_SAFE_ONLY, and edl:// is not marked as "safe". Playlist entries passed via command line directly are not marked, so resolving them to EDL worked. Fix this by making the ytdl hook set load-unsafe-playlists while the playlist is parsed. (After the playlist is parsed, and before the first playlist entry is played, file-local options are reset again.) Further, extend the load-unsafe-playlists option so that the playlist entries are not marked while the playlist is loaded. Since playlist entries are already verified, this should change nothing about the actual security situation. There are now 2 locations which check load_unsafe_playlists. The old one is a bit redundant now. In theory, the playlist loading code might not be the only code which sets these flags, so keeping the old code is somewhat justified (and in any case it doesn't hurt to keep it). In general, the security concept sucks (and always did). I can for example not answer the question whether you can "break" this mechanism with various combinations of archives, EDL files, playlists files, compromised sites, and so on. You probably can, and I'm fully aware that it's probably possible, so don't blame me.
* demux, demux_edl: add extension for tracks sourced from separate streamswm42019-09-191-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds an extension to mpv EDL, which basically allows you to do the same as --audio-file, --external-file, etc. in a single EDL file. This is a relatively quick & dirty implementation. The dirty part lies in the fact that several shortcuts are taken. For example, struct timeline now forms a singly linked list, which is really weird, but also means the other timeline using demuxers (cue, mkv) don't need to be touched. Also, memory management becomes even worse (weird object ownership rules that are just fragile WTFs). There are some other dubious small changes, mostly related to the weird representation of separate streams. demux_timeline.c contains the actual implementation of the separate stream handling. For the most part, most things that used to be on the top level are now in struct virtual_source, of which one for each separate stream exists. This is basically like running multiple demux_edl.c in parallel. Some changes could strictly speaking be split into a separate commit, such as the stream_map type change. Mostly untested. Seems to work for the intended purpose. Potential for regressions for other timeline uses (like ordered chapters) is probably low. One thing which could definitely break and which I didn't test is the pseudo-DASH fragmented EDL code, of which ytdl can trigger various forms in obscure situations. (Uh why don't we have a test suite.) Background: The intention is to use this for the ytdl wrapper. A certain streaming site from a particularly brain damaged and plain evil Silicon Valley company usually provides streams as separate audio and video streams. The ytdl wrapper simply does use audio-add (i.e. adding it as external track, like with --audio-file), which works mostly fine. Unfortunately, mpv manages caching completely separately for external files. This has the following potential problems: 1. Seek ranges are rendered incorrectly. They always use the "main" stream, in this case the video stream. E.g. clicking into a cached range on the OSC could trigger a low level seek if the audio stream is actually not cached at the target position. 2. The stream cache bloats unnecessarily. Each stream may allocate the full configured maximum cache size, which is not what the user intends to do. Cached ranges are not pruned the same way, which creates disjoint cache ranges, which only use memory and won't help with fast seeking or playback. 3. mpv will try to aggressively read from both streams. This is done from different threads, with no regard which stream is more important. So it might happen that one stream starves the other one, especially if they have different bitrates. 4. Every stream will use a separate thread, which is an unnecessary waste of system resources. In theory, the following solutions are available (this commit works towards D): A. Centrally manage reading and caching of all streams. A single thread would do all I/O, and decide from which stream it should read next. As long as the total TCP/socket buffering is not too high, this should be effective to avoid starvation issues. This can also manage the cached ranges better. It would also get rid of the quite useless additional demuxer threads. This solution is conceptually simple, but requires refactoring the entire demuxer middle layer. B. Attempt to coordinate the demuxer threads. This would maintain a shared cache and readahead state to solve the mentioned problems explicitly. While this sounds simple and like an incremental change, it's probably hard to implement, creates more messy special cases, solution A. seems just a better and simpler variant of this. (On the other hand, A. requires refactoring more code.) C. Render an intersection of the seek ranges across all streams. This fixes only problem 1. D. Merge all streams in a dedicated wrapper demuxer. The general demuxer layer remains unchanged, and reading from separate streams is handled as special case. This effectively achieves the same as A. In particular, caching is simply handled by the usual demuxer cache layer, which sees the wrapper demuxer as a single stream of interleaved packets. One implementation variant of this is to reuse the EDL infrastructure, which this commit does. All in all, solution A would be preferable, because it's cleaner and works for all external streams in general. Some previous commit tried to prepare for implementing solution A. This could still happen. But it could take years until this is finally seriously started and finished. In any case, this commit doesn't block or complicate such attempts, which is also why it's the way to go. It's worth mentioning that original mplayer handles external files by creating a wrapper demuxer. This is like a less ideal mixture of A. and D. (The similarity with A. is that extending the mplayer approach to be fully dynamic and without certain disadvantages caused by the wrapper would end up with A. anyway. The similarity with D. is that due to the wrapper, no higher level code needs to be changed.)
* DOCS/edl-mpv: document a dumb thingwm42019-09-191-0/+3
| | | | | | | | | | | | | | EDLs can be provided either as external file, or "inline" as a big edl:// URL. There is no difference between them, except if it's loaded from an external file, there is some weird filename sanitation going on (see fix_filenames() in demux_edl.c). It seems this is intended to be a security mechanism, but probably makes no sense at all. Note that playlists are allowed to access anything locally. One difference to playlists is that the EDL code lacks the "security" mechanism when accessing playlist entries (see handling of the playlist_entry.stream_flags field - EDL would need something similar), so don't remove that, as I'm unaware of the exact consequences.
* drm: fix libmpv ABI breakage introduced in ↵Anton Kindestam2019-09-181-0/+2
| | | | | | | | | | | | | | | 351c083487050c88adb0e3d60f2174850f869018 Extending the client-allocated mpv_opengl_drm_params struct constituted a break of ABI that could cause UB. Create a clean break by deprecating "drm_params" and related structs and enum values, and replacing it with "drm_params_v2". Also fix some comments and code that wrongly assumed that open could return any other negative number than -1 for failure. This commit updates the libmpv version to 1.104
* vo_gpu: x11: remove special vdpau probing, use EGL by defaultwm42019-09-152-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Originally, vo_gpu/vo_opengl considered the case of Nvidia proprietary drivers, which required vdpau/GLX, and Intel open source drivers, which require vaapi/EGL. Since window creation and GPU context creation are inseparable in mpv's internal API, it had to pick the correct API very early, or hardware decoding wouldn't work. "x11probe" was introduced for this reason. It created a GLX context (without showing the window yet), and checked whether vdpau was available. If yes, it used GLX, if not, it continued probing x11/EGL. (Obviously it couldn't always fail on GLX without vdpau, which is why it was a separate "probe" backend.) Years passed, and now the situation is different. Vdpau is dead. Nvidia drivers and libavcodec now provide CUDA interop, which requires EGL, and fixes some of the vdpau problems. AMD drivers now provide vaapi, which generally works better than vdpau. Intel didn't change. In particular, vaapi provides working HEVC Main10 support. In theory, it should work on vdpau too, with quality reduction (no 10 bit surfaces), but I couldn't get it to work. So always prefer EGL. And suddenly hardware decoding works. This is actually rather important, because HEVC is unfortunately on the rise, despite shitty encoders and unoptimized decoders. The latter may mean that hardware decoding works better than libavcodec. This should have been done a long, long time ago.
* image_writer: add webp-compression optionsfan52019-09-142-0/+6
|
* image_writer: add WebP support (lossy or lossless)sfan52019-09-142-0/+14
|
* DOCS: remove references to --video-stereo-modeNiklas Haas2019-09-143-20/+6
| | | | | | | This option was removed by a5610b2a but the documentation persisted. Also adds an OPT_REMOVED. Closes #6938.
* manpage: minor fixes to VO manpagesfan52019-09-141-3/+3
|
* command, demux: remove program propertywm42019-09-132-3/+1
| | | | | | | | | The "program" property could switch between TS programs. It was rather complex and rather obscure (even if you deal with TS captures, you usually don't need it). If anyone actually needs it (did anyone ever attempt to even use it?), it should be rewritten. The demuxer should export a program list, and the frontend should handle the "cycling" logic.
* Remove classic Linux analog TV support, and DVB runtime controlswm42019-09-133-199/+3
| | | | | | | | | | | | | | | | | | | | | | | | Linux analog TV support (via tv://) was excessively complex, and whenever I attempted to use it (cameras or loopback devices), it didn't work well, or would have required some major work to update it. It's very much stuck in the analog past (my favorite are the frequency tables in frequencies.c for analog TV channels which don't exist anymore). Especially cameras and such work fine with libavdevice and better than tv://, for example: mpv av://v4l2:/dev/video0 (adding --profile=low-latency --untimed even makes it mostly realtime) Adding a new input layer that targets such "modern" uses would be acceptable, if anyone is interested in it. The old TV code is just too focused on actual analog TV. DVB is rather obscure, but has an active maintainer, so don't remove it. However, the demux/stream ctrl layer must go, so remove controls for channel switching. Most of these could be reimplemented by using the normal method for option runtime changes.
* Remove optical disc fancification layerswm42019-09-132-39/+2
| | | | | | | | | | | | | | | | | This removes anything related to DVD/BD/CD that negatively affected the core code. It includes trying to rewrite timestamps (since DVDs and Blurays do not set packet stream timestamps to playback time, and can even have resets mid-stream), export of chapters, stream languages, export of title/track lists, and all that. Only basic seeking is supported. It is very much possible that seeking completely fails on some discs (on some parts of the timeline), because timestamp rewriting was removed. Note that I don't give a shit about optical media. If you want to watch them, rip them. Keeping some bare support for DVD/BD is the most I'm going to do to appease the type of lazy, obnoxious users who will care. There are other players which are better at optical discs.
* Remove libdvdread support in favor of libdvdnavwm42019-09-131-17/+0
| | | | | | | | | | | stream_dvd.c contained large amounts of ancient, unmaintained code, which has been historically moved to libdvdnav. Basically, it's full of low level parsing of DVD on-disc structures. Kill it for good. Users can use the remaining dvdnav support (which basically operates in non-menu mode). Users have reported that libdvdread sometimes works better, but this is just libdvdnav's problem and not ours.
* js: expose mpv_abort_async_command() (match dbe831bd)Avi Halachmi (:avih)2019-09-111-2/+4
| | | | With minor difference from lua, as documented.
* js: expose async commands (match 159379980e)Avi Halachmi (:avih)2019-09-111-1/+4
|
* osc: improve look of seekrangesJan Janssen2019-09-021-8/+30
|
* DOCS/compile-windows: remove angleproject-git from depsRicardo Constantino2019-07-301-1/+1
| | | | | Basically just to trigger a doc rebuild, but might as well do a useful change, since angleproject-git is no longer a valid package in MSYS2.
* vo_gpu: implement error diffusion for ditheringBin Jin2019-06-161-1/+30
| | | | | | | | | | | | | | | | | This is a straightforward parallel implementation of error diffusion algorithms in compute shader. Basically we use single work group with maximal possible size to process the whole image. After a shift mapping we are able to process all pixels column by column. A large ring buffer are allocated in shared memory to speed things up. However the size of required shared memory depends linearly on the height of video window (or screen height in fullscreen mode). In case there is no enough shared memory, it will fallback to `--dither=fruit`. The maximal allowed work group size is hardcoded as 1024. Ideally we could query `GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS`. But for whatever reason, it seems most high end card from nvidia and amd support only the minimal required value, so I guess we can stick to it for now.
* vo_gpu: allow user shader to fix texture offsetBin Jin2019-06-061-1/+7
| | | | | This commit essentially makes user shader able to fix offset (produced by other prescaler, for example) like builtin `--scale`.
* man: clarify vavpp requirementsNicolas F2019-05-051-2/+3
| | | | | | | | | | | | I assume (but cannot confirm) that VA-AP-API is in fact a typo, because most if not all search engine results related to it are from mpv's manual page. By changing this to VA-API and clarifying that this requires VA-API support on a system to use it, we can hopefully make it clear to unsuspecting Windows users that this is not the filter they're looking for. Concerns #6690.
* drm_common: Support --drm-mode=<preferred|highest|N|WxH[@R]>Anton Kindestam2019-05-041-4/+15
| | | | | | | This allows to select the drm mode using a string specification. You can either select the the preferred mode, the mode with the highest resolution, by specifying WxH[@R] or by its index in the list of modes as before.
* drm_common: Add proper help option to drm-modeAnton Kindestam2019-05-041-2/+3
| | | | | | | This was implemented by using OPT_STRING_VALIDATE for drm-mode, instead of OPT_INT. Using a string here also prepares for future additions to drm-mode that aim to allow specifying a mode by its resolution.
* drm_common: Add option to toggle use of atomic modesettingAnton Kindestam2019-05-041-0/+10
| | | | | | It is useful when debugging to be able to force atomic off, or as a workaround if atomic breaks for some user. Legacy modesetting is less likely to break by virtue of being a less complex API.
* docs: add mentions of the Vulkan rendering abstraction replacementJan Ekström2019-04-221-0/+2
| | | | From internal to libplacebo.
* man/input: clarify behavior of seek's +exactNoSuck2019-04-021-2/+3
| | | | | | As discussed here: https://github.com/mpv-player/mpv/issues/6545#issuecomment-476015318
* cocoa-cb: add support for custom colored title barder richter2019-04-021-0/+6
|
* cocoa-cb: refactor title bar stylingder richter2019-04-022-11/+64
| | | | | | | | | | | | | half of the materials we used were deprecated with macOS 10.14, broken and not supported by run time changes of the macOS theme. furthermore our styling names were completely inconsistent with the actually look since macOS 10.14, eg ultradark got a lot brighter and couldn't be considered ultradark anymore. i decided to drop the old option --macos-title-bar-style and rework the whole mechanism to allow more freedom. now materials and appearance can be set separately. even if apple changes the look or semantics in the future the new options can be easily adapted.
* DOCS/man/mpv.rst: Fix big-cache profile exampleLeo Izen2019-03-161-1/+2
| | | | | | The cache options were changed, and this commit fixes the example big-cache profile to use the new cache options.
* Merge branch 'master' into pr6360Jan Ekström2019-03-113-23/+76
|\ | | | | | | | | | | Manual changes done: * Merged the interface-changes under the already master'd changes. * Moved the hwdec-related option changes to video/decode/vd_lavc.c.
| * lcms: allow infinite contrastzc622019-03-091-2/+4
| | | | | | | | Fixes #5980
| * options: do not enable WMV3 hwdec by defaultMartin Herkt2019-03-011-1/+1
| | | | | | | | | | | | Crashes NVIDIA, probably buggy on others. No one ever tests this shit. See #2192
| * vo_gpu: use dB units for scene change detectionNiklas Haas2019-02-181-3/+3
| | | | | | | | | | | | | | Rather than the linear cd/m^2 units, these (relative) logarithmic units lend themselves much better to actually detecting scene changes, especially since the scene averaging was changed to also work logarithmically.
| * vo_gpu: allow boosting dark scenes when tone mappingNiklas Haas2019-02-182-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | In theory our "eye adaptation" algorithm works in both ways, both darkening bright scenes and brightening dark scenes. But I've always just prevented the latter with a hard clamp, since I wanted to avoid blowing up dark scenes into looking funny (and full of noise). But allowing a tiny bit of over-exposure might be a good thing. I won't change the default just yet (better let users test), but a moderate value of 1.2 might be better than the current 1.0 limit. Needs testing especially on dark scenes.
| * vo_gpu: redesign peak detection algorithmNiklas Haas2019-02-182-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous approach of using an FIR with tunable hard threshold for scene changes had several problems: - the FIR involved annoying hard-coded buffer sizes, high VRAM usage, and the FIR sum was prone to numerical overflow which limited the number of frames we could average over. We also totally redesign the scene change detection. - the hard scene change detection was prone to both false positives and false negatives, each with their own (annoying) issues. Scrap this entirely and switch to a dual approach of using a simple single-pole IIR low pass filter to smooth out noise, while using a softer scene change curve (with tunable low and high thresholds), based on `smoothstep`. The IIR filter is extremely simple in its implementation and has an arbitrarily user-tunable cutoff frequency, while the smoothstep-based scene change curve provides a good, tunable tradeoff between adaptation speed and stability - without exhibiting either of the traditional issues associated with the hard cutoff. Another way to think about the new options is that the "low threshold" provides a margin of error within which we don't care about small fluctuations in the scene (which will therefore be smoothed out by the IIR filter).
| * vo_gpu: improve tone mapping desaturationNiklas Haas2019-02-182-11/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | Instead of desaturating towards luma, we desaturate towards the per-channel tone mapped version. This essentially proves a smooth roll-off towards the "hollywood"-style (non-chromatic) tone mapping algorithm, which works better for bright content, while continuing to use the "linear" style (chromatic) tone mapping algorithm for primarily in-gamut content. We also split up the desaturation algorithm into strength and exponent, which allows users to use less aggressive desaturation settings without affecting the overall curve.
| * options: do not enable MPEG2 hwdec by defaultMartin Herkt2019-02-131-1/+1
| | | | | | | | | | | | | | | | Too many broken hardware decoders. Noticed wrong decoding of a video file encoded with x262 on RX Vega when using VAAPI (Mesa 18.3.2). Looks fine with swdec and a cheap hardware BD player. Reverts 017f3d0674e48a587b9e6cd7a48f15519c799c3e
| * cocoa-cb: add support for VOCTRL_GET_DISPLAY_NAMESAkemi2019-02-101-1/+3
| |
| * DOCS/options.rst: update target-peak descriptionKotori Itsuka2019-01-231-4/+4
| | | | | | | | | | List auto as an option for target-peak, and state that auto is its default operation.
| * DOCS/man: update man pages to describe ReplayGain fallbackBenjamin Barenblat2019-01-161-2/+4
| | | | | | | | | | | | Describe ReplayGain album-to-track fallback behavior introduced in commits e392d6610d1e35cc0190c794c151211b0aae83e6 and be90f2c8dd0431e252e43d5249e89446309113af.
| * stream_dvb: Correct range for dvbin-card option.Oliver Freyermuth2018-12-121-2/+2
| | | | | | | | | | | | Adapt documentation accordingly and also, fix an off-by-one check in the code. closes #6371
* | docs: add removed properties and options to interface-changes.rstsfan52018-12-061-0/+4
| |
* | demux: add another stream recording featurewm42018-12-061-0/+6
| | | | | | | | | | | | --record-file is nice, but only sometimes. If you watch some sort of livestream which you want to record, it's actually much nicer not to record what you're currently "seeing", but anything you're receiving.
* | demux, stream: readd cache-speed in some other formwm42018-12-061-0/+5
| | | | | | | | it's more like an input speed rather than a cache speed, but who cares.
* | Merge commit '559a400ac36e75a8d73ba263fd7fa6736df1c2da' into ↵Anton Kindestam2018-12-056-247/+431
|\ \ | |/ |/| | | | | | | wm4-commits--merge-edition This bumps libmpv version to 1.103
| * demux, stream: rip out the classic stream cachewm42018-08-312-123/+9
| | | | | | | | | | | | The demuxer cache is the only cache now. Might need another change to combat seeking failures in mp4 etc. The only bad thing is the loss of cache-speed, which was sort of nice to have.
| * demux_lavf: drop obscure genpts optionwm42018-05-241-6/+0
| | | | | | | | | | This code shouldn't even exist in libavformat. If you still need it, you can enable it via --demuxer-lavf-o.
| * options: add --http-proxywm42018-05-241-0/+7
| | | | | | | | Often requested, trivial.
| * player: remove deprecated vo/ao auto profileswm42018-05-241-0/+2
| | | | | | | | | | These were deprecated almost 2 years ago. Now they happen to be in the way.
| * player: make playback termination asynchronouswm42018-05-242-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, stopping playback aborted the demuxer and I/O layer violently by signaling mp_cancel (bound to libavformat's AVIOInterruptCB mechanism). Change it to try closing them gracefully. The main purpose is to silence those libavformat errors that happen when you request termination. Most of libavformat barely cares about the termination mechanism (AVIOInterruptCB), and essentially it's like the network connection is abruptly severed, or file I/O suddenly returns I/O errors. There were issues with dumb TLS warnings, parsers complaining about incomplete data, and some special protocols that require server communication to gracefully disconnect. We still want to abort it forcefully if it refuses to terminate on its own, so a timeout is required. Users can set the timeout to 0, which should give them the old behavior. This also removes the old mechanism that treats certain commands (like "quit") specially, and tries to terminate the demuxers even if the core is currently frozen. This is for situations where the core synchronized to the demuxer or stream layer while network is unresponsive. This in turn can only happen due to the "program" or "cache-size" properties in the current code (see one of the previous commits). Also, the old mechanism doesn't fit particularly well with the new one. We wouldn't want to abort playback immediately on a "quit" command - the new code is all about giving it a chance to end it gracefully. We'd need some sort of watchdog thread or something equally complicated to handle this. So just remove it. The change in osd.c is to prevent that it clears the status line while waiting for termination. The normal status line code doesn't output anything useful at this point, and the code path taken clears it, both of which is an annoying behavior change, so just let it show the old one.
| * manpage: update --demuxer-thread optionwm42018-05-241-3/+6
| | | | | | | | Be a bit more detailed, and discourage disabling it.
| * player: simplify edition switchingwm42018-05-241-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The player fully restarts playback when the edition or disk title is changed. Before this, the player tried to reinitialized playback partially. For example, it did not print a new "Playing: <file>" message, and did not send playback end to libmpv users (scripts or applications). This playback restart code was a bit messy and could have unforeseen interactions with various state. There have been bugs before. Since it's a mostly cosmetic thing for an obscure feature, just change it to a full restart. This works well, though since it may have consequences for scripts or client API users, mention it in interface-changes.rst.
| * input: slightly improve --input-cmdlist outputwm42018-05-241-1/+1
| | | | | | | | | | Output argument names, whether varargs are used, and indicate optional arguments correctly (instead of only half of them).
| * command: give named arguments to almost all commandswm42018-05-242-77/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change, only 1 command or so had named arguments. There is no reason why other commands can't have them, except that it's a bit of work to add them. Commands with variable number of arguments are inherently incompatible to named arguments, such as the "run" command. They still have dummy names, but obviously you can't assign multiple values to a single named argument (unless the argument has an array type, which would be something different). For now, disallow using named argument APIs with these commands. This might change later. 2 commands are adjusted to not need a separate default value by changing flag constants. (The numeric values are C only and can't be set by users.) Make the command syntax in the manpage more consistent. Now none of the allowed choice/flag names are in the command header, and all arguments are shown with their proper name and quoted with <...>. Some places in the manpage and the client.h doxygen are updated to reflect that most commands support named arguments. In addition, try to improve the documentation of the syntax and need for escaping etc. as well. (Or actually most uses of the word "argument" should be "parameter".)
| * json: add some non-standard extensionswm42018-05-241-1/+31
| | | | | | | | | | Also clarify this and previously existing differences to standard JSON in ipc.rst.
| * manpage: mention that fd:// file descriptors may be modifiedwm42018-05-241-0/+2
| | | | | | | | | | For example, we call setmode() to switch a FD from text to binary mode on garbage OSes.
| * manpage: remove a reference to a removed optionwm42018-05-241-2/+1
| |
| * client API: kill async commands on terminationwm42018-05-241-0/+3
| | | | | | | | | | | | | | | | | | | | | | This affects async commands started by client API, commands with async capability run in a sync way by client API (think mpv_command_node() with "subprocess"), and detached async work. Since scripts might want to do some cleanup work (that might involve launching processes, don't ask), we don't unconditionally kill everything on exit, but apply an arbitrary timeout of 2 seconds until async commands are aborted.
| * ipc: some user-visible changes to prepare for making all commands asyncwm42018-05-242-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I wanted to put all commands through mpv_command_node_async() instead of mpv_command_node(). Using synchronous commands over a synchronous transport doesn't make sense anyway. This would have used the request_id field in IPC requests as reply ID for the async commands. But the latter need to be [u]int64, while the former can be any type. To avoid that we need an extra lookup table for mapping reply IDs to request_id values, we now require that request_id fields are integers. Since this would be an incompatible change, just deprecate non-integers for now, and plan the change for a later time.
| * ipc: alias set_property_string to set_propertywm42018-05-241-8/+1
| | | | | | | | | | | | | | | | | | The only effective difference is that the former explicitly checks whether the JSON value type is string, and errors out if not. The rest is exactly the same (mpv_set_property_string is mpv_set_property with MPV_FORMAT_STRING). It seems silly to keep this, so just remove it.
| * lua: expose mpv_abort_async_command()wm42018-05-241-0/+12
| | | | | | | | Also somewhat cleans up mp.command_native_async() error handling.
| * command: make "subprocess" explicitly abortablewm42018-05-241-0/+2
| | | | | | | | Now mpv_abort_async_command() can be used to stop the process.
| * command: add a way to abort asynchronous commandswm42018-05-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Many asynchronous commands are potentially long running operations, such as loading something from network or running a foreign process. Obviously it shouldn't just be possible for them to freeze the player if they don't terminate as expected. Also, there will be situations where you want to explicitly stop some of those operations explicitly. So add an infrastructure for this. Commands have to support this explicitly. The next commit uses this to actually add support to a command.
| * lua: reimplement mp.subprocess_detached() by invoking the "run" commandwm42018-05-241-0/+3
| | | | | | | | | | | | | | | | The "run" command is old. I'm not sure why the separate Lua implementation was added. But maybe it as because the "run" command used to be limited to a small number of arguments. This limit has been removed a while ago. In any case, the old implementation is not needed anymore.
| * lua: reimplement mp.subprocess() by invoking the new subprocess commandwm42018-05-241-39/+17
| | | | | | | | | | | | | | We keep mp.subprocess() with roughly the same semantics for compatibility with scripts (including the internal ytdl script). Seems to work with rhe ytdl wrapper. Not tested further.
| * command: add a subprocess commandwm42018-05-241-0/+5
| | | | | | | | | | | | | | This supports named arguments. It benefits from the infrastructure of async commands. The plan is to reimplement Lua's utils.subprocess() on top of it.
| * input: add glue code for named argumentswm42018-05-242-1/+86
| | | | | | | | | | | | | | | | | | | | Named arguments should make it easier to have long time compatibility, even if command arguments get added or removed. They're also much nicer for commands with a large number of arguments, especially if many arguments are optional. As of this commit, this can not be used, because there is no command yet which supports them. See the following commit.
| * lua: expose async commandswm42018-05-241-0/+9
| | | | | | | | Might be useful for some.
| * client API: add returning of data from async commandswm42018-05-241-0/+3
| | | | | | | | This was not done sooner out of laziness.
| * screenshot: change async behavior to be in line with new semanticswm42018-05-241-12/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Basically reimplement the async behavior on top of the async command code. With this, all screenshot commands are async, and the "async" prefix basically does nothing. The prefix now behaves exactly like with other commands that use spawn_thread. This also means using the prefix in the preset input.conf is pointless (without effect) and misleading, so remove that. The each_frame mode was actually particularly painful in making this change, since the player wants to block for it when writing a screenshot, and generally doesn't fit into the new infrastructure. It was still relatively easy to reimplement by copying the original command and then repeating it on each frame. The waiting is reentrant now, so move the call in video.c to a "safer" spot. One way to observe how the new semantics interact with everything is using the mpv repl script and sending a screenshot command through it. Without async flag, the script will freeze while writing the screenshot (while playback continues), while with async flag it continues.
| * manpage: mention that --no-correct-pts can break seeking toowm42018-05-241-2/+2
| |
| * player: make all external file loading actions asyncwm42018-05-241-1/+2
| | | | | | | | | | Still missing: not freezing when removing a track (i.e. closing demuxer) with the sub-remove/audio-remove/rescan-external-files commands.
| * command: make sub-add and audio-add commands asyncwm42018-05-241-0/+3
| | | | | | | | | | | | | | | | | | | | Pretty trivial, since commands can be async now, and the common code even provides convenience like running commands on a worker thread. The only ugly thing is that mp_add_external_file() needs an extra flag for locking. This is because there's still some code which calls this synchronously from the main thread, and unlocking the core makes no sense there.
| * command: add infrastructure for async commandswm42018-05-241-1/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This enables two types of command behavior: 1. Plain async behavior, like "loadfile" not completing until the file is fully loaded. 2. Running parts of the command on worker threads, e.g. for I/O, such as "sub-add" doing network accesses on a thread while the core continues. Both have no implementation yet, and most new code is actually inactive. The plan is to implement a number of useful cases in the following commits. The most tricky part is handling internal keybindings (input.conf) and the multi-command feature (concatenating commands with ";"). It requires a bunch of roundabout code to make it do the expected thing in combination with async commands. There is the question how commands should be handled that come in at a higher rate than what can be handled by the core. Currently, it will simply queue up input.conf commands as long as memory lasts. The client API is limited by the size of the reply queue per client. For commands which require a worker thread, the thread pool is limited to 30 threads, and then will queue up work in memory. The number is completely arbitrary.
* | spirv: remove --spirv-compiler=nvidiaNiklas Haas2018-12-012-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | This option has been deprecated upstream for a long time, probably doesn't even work anymore, and won't work moving forwards as we replace the vulkan code by libplacebo wrappers. I haven't removed the option completely yet since in theory we could still add support for e.g. a native glslang wrapper in the future. But most likely the future of this code is deletion. As an aside, fix an issue where the man page didn't mention d3d11.
* | drm: rename plane options to better, invariant, namesAnton Kindestam2018-12-013-20/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit bumps the libmpv version to 1.102 drm-osd-plane -> drm-draw-plane drm-video-plane -> drm-drmprime-video-plane drm-osd-size -> drm-draw-surface-size "draw plane", as in the plane that OpenGL draws to, whether it be video + OSD or just OSD. "drmprime video plane", as in the plane used for hwdec video imported via drmprime. "draw surface size", as in the size of the surface used for the draw plane The new names are invariant whether or not hwdec_drmprime_drm is being used or not. The original naming was very confusing, as when doing regular rendering (swdec or vaapi) the video would be displayed on the "OSD plane", and the "Video plane" would remain unused.
* | drm_atomic: Add general primary/overlay plane optionAnton Kindestam2018-12-012-13/+20
| | | | | | | | | | | | | | | | | | | | Add general primary/overlay plane option to drm-osd-plane-id and drm-video-plane-id, so that the user can just request any usable primary or overlay plane for either of these two options. This should be somewhat more user-friendly (especially as neither of these two options currently have a useful help function), as usually you would only be interested in the type of the plane, and not exactly which plane gets picked.
* | man: fix --watch-later-directory formattingTheAMM2018-11-281-1/+0
| | | | | | | | | | Extra line prevents the sub-title formatting. Removing it, the option is formatted like the others.
* | vo_gpu: vulkan: hwdec_cuda: Add support for Vulkan interopPhilip Langdale2018-10-221-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Despite their place in the tree, hwdecs can be loaded and used just fine by the vulkan GPU backend. In this change we add Vulkan interop support to the cuda/nvdec hwdec. The overall process is mostly straight forward, so the main observation here is that I had to implement it using an intermediate Vulkan buffer because the direct VkImage usage is blocked by a bug in the nvidia driver. When that gets fixed, I will revist this. Nevertheless, the intermediate buffer copy is very cheap as it's all device memory from start to finish. Overall CPU utilisiation is pretty much the same as with the OpenGL GPU backend. Note that we cannot use a single intermediate buffer - rather there is a pool of them. This is done because the cuda memcpys are not explicitly synchronised with the texture uploads. In the basic case, this doesn't matter because the hwdec is not asked to map and copy the next frame until after the previous one is rendered. In the interpolation case, we need extra future frames available immediately, so we'll be asked to map/copy those frames and vulkan will be asked to render them. So far, harmless right? No. All the vulkan rendering, including the upload steps, are batched together and end up running very asynchronously from the CUDA copies. The end result is that all the copies happen one after another, and only then do the uploads happen, which means all textures are uploaded the same, final, frame data. Whoops. Unsurprisingly this results in the jerky motion because every 3/4 frames are identical. The buffer pool ensures that we do not overwrite a buffer that is still waiting to be uploaded. The ra_buf_pool implementation automatically checks if existing buffers are available for use and only creates a new one if it really has to. It's hard to say for sure what the maximum number of buffers might be but we believe it won't be so large as to make this strategy unusable. The highest I've seen is 12 when using interpolation with tscale=bicubic. A future optimisation here is to synchronise the CUDA copies with respect to the vulkan uploads. This can be done with shared semaphores that would ensure the copy of the second frames only happens after the upload of the first frame, and so on. This isn't trivial to implement as I'd have to first adjust the hwdec code to use asynchronous cuda; without that, there's no way to use the semaphore for synchronisation. This should result in fewer intermediate buffers being required.
* | vo_gpu: split --linear-scaling into two separate optionsNiklas Haas2018-10-192-18/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since linear downscaling makes sense to handle independently from linear/sigmoid upscaling, we split this option up. Now, linear-downscaling is its own option that only controls linearization when downscaling and nothing more. Likewise, linear-upscaling / sigmoid-upscaling are two mutually exclusive options (the latter overriding the former) that apply only to upscaling and no longer implicitly enable linear light downscaling as well. The old behavior was very confusing, as evidenced by issues such as #6213. The current behavior should make much more sense, and only minimally breaks backwards compatibility (since using linear-scaling directly was very uncommon - most users got this for free as part of gpu-hq and relied only on that). Closes #6213.
* | man: mention stats in interactive controlNicolas F2018-10-141-0/+5
| | | | | | | | | | | | | | Someone on IRC pointed out that the default stats bindings weren't documented in the interactive control section of the manual, so let's add them with a short mention and a reference to the STATS section of the manual.
* | cocoa-cb: add Apple Software Renderer supportAkemi2018-09-301-0/+9
| | | | | | | | | | | | by default the pixel format creation falls back to software renderer when everything fails. this is mostly needed for VMs. additionally one can directly request an sw renderer or exclude it entirely.
* | manpage: minor fix to --drm-formatAnton Kindestam2018-09-301-1/+1
| | | | | | | | Looking at other examples, a bar should be used when listing OPT_CHOICE options.
* | man/options: emphasize ytdl_hook's script optionsRicardo Constantino2018-09-261-6/+5
| |
* | manpage: fix reference to --tone-mapping by old option nameAnton Kindestam2018-08-181-1/+1
| |
* | demux_edl: add title option to override title of chapterssfan52018-08-131-0/+18
| |
* | manpage: Correct show-text duration default valuejaseg2018-08-051-1/+1
| | | | | | duration is parsed as an integer, and the default value is used if ```-1``` is passed. Passing ```-``` as described here causes a parameter value error.
* | manpage: fix --vf exclamation mark descriptionpavelxdd2018-08-051-1/+1
| | | | | | | | | | An exclamation mark disables the filter by default instead of enabling it.
* | ao_opensles: update interface-changesTom Yan2018-08-051-0/+9
| |
* | manpage: fixup mistaken show playlist/track-list shortcutsDaniel M. Capella2018-07-231-2/+2
| | | | | | | | | | This was mistaken in 496b13227b7f4b47a660bbf4e314f9a55b7e8867 and not noticed in review.
* | gpu: prefer 16bit floating point FBO formats to 16bit integer onesJan Ekström2018-07-081-3/+6
| | | | | | | | | | | | According to earlier discussions, this can improve visual quality. This only changes the preferred order of the formats, not the formats themselves.
* | demux_lavf: drop obscure genpts optionwm42018-05-311-6/+0
| | | | | | | | | | This code shouldn't even exist in libavformat. If you still need it, you can enable it via --demuxer-lavf-o.
* | options: add --http-proxywm42018-05-311-0/+7
| | | | | | | | Often requested, trivial.
* | player: remove deprecated vo/ao auto profileswm42018-05-311-0/+2
| | | | | | | | | | These were deprecated almost 2 years ago. Now they happen to be in the way.
* | manpage: update --demuxer-thread optionwm42018-05-311-3/+6
| | | | | | | | Be a bit more detailed, and discourage disabling it.
* | player: simplify edition switchingwm42018-05-311-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The player fully restarts playback when the edition or disk title is changed. Before this, the player tried to reinitialized playback partially. For example, it did not print a new "Playing: <file>" message, and did not send playback end to libmpv users (scripts or applications). This playback restart code was a bit messy and could have unforeseen interactions with various state. There have been bugs before. Since it's a mostly cosmetic thing for an obscure feature, just change it to a full restart. This works well, though since it may have consequences for scripts or client API users, mention it in interface-changes.rst.
* | manpage: mention that fd:// file descriptors may be modifiedwm42018-05-251-0/+2
| | | | | | | | | | For example, we call setmode() to switch a FD from text to binary mode on garbage OSes.
* | manpage: remove a reference to a removed optionwm42018-05-251-2/+1
| |
* | ipc: alias set_property_string to set_propertywm42018-05-251-8/+1
| | | | | | | | | | | | | | | | | | The only effective difference is that the former explicitly checks whether the JSON value type is string, and errors out if not. The rest is exactly the same (mpv_set_property_string is mpv_set_property with MPV_FORMAT_STRING). It seems silly to keep this, so just remove it.
* | manpage: mention that --no-correct-pts can break seeking toowm42018-05-251-2/+2
|/
* vo_gpu: allow higher icc-contrast and improve loggingNiklas Haas2018-05-171-1/+1
| | | | | | | | | | With the advent of actual HDR devices, my real measured ICC profile has an "infinite" contrast, since the display is completely off on pure black inputs. 100k:1 might not be enough, so let's just bump it up to 1m:1 to be safe. Also, improve the logging in the case that the detected contrast is too high by default.
* manpage: fix typoNiklas Haas2018-05-171-1/+1
|
* manpage: clarify target-prim/trc=auto behaviorNiklas Haas2018-05-171-2/+6
| | | | | | | This logic has been changed throughout the years, notably in 38ac5d5 and 3bdbf6. Update the documentation to reflect the current state. Closes #5834.
* encode: remove old timestamp handlingwm42018-05-033-40/+9
| | | | | This effectively makes --ocopyts the default. The --ocopyts option itself is also removed, because it's redundant.
* manpage: -pre, -del etc. does not work on some options anymorewm42018-05-031-25/+4
| | | | | | With the internal change from stringlist to keyvaluelist, these sub-options stop working. I don't really care enough to bring them back. (Order doesn't matter, -del always seemed annoying.)
* docs/vo: fixup some minor typos a la "planed" instead of "plane"Jan Ekström2018-05-011-3/+3
|
* drm/atomic: refactor planes namesLongChair2018-05-011-0/+14
| | | | | | | | We are currently using primary / overlay planes drm objects, assuming that primary plane is osd and overlay plane is video. This commit is doing two things : - replace the primary / overlay planes members with osd and video planes member without the assumption - Add two more options to determine which one of the primary / overlay is associated to osd / video. - It will default osd to overlay and video to primary if unspecified
* drm/atomic: refactor hwdec_drmprime_drm with native resourcesLongChair2018-05-011-5/+7
| | | | | | | | | | | | | | | | | That new API was introduced and allows to have several native resources. Thisuses that mechanisma for drm resources rather than the deprecated opengl-cb structs. This patch therefore add two structs that can be used with the drm atomic interop. - mpv_opengl_drm_params : which will hold all the drm handles - mpv_opengl_drm_osd_size : which will hold osd layer size This commit adds a drm-osd-size=WxH parameter to commandline which allows to define the OSD plane dimension. OSD can be upscaled to screen resolution when having OSD at video resolution is too heavy. This is especially useful for UHD modes on embedded devices where the GPU cannot handle UHD modes at a decent framerate.
* manpage: remove 4 previously removed optionswm42018-05-011-24/+0
| | | | The manpage parts were forgotten when removing the options.
* manpage: --demuxer-seekable-cache is not experimental anymorewm42018-05-011-2/+1
| | | | | This seems to work surprisingly well, and it's enabled by default (unlike the old text claims).
* cocoa: change deprecation warning from opengl-cb to libmpvAkemi2018-04-291-2/+2
|
* command: change cycle-value command behaviorwm42018-04-293-14/+9
| | | | | | | | | | | | | | | | | | | | Instead of using an internal counter to keep track of the value that was set last, attempt to find the current value of the property/option in the value list, and then set the next value in the list. There are some potential problems. If a property refuses to accept a specific value, the cycle-values command will fail, and start from the same position again. It can't know that it's supposed to skip the next value. The same can happen to properties which behave "strangely", such as the "aspect" property, which will return the current aspect if you write "-1" to it. As a consequence, cycle-values can appear to get "stuck". I still think the new behavior is what users expect more, and which is generally more useful. We won't restore the ability to get the old behavior, unless we decide to revert this commit entirely. Fixes #5772, and hopefully other complaints.
* vd_lavc: enable dr by defaultwm42018-04-291-7/+4
| | | | | I had this enabled for quite a while and experienced no issues. I'm not aware of other issues either.
* encode: rewrite half of itwm42018-04-291-9/+6
| | | | | | | | | | | | | The main change is that we wait with opening the muxer ("writing headers") until we have data from all streams. This fixes race conditions at init due to broken assumptions in the old code. This also changes a lot of other stuff. I found and fixed a few API violations (often things for which better mechanisms were invented, and the old ones are not valid anymore). I try to get away from the public mutex and shared fields in encode_lavc_context. For now it's still needed for some timestamp-related fields, but most are gone. It also removes some bad code duplication between audio and video paths.
* options: remove broken --video-stereo-mode optionwm42018-04-291-0/+4
| | | | | See changelog for minor explanation. Basically, 3D is unused crap and nobody cares.
* client API: add some render API extensions for timingwm42018-04-291-0/+4
| | | | | | | | | | | | Attempts to enable the following things: - let a render API user do "proper" audio-sync video timing itself - make it possible to not re-render repeated frames if the API user has better mechanisms available (e.g. waiting for a DisplayLink cycle instead) - allow the user to delay or skip redraws if it makes sense Basically this information will be needed by API users who want to be "clever" about optimizing timing and rendering.
* client API: preparations for allowing render API to use DR etc.wm42018-04-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | DR (letting the decoder allocate texture memory) requires running the allocation on the render thread. This is rather hard with the render API, because the user controls this thread and when it's entered. It was not possible until now. This commit adds a bunch of infrastructure to make this possible. We add a new optional mode (MPV_RENDER_PARAM_ADVANCED_CONTROL) which basically lets the user's render thread and libmpv agree how this should be done. Misuse would lead to deadlocks. To make this less likely, strictly document thread safety/locking issues. In particular, document which libmpv functions can be called without issues. (The rest has to be assumed unsafe.) The worst issue is destruction of the render context while video is still active. To avoid certain unintended recursive locks (i.e. deadlocks, unless we'd make the locks recursive), make the update callback lock separate. Make "killing" the video chain asynchronous, so we can do extra work while video is being destroyed. Because losing wakeups is a big deal, setting the update callback now triggers a wakeup. (It would have been better if the wakeup callback were a parameter to mpv_render_context_create(), but too late.) This commit does not add DR yet; the following commit does this.
* encoding: deprecate a bunch of obscure optionswm42018-04-202-4/+5
| | | | | --audio-delay does not work correctly yet, but hopefully this can be fixed later.
* scripting: change when/how player waits for scripts being loadedwm42018-04-183-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fundamentally, scripts are loaded asynchronously, but as a feature, there was code to wait until a script is loaded (for a certain arbitrary definition of "loaded"). This was done in scripting.c with the wait_loaded() function. This called mp_idle(), and since there are commands to load/unload scripts, it meant the player core loop could be entered recursively. I think this is a major complication and has some problems. For example, if you had a script that does 'os.execute("sleep inf")', then every time you ran a command to load an instance of the script would add a new stack frame of mp_idle(). This would lead to some sort of reentrancy horror that is hard to debug. Also misc/dispatch.c contains a somewhat tricky mess to support such recursive invocations. There were also some bugs due to this and due to unforeseen interactions with other messes. This scripting stuff was the only thing making use of that reentrancy, and future commands that have "logical" waiting for something should be implemented differently. So get rid of it. Change the code to wait only in the player initialization phase: the only place where it really has to wait is before playback is started, because scripts might want to set options or hooks that interact with playback initialization. Unloading of builtin scripts (can happen with e.g. "set osc no") is left asynchronous; the unloading wasn't too robust anyway, and this change won't make a difference if someone is trying to break it intentionally. Note that this is not in mp_initialize(), because mpv_initialize() uses this by locking the core, which would have the same problem. In the future, commands which logically wait should use different mechanisms. Originally I thought the current approach (that is removed with this commit) should be used, but it's too much of a mess and can't even be used in some cases. Examples are: - "loadfile" should be made blocking (needs to run the normal player code and manually unblock the thread issuing the command) - "add-sub" should not freeze the player until the URL is opened (needs to run opening on a separate thread) Possibly the current scripting behavior could be restored once new mechanisms exist, and if it turns out that anyone needs it. With this commit there should be no further instances of recursive playloop invocations (other than the case in the following commit), since all mp_idle()/mp_wait_events() calls are done strictly from the main thread (and not commands/properties or libmpv client API that "lock" the main thread).
* f_lavfi: add an option to use old audio PTS handling for af_lavfiwm42018-04-152-1/+14
| | | | | The fix-pts option basically uses the old af_lavfi's (before filter rewrite) timestamp logic. The rest is explained in the manpage.
* DOCS/interface-changes.rst: adjust some audio filter change noteswm42018-04-151-3/+5
| | | | | | | | | | | | The first change is about spdif - I mostly ignore spdif issues these days, but it seems like the recent changes made handling of it slightly better (but I didn't really test). The second change is about broken libavfilter filters. We won't restore the old behavior, because people were complaining about the old behavior in the past. Possibly we could make libavfilter export this was metadata and use the old behavior if we know they're broken - but it doesn't exist yet.
* audio: don't recreate AO if a filter changes the output formatwm42018-04-151-3/+4
| | | | | | | | | | | | | | | | | | | | | | | Until recently, the AO was reinitialized strictly only on decoder format changes. But the commit for simplifying audio format negotiation removed this. Now the AO is recreated for any format change. This is sort of annoying if you change playback speed. The insertion/removal of af_scaletempo can change the sample format. For example, the acompressor filter will convert output to double, so toggling scaletempo will force the format back to float. This recreates the AO under the --gapless-audio=weak default. This likely affects a lot of other filters too. Work this around by allowing sample format changes, and keeping the current AO format in these cases. This is probably not a big problem. Most audio APIs force the output format to float anyway. This means you actually have to worry about what the default gapless mode does to your audio. If you start with a file that uses 8 bit per sample, and then continue playing a 24 bit FLAC, it will be converted down to 8 bit per sample. (Assuming they are played in a way that uses the gapless logic.)
* ao_pulse: reduce requested device buffer sizewm42018-04-151-1/+1
| | | | | | Same deal as with the previous commit for ALSA. Untested.
* ao_alsa: add options for controlling period/buffer sizewm42018-04-151-0/+14
|
* ao/openal: Remove notes on experimentality from the documentationLAGonauta2018-04-151-4/+1
| | | | | Also, multi-channel audio should be fast now with the use of the MC extensions.
* ao/openal: Add option to set buffering characteristicsLAGonauta2018-04-151-0/+8
| | | | | | | | | One can now set the number of buffers and the buffer size. This can reduce the CPU usage and the total latency stays mostly the same. As there are sync mechanisms the A/V sync continue intact and working. It also modifies 6.1 channel order, as per OpenAL spec and add AOPLAY_FINAL_CHUNK support
* ao/openal: Add support for direct channels outputLAGonauta2018-04-151-0/+6
| | | | | | | Uses OpenAL Soft's AL_DIRECT_CHANNELS_SOFT extension and can be controlled through a new CLI option, --openal-direct-channels. This allows one to send the audio data direrctly to the desired channel without effects applied.
* manpage: document vaapi-deviceKevin Mitchell2018-04-081-0/+4
| | | | This was left out of e3e2c79 by mistake.
* manpage: move cuda-decode-device with hwdec optionsKevin Mitchell2018-04-081-10/+10
|
* js: implement mp.register_idleAvi Halachmi (:avih)2018-04-071-5/+16
| | | | | | | | | | Due to earlier misinterpretation of the Lua docs as if mp.register_idle registers a one-shot callback, the JS docs suggested to use setTimeout. But the behavior and Lua docs are such that it's a repeating callback which fires just before the script thread goes to sleep. Implement it for JS too.
* js: implement mp.options.read_optionsAvi Halachmi (:avih)2018-04-071-8/+8
|
* config: replace config dir lua-settings/ with dir script-opts/Avi Halachmi (:avih)2018-04-075-4/+5
| | | | lua-settings/ is still supported, with deprecation warning.
* ao_opensles: remove useless cfg_sample_rateTom Yan2018-04-051-0/+1
| | | | We should always use the ao-neutral --audio-samplerate option.
* client API: add a first class hook API, and deprecate old APIwm42018-03-263-34/+48
| | | | | | | | | | | | | | | As it turns out, there are multiple libmpv users who saw a need to use the hook API. The API is kind of shitty and was never meant to be actually public (it was mostly a hack for the ytdl script). Introduce a proper API and deprecate the old one. The old one will probably continue to work for a few releases, but will be removed eventually. There are some slight changes to the old API, but if a user followed the manual properly, it won't break. Mostly untested. Appears to work with ytdl_hook.
* client API: deprecate mpv_get_wakeup_pipe()wm42018-03-262-1/+4
| | | | I don't think anything even uses it.
* command: remove an old compatibility hackwm42018-03-261-0/+2
| | | | | Was removed 3 releases ago and was spamming warning messages that it'll be dropped, so it's fine to remove it now.
* manpage: mention how to get multiple video tracks for --lavfi-complexwm42018-03-261-0/+2
| | | | See #5670.
* client API: add a new way to pass X11 Display etc. to render APIwm42018-03-261-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hardware decoding things often need access to additional handles from the windowing system, such as the X11 or Wayland display when using vaapi. The opengl-cb had nothing dedicated for this, and used the weird GL_MP_MPGetNativeDisplay GL extension (which was mpv specific and not officially registered with OpenGL). This was awkward, and a pain due to having to emulate GL context behavior (like needing a TLS variable to store context for the pseudo GL extension function). In addition (and not inherently due to this), we could pass only one resource from mpv builtin context backends to hwdecs. It was also all GL specific. Replace this with a newer mechanism. It works for all RA backends, not just GL. the API user can explicitly pass the objects at init time via mpv_render_context_create(). Multiple resources are naturally possible. The API uses MPV_RENDER_PARAM_* defines, but internally we use strings. This is done for 2 reasons: 1. trying to leave libmpv and internal mechanisms decoupled, 2. not having to add public API for some of the internal resource types (especially D3D/GL interop stuff). To remain sane, drop support for obscure half-working opengl-cb things, like the DRM interop (was missing necessary things), the RPI window thing (nobody used it), and obscure D3D interop things (not needed with ANGLE, others were undocumented). In order not to break ABI and the C API, we don't remove the associated structs from opengl_cb.h. The parts which are still needed (in particular DRM interop) needs to be ported to the render API.
* manpage: document that ---ao overrides --audio-devicewm42018-03-151-1/+3
| | | | Fixes #5640.
* video: add an option to tune waiting for video timingwm42018-03-151-0/+20
| | | | Probably mostly useful for the libmpv render API.
* client API: deprecate qthelper.hppwm42018-03-151-0/+6
| | | | | | | It's a WTF that we have something as specific in the API. It could be argued that we should provide helpers for other language and GUI toolkit combinations. Obviously that's not going to scale, and it's somewhat likely that it will bitrot. The rest is said in the API changelog.
* DOCS/options: clarify that --end also supports relative timeRicardo Constantino2018-03-151-2/+2
|
* client API: send MPV_EVENT_SHUTDOWN only oncewm42018-03-151-0/+2
| | | | | | | | | | | | Before this change, mpv_wait_event() could inconsistently return multiple MPV_EVENT_SHUTDOWN events to a single mpv_handle, up to the point of spamming the event queue under certain circumstances. Change this and just send it exactly once to each mpv_handle. Some client API users might have weird requirements about destroying their state asynchronously (and not reacting immediately to the SHUTDOWN event). This change will help a bit to make this less weird and surprising.
* client API: rename mpv_detach_destroy() to mpv_destroy()wm42018-03-151-0/+2
| | | | | Since this has clearer semantics now, the old name is just clunky and confusing.
* client API: add mpv_create_weak_client()wm42018-03-151-0/+1
|
* client API: cleanup mpv_handle terminationwm42018-03-151-0/+4
| | | | | | | | | | | | | | | This changes how mpv_terminate_destroy() and mpv_detach_destroy() behave. The doxygen in client.h tries to point out the differences. The goal is to make this more useful to the API user (making it behave like refcounting). This will be refined in follow up commits. Initialization is unfortunately closely tied to termination, so that changes as well. This also removes earlier hacks that make sure that some parts of FFmpeg initialization are run in the playback thread (instead of the user's thread). This does not matter with standard FFmpeg, and I have no reason to care about this anymore.
* doc: fix formatting of video-frame-info propertiesAman Gupta2018-03-111-5/+5
|
* input: minor additions to default key bindingswm42018-03-041-6/+41
| | | | | | | | | This adds key bindings for some semi-popular features. It also tries to cleanup some old bindings. For example w/e for panscan is now changed to w/W. In all cases, the old bindings are still kept and work, though. Part of an ongoing attempt to cleanup the default key bindings. See #973 for some context.
* video: add option to reduce latency by 1 or 2 frameswm42018-03-031-0/+20
| | | | | | | | | | | | | | | | | | | | The playback start logic explicitly waits until the first frame has been displayed. Usually this will introduce a wait of 1 vsync. For normal playback this doesn't matter, but with respect to low latency needs, this only leads to additional data getting queued up in the demuxer or network buffers. Another thing is that the timing logic decodes 1 frame ahead (= 1 frame extra latency) to determine the exact duration of a frame. To be fair, there doesn't really seem to be a hard reason why this is needed. With the current code, enabling the option does lead to A/V desync sometimes (if the demuxer FPS is too inaccurate), and also frame drops at playback start in some situations. But this all seems to be avoidable, if the timing logic were to be rewritten completely, which should probably happen in the future. Thus the new option comes with the warning that it can be removed any time. This is also why the option has "hack" in the name.
* manpage: describe how to list/inspect/apply profileswm42018-03-031-0/+5
| | | | | This is all documented elsewhere in the manpage, but hard to find from here.
* options: add a builtin low-latency profilewm42018-03-031-0/+39
| | | | | | | | | | Well I guess it doesn't help that much. Also add some stuff that might help to the manpage. The fundamental problem with some "live" sources (e.g. x11grab) is actually that the player gets behind initially, and never thinks it has to catch up. This is also why --untimed can help.
* demux_lavf: add --demuxer-lavf-probe-info=nostreamswm42018-03-031-1/+5
| | | | Another attempt to try to make it behave in certain situations.
* DOCS/interface-changes: add note about desyncing audio filterswm42018-03-031-0/+2
| | | | For example af_loudnorm is a known filter with this behavior.
* client API: deprecate opengl-cb API and introduce a replacement APIwm42018-02-284-4/+23
| | | | | | | | | | | | | | | | | | | | | | | | | The purpose of the new API is to make it useable with other APIs than OpenGL, especially D3D11 and vulkan. In theory it's now possible to support other vo_gpu backends, as well as backends that don't use the vo_gpu code at all. This also aims to get rid of the dumb mpv_get_sub_api() function. The life cycle of the new mpv_render_context is a bit different from mpv_opengl_cb_context, and you explicitly create/destroy the new context, instead of calling init/uninit on an object returned by mpv_get_sub_api(). In other to make the render API generic, it's annoyingly EGL style, and requires you to pass in API-specific objects to generic functions. This is to avoid explicit objects like the internal ra API has, because that sounds more complicated and annoying for an API that's supposed to never change. The opengl_cb API will continue to exist for a bit longer, but internally there are already a few tradeoffs, like reduced thread-safety. Mostly untested. Seems to work fine with mpc-qt.
* cocoa-cb: make fullscreen resize animation duration configurableAkemi2018-02-281-0/+12
|
* cocoa-cb: change border and borderless window stylingAkemi2018-02-281-0/+12
| | | | | | | | | | | the title bar is now within the window bounds instead of outside. same as QuickTime Player. it supports several standard styles, two dark and two light ones. additionally we have properly rounded corners now and the borderless window also has the proper window shadow. Also make the earliest supported macOS version 10.10. Fixes #4789, #3944
* context_drm_egl: Introduce 30bpp supportAnton Kindestam2018-02-261-1/+14
| | | | | | | | | | | | | This introduces the option --drm-format (currently used only by context_drm_egl, vo_drm implementation is pending) which allows you to pick between a xrgb8888 or a xrgb2101010 visual for --gpu-context=drm. Requires a recent mesa (18.0.0_rc4 or later) to work. This also fixes a bug when using --gpu-context=drm on a 30bpp-enabled mesa (allow_rgb10_configs set to true). Previously it would've set up an XRGB8888 format at the DRM/GBM level, while a 30bpp EGLConfig would be picked, resulting in a garbled image.
* stream_file: add mode for reading appended fileswm42018-02-211-0/+13
| | | | | | | | | | | | | Do this because retrying reading on higher levels (like the demuxer) usually causes tons of problems. A hack like this is simpler and could allow to remove some of the higher level retry behavior. This works by trying to detect whether the file is appended. If we reach EOF, check if the file size changed compared to the initial value. If it did, it means the file was appended at least once, and we set the p->appending flag. If that flag is set, we simply retry reading more data every time we encounter EOF. The only way to do this is polling, and we poll for at most 10 times, after waiting for 200ms every time.
* vo_gpu: introduce --target-peakNiklas Haas2018-02-201-0/+33
| | | | | | | | | | | | | This solves a number of problems simultaneously: 1. When outputting HLG, this allows tuning the OOTF based on the display characteristics. 2. When outputting PQ or other HDR curves, this allows soft-limiting the output brightness using the tone mapping algorithm. 3. When outputting SDR, this allows HDR-in-SDR style output, by controlling the output brightness directly. Closes #5521
* lua+js: Implement utils.getpid()sfan52018-02-132-0/+6
| | | | | | | Usable for uniquely identifying mpv instances from subprocesses, controlling mpv with AppleScript, ... Adds a new mp_getpid() wrapper for cross-platform reasons.
* vo: make opengl-cb first in the autoprobing orderwm42018-02-131-0/+6
| | | | | | | This should be helpful for the new OSX Cocoa backend, which uses opengl-cb internally. Since it comes with a behavior change that could possibly interfere with libmpv/opengl_cb users, we mark it as explicit API change.
* vf_vavpp: select best quality deinterlacing algorithm by defaultwm42018-02-132-1/+6
| | | | | | | | This switches the default away from "bob" to the best algorithm reported as supported by the driver. This is convenient for users, and there is no reason to use something worse by default. Untested.
* manpage: remove mention of --vf=eqwm42018-02-131-1/+1
| | | | This doesn't work anymore.
* input: add a keybinding to toggle hardware decodingwm42018-02-131-0/+3
| | | | | We sure as hell won't enable hardware decoding by default, but we can make it more accessible with a key binding.
* video: make --deinterlace and HW deinterlace filters always deinterlacewm42018-02-133-4/+9
| | | | | | | | | | | | | | | | Before this, we made deinterlacing dependent on the video codec metadata (AVFrame.interlaced_frame for libavcodec). So even if --deinterlace=yes was set, we skipped deinterlacing if the flag wasn't set. This is very unreliable and there are many streams with flags incorrectly set. The potential problem is that this might upset people who alwase enabled deinterlace and hoped it worked. But it's likely these people were screwed by this setting anyway. The new behavior is less tricky and easier to understand, and this preferable. Maybe one day we could introduce a --deinterlace=auto, which does the right thing, but of course this would be hard to implement (esecially with hwdec). Fixes #5219.
* DOCS/interface-changes.rst: fix typowm42018-02-131-1/+1
|
* cocoa-cb: initial implementation via opengl-cb APIAkemi2018-02-123-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this is meant to replace the old and not properly working vo_gpu/opengl cocoa backend in the future. the problems are various shortcomings of Apple's opengl implementation and buggy behaviour in certain circumstances that couldn't be properly worked around. there are also certain regressions on newer macOS versions from 10.11 onwards. - awful opengl performance with a none layer backed context - huge amount of dropped frames with an early context flush - flickering of system elements like the dock or volume indicator - double buffering not properly working with a none layer backed context - bad performance in fullscreen because of system optimisations all the problems were caused by using a normal opengl context, that seems somewhat abandoned by apple, and are fixed by using a layer backed opengl context instead. problems that couldn't be fixed could be properly worked around. this has all features our old backend has sans the wid embedding, the possibility to disable the automatic GPU switching and taking screenshots of the window content. the first was deemed unnecessary by me for now, since i just use the libmpv API that others can use anyway. second is technically not possible atm because we have to pre-allocate our opengl context at a time the config isn't read yet, so we can't get the needed property. third one is a bit tricky because of deadlocking and it needed to be in sync, hopefully i can work around that in the future. this also has at least one additional feature or eye-candy. a properly working fullscreen animation with the native fs. also since this is a direct port of the old backend of the parts that could be used, though with adaptions and improvements, this looks a lot cleaner and easier to understand. some credit goes to @pigoz for the initial swift build support which i could improve upon. Fixes: #5478, #5393, #5152, #5151, #4615, #4476, #3978, #3746, #3739, #2392, #2217
* osx: always deactivate the early opengl flush on macOSAkemi2018-02-121-0/+3
| | | | | | | | | | | early flushing only caused problems on macOS, which includes: - performance problems and huge amount of dropped frames - problems with playing back video files with fps close to the display refresh rate - rendering at twice the rate of the video fps - not properly detected display refresh rate we always deactivate any early flush for macOS to fix these problems.
* ytdl_hook: add script opt for using manifest URLsRicardo Constantino2018-02-111-0/+4
| | | | | | | | | | | Disable by default. This feature was added in 7eb342757, which allowed stream selection in runtime. Problem with this atm is that FFmpeg will try to demux every first packet of every track leading to noticeable delay opening the URL. This option can be changed to enabled by default or removed when HLS/DASH demuxers are improved upstream.
* vo_gpu: make screenshots use the GL rendererwm42018-02-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Using the GL renderer for color conversion will make sure screenshots will use the same conversion as normal video rendering. It can do this for all types of screenshots. The logic when to write 16 bit PNGs changes. To approximate the old behavior, we decide by looking whether the source video format has more than 8 bits per component. We apply this logic even for window screenshots. Also, 16 bit PNGs now always include an unused alpha channel. The reason is that FFmpeg has RGB48 and RGBA64 formats, but no RGB064. RGB48 is 3 bytes and usually not supported by GPUs for rendering, so we have to use RGBA64, which forces an alpha channel. Will break for users who use --target-trc and similar options. I considered creating a new gl_video context, but it could double GPU memory use, so I didn't. This uses FBOs instead of glGetTexImage(), because that increases the chance it could work on GLES (e.g. ANGLE). Untested. No support for the Vulkan and D3D11 backends yet. Fixes #5498. Also fixes #5240, because the code for reading back is not used with the new code path.
* vo_gpu: port HDR tone mapping algorithm from libplaceboNiklas Haas2018-02-051-11/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current peak detection algorithm was very bugged (which contributed to the excessive cross-frame flicker without long normalization) and also didn't take into account the frame average brightness level. The new algorithm both takes into account frame average brightness (in addition to peak brightness), and also computes the values in a more stable/correct way. (The old path was basically undefined behavior) In addition to improving the algorithm, we also switch to hable tone mapping by default, and try to enable peak computation automatically whever possible (compute shaders + SSBOs supported). We also make the desaturation milder, after extensive testing during libplacebo development. I also had to compensate a bit for the representational differences between mpv and libplacebo (libplacebo treats 1.0 as the reference peak, but mpv treats it as the nominal peak), but it shouldn't have caused any problems. This is still not quite the same as libplacebo, since libplacebo also allows tagging the desired scene average brightness on the output, and it also supports reading the scene average brightness from static metadata (MaxFALL) where available. But those changes are a bit more involved. It's possible we could also read this from metadata in the future, but we have problems communicating with AVFrames as it is and I don't want to touch the mpv colorimetry structs for the time being.
* swresample: limit output size of audio frameswm42018-02-031-0/+9
| | | | | | | | | | | | | | Similar to the previous commit, and for the same reasons. Unlike with af_scaletempo, resampling does not have a natural frame size, so we set an arbitrary size limit on output frames. We add a new option to control this size, although I'm not sure whether anyone will use it, so mark it for testing only. Note that we go through some effort to avoid buffering data in libswresample itself. One reason is that we might have to reinitialize the resampler completely when changing speed, which drops the buffered data. Another is that I'm not sure whether the resampler will do the right thing when applying dynamic speed changes.
* codecs: remove unused family fieldwm42018-02-011-4/+0
| | | | | | | | | | MPlayer used this to distinguish multiple decoder wrappers (such as libavcodec vs. binary codec loader vs. builtin decoders). It lost meaning in mpv as non-libavcodec things were dropped. Now it doesn't serve any purpose anymore. Parsing was removed quite a while ago, and the recent filter change removed any use of the internal family field. Get rid of it.
* manpage: clarify some --vf optionswm42018-01-312-16/+28
| | | | In particular, mention deprecated things.
* ytdl_hook: pass http proxy to ffmpegRicardo Constantino2018-01-301-0/+8
| | | | | | | | | | | | | | FFmpeg only suppports http proxies and ignores it if the resulting url is https. Also, no SOCKS. Use it like `--ytdl-raw-options=proxy=[http://127.0.0.1:3128]` so it doesn't confuse mpv because of the colons. You need to pass it as an option because youtube-dl doesn't give us the proxy. Or just set `http_proxy` environment variable as recommended before. Added example using -append, which doesn't need escaping.
* ao_null: add --ao-null-format option for debuggingwm42018-01-301-0/+3
| | | | Helpful especially to test spdif fallback and so on.
* player: replace old lavfi wrapper with new filter codewm42018-01-301-0/+5
| | | | | lavfi.c is not necessary anymore, because f_lavfi.c (which was actually converted from it) can be used now.
* audio: rewrite filtering glue codewm42018-01-302-4/+25
| | | | Use the new filtering code for audio too.
* video: rewrite filtering glue codewm42018-01-302-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get rid of the old vf.c code. Replace it with a generic filtering framework, which can potentially handle more than just --vf. At least reimplementing --af with this code is planned. This changes some --vf semantics (including runtime behavior and the "vf" command). The most important ones are listed in interface-changes. vf_convert.c is renamed to f_swscale.c. It is now an internal filter that can not be inserted by the user manually. f_lavfi.c is a refactor of player/lavfi.c. The latter will be removed once --lavfi-complex is reimplemented on top of f_lavfi.c. (which is conceptually easy, but a big mess due to the data flow changes). The existing filters are all changed heavily. The data flow of the new filter framework is different. Especially EOF handling changes - EOF is now a "frame" rather than a state, and must be passed through exactly once. Another major thing is that all filters must support dynamic format changes. The filter reconfig() function goes away. (This sounds complex, but since all filters need to handle EOF draining anyway, they can use the same code, and it removes the mess with reconfig() having to predict the output format, which completely breaks with libavfilter anyway.) In addition, there is no automatic format negotiation or conversion. libavfilter's primitive and insufficient API simply doesn't allow us to do this in a reasonable way. Instead, filters can use f_autoconvert as sub-filter, and tell it which formats they support. This filter will in turn add actual conversion filters, such as f_swscale, to perform necessary format changes. vf_vapoursynth.c uses the same basic principle of operation as before, but with worryingly different details in data flow. Still appears to work. The hardware deint filters (vf_vavpp.c, vf_d3d11vpp.c, vf_vdpaupp.c) are heavily changed. Fortunately, they all used refqueue.c, which is for sharing the data flow logic (especially for managing future/past surfaces and such). It turns out it can be used to factor out most of the data flow. Some of these filters accepted software input. Instead of having ad-hoc upload code in each filter, surface upload is now delegated to f_autoconvert, which can use f_hwupload to perform this. Exporting VO capabilities is still a big mess (mp_stream_info stuff). The D3D11 code drops the redundant image formats, and all code uses the hw_subfmt (sw_format in FFmpeg) instead. Although that too seems to be a big mess for now. f_async_queue is unused.
* command: add --osd-on-seek option defaulting to barKevin Mitchell2018-01-262-5/+14
| | | | | | | | | | | | | Restores behaviour prior to aef2ed5dc13e37dec0670c451b4369b151d5c65f. That change was apparently unpopular. However, given the amount of complaining over how hard it is to change the defaults by rebinding every key, I think the extra option introduced by this commit is justified. Technically not all behaviour is restored, because now --no-osd-bar will not instead display the msg text on seek. I think that feature was a little weird and is now easy enough to remedy with the --osd-on-seek option.
* Revert "command: make pause display the same osd-msg-bar as seek"Kevin Mitchell2018-01-261-3/+3
| | | | | | | | | | | | | | This reverts commit 9812e276aa1bb0bddeb73677aa9e9f87e73cd930. This was apparently unpopular. I still think the pause OSD should be the same as seek even if it's not visible by default, but it seems that whether to display a given property change is currently conflated with what to display. The reverted behaviour can be restored by adding something like the following to input.conf: SPACE cycle pause; show_progress
* manpage: mention --network-timeout is broken with RTSPwm42018-01-251-0/+10
| | | | | | Not much we can do, too hard to work around. Fixes #3361.
* options: add string list -toggle actionwm42018-01-251-0/+1
|
* command: add a change-list commandwm42018-01-252-0/+20
| | | | | | | | | | | | | Requested. See manpage additions. The main reason why this goes through the trouble to keep the action/operation parameter separate is so that we don't expose some option parser implementation details to the command (although that is a relatively weak reason), and also to make it more different from the "set" command, which can't support this type of option as it goes through the property layer. Fixes #5435.
* options: add an option type for byte sizeswm42018-01-251-3/+4
| | | | | | And use it for 2 demuxer options. It could be used for more options later. (Though the --cache options can not use this, because they use KB as base unit.)
* manpage: remove obsolete information on bd://Ricardo Constantino2018-01-251-4/+3
| | | | ISO files have been supported by bd:// for a while.
* manpage: document using sub-shadow-offset for background sizingRicardo Constantino2018-01-241-1/+2
|
* stream_bluray: always show list of available titlesRicardo Constantino2018-01-231-2/+2
|
* video: change some remaining vo_opengl mentions to vo_gpuAkemi2018-01-201-2/+2
|
* manpage: reword some vf command exampleswm42018-01-181-7/+8
| | | | Hopefully this is easier to read.
* af_rubberband: add af-command to multiply current pitchVobe2018-01-151-0/+6
| | | | | | | | | | | | | This commit introduces the multiply-pitch af-command. Users may bind keys to this command in order to incrementally adjust the pitch of a track. This will probably mostly be useful for musicians trying to transpose up and down by semi tones without having to calculate the correct ratio beforehand. As an example, here is an input.conf to test this feature: { af-command all multiply-pitch 0.9438743126816935 } af-command all multiply-pitch 1.059463094352953
* af_lavrresample: deprecate this filterwm42018-01-132-0/+8
| | | | | | The future direction might be not having such a user-visible filter at all, similar to how vf_scale went away (or actually, redirects to libavfilter's vf_scale).
* options: deprecate --vf-defaults and --af-defaultswm42018-01-131-0/+6
|
* audio: add global options for resampler defaultswm42018-01-132-10/+40
| | | | | | | | This is part of trying to get rid of --af-defaults, and the af resample filter. It requires a complicated mechanism to set the defaults on the resample filter for backwards compatibility.
* client API: remove ytdl=no defaultwm42018-01-132-2/+2
| | | | | | | | | | | | | | With the recent changes to the script it does not incur a startup delay by default due to starting youtube-dl and waiting for it. This was the main reason for making libmpv have a different default. Starting sub processes from a library can still be a bit fishy, but I think it's ok. Still mention it in the libmpv header. There were already other cases where libmpv would start its own processes, such as the X11 backend calling xdg-screensaver. (The reason why this is fishy is because UNIX process management sucks: SIGCHLD and the wait() syscall make sub processes non-transparent and could potentially introduce conflicts with code trying to use them.)
* manpage: remove stale vo_wayland entrywm42018-01-131-19/+0
|
* manpage: update references to gpu VOdaschiller2018-01-103-12/+12
|
* command: make pause display the same osd-msg-bar as seekKevin Mitchell2018-01-071-3/+3
| | | | | | Previously, toggling pause would generate no osd response, and changing that wasn't even configurable. This was surprising to users who generally expect to see *where* pause / unpause is taking place (#3028).
* command: default to osd-msg-bar for seeksKevin Mitchell2018-01-071-6/+4
| | | | | | | | The previous default was osd-bar (unless the user specified --no-osd-bar, in which case case it was osd-msg). Aside from requiring some twisted logic to implement, this surprised users since osd-msg3 wasn't displayed when seeking with the keyboard (#3028), so the time seeked to was never displayed.
* manpage: fix typos in osd level descriptionsKevin Mitchell2018-01-071-3/+3
|
* ytdl_hook: add script option to revert to trying youtube-dl firstRicardo Constantino2018-01-071-0/+5
| | | | | Should only make a difference if most of the URLs you open need youtube-dl parsing.
* player: strictly never autoselect tracks from --external-fileswm42018-01-062-1/+4
| | | | | | | | | | | | | | | | Before this commit, some autoselection of tracks coming from files loaded with --external-files was still done. This commit removes all of it, and the only way to select a track is via the explicit stream selection options like --vid/--sid/--aid. I think this was always the original intention. The change could in theory still unintentionally surprise some users, so add a changelog entry. This does not affect --audio-file/--sub-file, even if these contain mismatching track types. E.g. if audio files passed to --audio-file contain subtitles, these should still be selected. Past feature requests indicate that users want this.
* vo_gpu: hwdec_dxva2dxgi: initial implementationJames Ross-Gowan2018-01-061-2/+3
| | | | | | | | | | | | | This enables DXVA2 hardware decoding with ra_d3d11. It should be useful for Windows 7, where D3D11VA is not available. Images are transfered from D3D9 to D3D11 using D3D9Ex surface sharing[1]. Following Microsoft's recommendations, it uses a queue of shared surfaces, similar to Microsoft's ISurfaceQueue. This will hopefully prevent surface sharing from impacting parallelism and allow multiple D3D11 frames to be in-flight at once. [1]: https://msdn.microsoft.com/en-us/library/windows/desktop/ee913554.aspx
* player: add --cache-pause-initial option to start in buffering statewm42018-01-031-0/+14
| | | | | | Reasons why you'd want this see manpage additions. Disabled by default, because it would increase latency of live streams by default. (Or well, at least it would be another problem when trying getting lower latency.)
* player: use fixed timeout for cache pausing (buffering) durationwm42018-01-031-0/+9
| | | | | | | | | | | | | | | This tried to be clever by waiting for a longer time each time the buffer was underrunning, or shorter if it was getting better. I think this was pretty weird behavior and makes no sense. If the user really wants the stream to buffer longer, he/she/it can just pause the player (the network caches will continue to be filled until they're full). Every time I actually noticed this code triggering in my own use, I didn't find it helpful. Apart from that it was pretty hard to test. Some waiting is needed to avoid that the player just plays the available data as fast as possible (to compensate for late frames and underrunning audio). Just use a fixed wait time, which can now be controlled by the new --cache-pause-wait option.
* manpage: slightly improve description of --cache-pause optionwm42018-01-031-3/+4
|
* osc: add seekbarkeyframes as a user optiondudemanguy2018-01-031-0/+9
|
* player: remove internal `vo-resize` command againsfan52018-01-021-1/+1
| | | | Its only usecase was automated in the previous commit.
* vo_gpu/context_android: replace both options with android-surface-sizesfan52018-01-021-3/+1
| | | | This allows us to automatically trigger a VOCTRL_RESIZE (also contained).
* command: add demuxer-lavf-list propertyRicardo Constantino2018-01-021-0/+4
| | | | | | | | | Was only available with --demuxer-lavf-format=help and the demuxer needed to be used for it to actually print the list. This can be used in the future to check if 'dash' support was compiled with FFmpeg so ytdl_hook can use it instead. For now, dashdec is too rudimentary to be used right away.
* player: add on_load_fail hookRicardo Constantino2018-01-021-0/+7
|
* vo_gpu/android: fallback to EGL_WIDTH/HEIGHTAman Gupta2018-01-011-2/+4
| | | | | | | | | | Uses the EGL width/height by default when the user fails to set the android-surface-width/android-surface-height options. This means the vo-resize command is optional, and does not need to be implemented on android devices which do not support rotation. Signed-off-by: Aman Gupta <aman@tmm1.net>
* manpage: put android surface options on one lineKevin Mitchell2017-12-281-2/+1
| | | | This is required by rst2man.
* vd_lavc: add an option to explicitly workaround x264 4:4:4 bugwm42017-12-281-0/+12
| | | | | | Technically, the user could just use --vd-lavc-o with the same result. But I find it better to make this an explicit option, so we can document the ups and downs, and also avoid setting it for non-h264.
* player: add internal `vo-resize` commandsfan52017-12-272-2/+3
| | | | Intended to be used with the properties from previous commit.
* vo_gpu/context: Let embedding application handle surface resizessfan52017-12-271-0/+7
| | | | | The callbacks for this are Java-only and EGL does not reliably return the correct values.
* manpage: fix typo in warningBisaloo2017-12-271-1/+1
|
* encode: implement --oset-metadata, and --oremove-metadataTheAMM2017-12-261-0/+21
| | | | | | | | | | | | This commit introduces a new --oset-metadata key-value-list option, allowing the user to specify output metadata when encoding (eg. --oset-metadata=title="Hello",comment="World"). A second option --oremove-metadata is added to exclude existing metadata from the output file (assuming --ocopy-metadata is enabled). Not all output formats support all tags, but luckily libavcodec simply discards unsupported keys.
* encode: rename option --ometadata to --ocopy-metadataTheAMM2017-12-262-1/+2
| | | | | | --copy-metadata describes the result of the option better, (copying metadata from the source file to the output file). Marks the old --no-ometadata OPT_REMOVED with a suggestion for the new --no-ocopy-metadata.
* options: add -add/-append actions to key/value listswm42017-12-261-0/+2
| | | | Requested.
* DOCS/interface-changes.rst: fix minor typoswm42017-12-251-2/+2
|
* osc: make seek ranges rendering optionalpavelxdd2017-12-261-0/+5
| | | | | This commit adds a new osc setting `seekranges` to control the seek ranges visibility.
* options: drop some previously deprecated optionswm42017-12-252-1/+4
| | | | | | | | A release has been made, so drop options deprecated for that release. Also drop some options which have been deprecated a much longer time before. Also fix a typo in client-api-changes.rst.
* vo_gpu: vulkan: allow disabling async tf/compNiklas Haas2017-12-251-0/+17
| | | | | | | | | Async compute in particular seems to cause problems on some drivers, and even when supprted the benefits are not that massive from the tests I have seen, so it's probably safe to keep off by default. Async transfer on the other hand seems to work better and offers a more substantial improvement, so it's kept on.
* vo_gpu: vulkan: support split command poolsNiklas Haas2017-12-251-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of using a single primary queue, we generate multiple vk_cmdpools and pick the right one dynamically based on the intent. This has a number of immediate benefits: 1. We can use async texture uploads 2. We can use the DMA engine for buffer updates 3. We can benefit from async compute on AMD GPUs Unfortunately, the major downside is that due to the lack of QF ownership tracking, we need to use CONCURRENT sharing for all resources (buffers *and* images!). In theory, we could try figuring out a way to get rid of the concurrent sharing for buffers (which is only needed for compute shader UBOs), but even so, the concurrent sharing mode doesn't really seem to have a significant impact over here (nvidia). It's possible that other platforms may disagree. Our deadlock-avoidance strategy is stupidly simple: Just flush the command every time we need to switch queues, and make sure all submission and callbacks happen in FIFO order. This required lifting the cmds_pending and cmds_queued out from vk_cmdpool to mpvk_ctx, and some functions died/got moved as a result, but that's a relatively minor change. On my hardware this is a fairly significant performance boost, mainly due to async transfers. (Nvidia doesn't expose separate compute queues anyway). On AMD, this should be a performance boost as well due to async compute.
* vo_gpu: vulkan: properly track image dependenciesNiklas Haas2017-12-251-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | This uses the new vk_signal mechanism to order all access to textures. This has several advantageS: 1. It allows real synchronization of image access across multiple frames when using multiple queues for parallelism. 2. It allows using events instead of pipeline barriers, which is a finer-grained synchronization primitive that allows for more efficient layout transitions over longer durations. This commit also restructures some of the implicit transition code for renderpasses to be more flexible and correct. (Note: this technically drops the ability to transition the image out of undefined layout when not blending, but that was a bug anyway and needs to be done properly) vo_gpu: vulkan: remove no-longer-true optimization The change to the output_tex format makes this no longer true, and it actually seems to hurt performance now as well. So just don't do it anymore. I also realized it hurts performance when drawing an OSD, so it's probably not a good idea anyway.
* Release 0.28.0v0.28.0Martin Herkt2017-12-251-1/+1
|
* player: show demuxer cache buffered amount in bytes in the status linewm42017-12-232-2/+8
| | | | | | | | I don't want to add another field to display stream and demuxer cache separately, so just add them up. This strangely makes sense, since the forward buffered stream cache amount consists of data not read by the demuxer yet. (If the demuxer cache has buffered the full stream, the forward buffered stream cache amount is 0.)
* cache: lower default size to 2*10MBwm42017-12-231-2/+2
| | | | | | | | | | | | Reduce it from 75MB in both directions (forward/backwards) to 10MB each. The stream cache is kind of becoming useless in favor of the demuxer cache. Using both doesn't make much sense, because they will contain duplicated data for no reason. Still leave it at 10MB, which may help with mp4 a bit. libavformat's mp4 demuxer tends to seek too much, so we try to avoid triggering network level seeks by having some caching in the stream layer.
* demux: bump the demuxer cache readahead durationwm42017-12-231-1/+3
| | | | | | Set it to 10 hours, which is practically unlimited. (Avoiding use of "inf", since that might interact strangely with the option parser and such.)
* options: deprecate --ff- options and propertieswm42017-12-212-0/+5
| | | | | | | | | | | Some old crap which nobody needs and which probably nobody uses. This relies on a GCC extension: using "## __VA_ARGS__" to remove the comma from the argument list if the va args are empty. It's supported by clang, and there's some chance newer standards will introduce a proper way to do this. (Even if it breaks somewhere, it will be a problem only for 1 release, since I want to drop the deprecated properties immediately.)
* vo_mediacodec_embed: implement hwcontextAman Gupta2017-12-201-1/+0
| | | | Fixes vo_mediacodec_embed, which was broken in 80359c6615658f2784
* client API: change --stop-playback-on-init-failure defaultwm42017-12-172-5/+7
| | | | | | | | | | | | | | | | This was off for mpv CLI, but on for libmpv. The motivation behind this was that it would be confusing for applications if libmpv continued playback in a severely "degraded" way (without either audio or video), and that it would be better to fail early. In reality the behavior was just a confusing difference to mpv CLI, and has confused actual users as well. Get rid of it. Not bothering with a version bump, since this is so minor, and it's easy to ensure compatibility in affected applications by just setting the option explicitly. (Also adding the missing next-release-marker in client-api-changes.rst.)
* js: implement mp.msg.trace()TheAMM2017-12-162-4/+7
| | | | | | | To match the new Lua helper introduced in 1afdeee1ad8bca1c703e741002fa3b882d162968 Add documentation for both.
* msg: bump up log level of --log-fileNiklas Haas2017-12-151-3/+3
| | | | This now logs -v -v by default, instead of -v.
* vd_lavc: rename --hwdec=rpi to --hwdec=mmalwm42017-12-152-2/+4
| | | | | | Annoying exception that makes no sense to keep. Normally, users or client applications will either use --hwdec=auto, or not set the option at all, which both leads to the expected result.
* lua+js: implement utils.file_info()TSaaristo2017-12-132-0/+30
| | | | | | | | | | | | | | | This commit introduces mp.utils.file_info() for querying information on file paths, implemented for both Lua and Javascript. The function takes a file path as an argument and returns a Lua table / JS object upon success. The table/object will contain the values: mode, size, atime, mtime, ctime and the convenience booleans is_file, is_dir. On error, the Lua side will return `nil, error` and the Javascript side will return `undefined` (and mark the last error). This feature utilizes the already existing cross-platform `mp_stat()` function.
* vf_buffer: remove this filterwm42017-12-121-6/+0
| | | | | It has been deprecated for a while and is 100% useless. It was forgotten in the recent filter purge. Get rid of it.
* manpage: Fix typo (reomve -> remove)Anna-Maria Meriniemi2017-12-101-1/+1
| | | | This commit fixes the "reomve" typo in the Javascript docs.
* manpage: clarify --sub-file(s) optionswm42017-12-071-2/+6
| | | | | | This was a bit confused, and I bet nobody understood whether to use --sub-file or --sub-files, and what the difference is. Explicitly mention that both variants exist, and how they are related.
* options: add --start=none to reset previously set start timeAman Gupta2017-12-061-0/+2
| | | | | | | | | | | | | Previously when using a libmpv instance to play multiple videos, once --start was set there was no clear way to unset it. You could use --start=0, but 0 does not always mean the beginning of the file (especially when using --rebase-start-time=no). Looking up the start timestamp and passing that in also does not always work, particularly when the first timestamp is negative (since negative values to --start have a special meaning). This commit adds a new "none" value which maps to the internal REL_TIME_NONE, matching the default value of the play_start option.
* manpage: minor fixes to documenationLeo Izen2017-12-061-3/+11
|
* manpage: add note about properties not immediately showing upKevin Mitchell2017-12-061-1/+4
| | | | fixes #5134
* Remove support for ffmpeg-mpvRostislav Pehlivanov2017-12-051-1/+1
|
* manpage: add some minor documenation fixesLeo Izen2017-12-043-3/+13
| | | | | | - replace the incorrect reference to --opengl-shader - document a caveat when using --image-display-duration - add some documentation on --vf=lavfi=
* player/misc.c: allow both --length and --end to control play endpointLeo Izen2017-12-041-0/+3
| | | | | | | | | | Most options that change the playback endpoint coexist and playback stops when it reaches any of them. (e.g. --ab-loop-b, --end, or --chapter). This patch extends that behavior to --length so it isn't automatically trumped by --end if both are present. These two will interact now as the other options do. This change is also documented in DOCS/man/options.rst.
* manpage: vaapi-copy is not limited to Intel GPUsMariusz Skoneczko2017-12-031-1/+1
| | | vaapi-copy works with some AMD cards
* man: remove incorrect note about default opengl backendMartin Herkt2017-12-021-2/+1
|
* vd_lavc: rewrite how --hwdec is handledwm42017-12-011-0/+2
| | | | | | | | | | | | | | | | Change it from explicit metadata about every hwaccel method to trying to get it from libavcodec. As shown by add_all_hwdec_methods(), this is a quite bumpy road, and a bit worse than expected. This will probably cause a bunch of regressions. In particular I didn't check all the strange decoder wrappers, which all cause some sort of special cases each. You're volunteering for beta testing by using this commit. One interesting thing is that we completely get rid of mp_hwdec_ctx in vd_lavc.c, and that HWDEC_* mostly goes away (some filters still use it, and the VO hwdec interops still have a lot of code to set it up, so it's not going away completely for now).
* vd_lavc: drop mediacodec direct rendering support temporarilywm42017-12-011-0/+1
| | | | | | | | | | | | The libavcodec mediacodec support does not conform to the new hwaccel APIs yet. It has been agreed uppon that this glue code can be deleted for now, and support for it will be restored at a later point. Readding would require that it supports the AVCodecContext.hw_device_ctx API. The hw_device_ctx would then contain the surface ID. vo_mediacodec_embed would actually perform the task of creating vo.hwdec_devs and adding a mp_hwdec_ctx, whose av_device_ref is a AVHWDeviceContext containing the android surface.
* vo_gpu: make it possible to load multiple hwdec interop driverswm42017-12-013-32/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make the VO<->decoder interface capable of supporting multiple hwdec APIs at once. The main gain is that this simplifies autoprobing a lot. Before this change, it could happen that the VO loaded the "wrong" hwdec API, and the decoder was stuck with the choice (breaking hw decoding). With the change applied, the VO simply loads all available APIs, so autoprobing trickery is left entirely to the decoder. In the past, we were quite careful about not accidentally loading the wrong interop drivers. This was in part to make sure autoprobing works, but also because libva had this obnoxious bug of dumping garbage to stderr when using the API. libva was fixed, so this is not a problem anymore. The --opengl-hwdec-interop option is changed in various ways (again...), and renamed to --gpu-hwdec-interop. It does not have much use anymore, other than debugging. It's notable that the order in the hwdec interop array ra_hwdec_drivers[] still matters if multiple drivers support the same image formats, so the option can explicitly force one, if that should ever be necessary, or more likely, for debugging. One example are the ra_hwdec_d3d11egl and ra_hwdec_d3d11eglrgb drivers, which both support d3d11 input. vo_gpu now always loads the interop lazily by default, but when it does, it loads them all. vo_opengl_cb now always loads them when the GL context handle is initialized. I don't expect that this causes any problems. It's now possible to do things like changing between vdpau and nvdec decoding at runtime. This is also preparation for cleaning up vd_lavc.c hwdec autoprobing. It's another reason why hwdec_devices_request_all() does not take a hwdec type anymore.
* DOCS/contribute.md: fix a typowm42017-11-301-1/+1
|
* DOCS/mpv.rst: document bluray:// alias for bd://Leo Izen2017-11-301-0/+2
| | | | | | bluray:// is an alias for bd://, but this isn't actually documented anywhere. This should fix that.
* DOCS/interface-changes.rst: fix typoKevin Mitchell2017-11-291-1/+1
|
* DOCS/interface-changes.rst: update according to recent commitswm42017-11-291-0/+2
|
* af: remove deprecated audio filterswm42017-11-292-184/+0
| | | | | | | | | | | | These couldn't be relicensed, and won't survive the LGPL transition. The other existing filters are mostly LGPL (except libaf glue code). This remove the deprecated pan option. I guess it could be restored by inserting a libavfilter filter (if there's one), but for now let it be gone. This temporarily breaks volume control (and things related to it, like replaygain).
* video: remove automatic stereo3d filter insertionwm42017-11-291-2/+2
| | | | | | | | | | | | | The internal stereo3d filter was removed due to being GPL only, and due to being a mess that somehow used libavfilter's filter. Without this filter, it's hard to remove our internal stereo3d image attribute, so even using libavfilter's stereo3d filter would not work too well (unless someone fixes it and makes it able to use AVFrame metadata, which we then could mirror in mp_image). This was never well thought-through anyway, so just drop it. I think some "downsampling" support would still make sense, maybe that can be readded later.
* vf: remove most GPL video filterswm42017-11-291-304/+0
| | | | | | | | | | | | | Almost all of them had their guts removed and replaced by libavfilter long ago, but remove them anyway. They're pointless and have been scheduled for deprecation. Still leave vf_format (because we need it in some form) and vf_sub (not sure). This will break some builtin functionality: lavfi yadif defaults are different, auto rotation and stereo3d downconversion are broken. These might be fixed later.
* manpage: clarify bitstreaming optionsOswald Pan2017-11-191-5/+9
| | | | | | Changes: List other (commonly used) bitstreamed formats. Clarify that WASAPI can only output multichannel PCM in exclusive mode.
* demux: export demuxer cache sizes in byteswm42017-11-101-0/+21
| | | | | | Plus sort of document them, together with the already existing undocumented fields. (This is mostly for debugging, so use is discouraged.)
* demux: use seekable cache for network by default, bump prefetch limitwm42017-11-101-3/+7
| | | | | | | | The option for enabling it has now an "auto" choice, which is the default, and which will enable it if the media is thought to be via network or if the stream cache is enabled (same logic as --cache-secs). Also bump the --cache-secs default from 10 to 120.
* demux: set default back buffer to some high valuewm42017-11-101-1/+3
| | | | | | | Some back buffer is required to make the immediate forward range seekable. This is because the back buffer limit is strictly enforced. Just set a rather high back buffer by default. It's not use if --demuxer-seekable-cache is disabled, so this is without risk.
* demux: support multiple seekable cached rangeswm42017-11-092-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, the demuxer cache was limited to a single range. Extend this to multiple range. Should be useful for slow network streams. This commit changes a lot in the internal demuxer cache logic, so there's a lot of room for bugs and regressions. The logic without demuxer cache is mostly untouched, but also involved with the code changes. Or in other words, this commit probably fucks up shit. There are two things which makes multiple cached ranges rather hard: 1. the need to resume the demuxer at the end of a cached range when seeking to it 2. joining two adjacent ranges when the lowe range "grows" into it (and resuming the demuxer at the end of the new joined range) "Resuming" the demuxer means that we perform a low level seek to the end of a cached range, and properly append new packets to it, without adding packets multiple times or creating holes due to missing packets. Since audio and video never line up exactly, there is no clean "cut" possible, at which you could resume the demuxer cleanly (for 1.) or which you could use to detect that two ranges are perfectly adjacent (for 2.). The way how the demuxer interleaves multiple streams is also unpredictable. Typically you will have to expect that it randomly allows one of the streams to be ahead by a bit, and so on. To deal with this, we have heuristics in place to detect when one packet equals or is "behind" a packet that was demuxed earlier. We reuse the refresh seek logic (used to "reread" packets into the demuxer cache when enabling a track), which checks for certain packet invariants. Currently, it observes whether either the raw packet position, or the packet DTS is strictly monotonically increasing. If none of them are true, we discard old ranges when creating a new one. This heavily depends on the file format and the demuxer behavior. For example, not all file formats have DTS, and the packet position can be unset due to libavformat not always setting it (e.g. when parsers are used). At the same time, we must deal with all the complicated state used to track prefetching and seek ranges. In some complicated corner cases, we just give up and discard other seek ranges, even if the previously mentioned packet invariants are fulfilled. To handle joining, we're being particularly dumb, and require a small overlap to be confident that two ranges join perfectly. (This could be done incrementally with as little overlap as 1 packet, but corner cases would eat us: each stream needs to be joined separately, and the cache pruning logic could remove overlapping packets for other streams again.) Another restriction is that switching the cached range will always trigger an asynchronous low level seek to resume demuxing at the new range. Some users might find this annoying. Dealing with interleaved subtitles is not fully handled yet. It will clamp the seekable range to where subtitle packets are.
* vo_gpu: hwdec_d3d11va: allow zero-copy video decodingJames Ross-Gowan2017-11-071-0/+12
| | | | | | | | | | | | | | Like the manual says, this is technically undefined behaviour. See: https://msdn.microsoft.com/en-us/library/windows/desktop/ff476085.aspx In particular, MSDN says texture arrays created with the BIND_DECODER flag cannot be used with CreateShaderResourceView, which means they can't be sampled through SRVs like normal Direct3D textures. However, some programs (Google Chrome included) do this anyway for performance and power-usage reasons, and it appears to work with most drivers. Older AMD drivers had a "bug" with zero-copy decoding, but this appears to have been fixed. See #3255, #3464 and http://crbug.com/623029.
* vo_gpu: d3d11: initial implementationJames Ross-Gowan2017-11-071-6/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a new RA/vo_gpu backend that uses Direct3D 11. The GLSL generated by vo_gpu is cross-compiled to HLSL with SPIRV-Cross. What works: - All of mpv's internal shaders should work, including compute shaders. - Some external shaders have been tested and work, including RAVU and adaptive-sharpen. - Non-dumb mode works, even on very old hardware. Most features work at feature level 9_3 and all features work at feature level 10_0. Some features also work at feature level 9_1 and 9_2, but without high-bit- depth FBOs, it's not very useful. (Hardware this old is probably not fast enough for advanced features anyway.) Note: This is more compatible than ANGLE, which requires 9_3 to work at all (GLES 2.0,) and 10_1 for non-dumb-mode (GLES 3.0.) - Hardware decoding with D3D11VA, including decoding of 10-bit formats without truncation to 8-bit. What doesn't work / can be improved: - PBO upload and direct rendering does not work yet. Direct rendering requires persistent-mapped PBOs because the decoder needs to be able to read data from images that have already been decoded and uploaded. Unfortunately, it seems like persistent-mapped PBOs are fundamentally incompatible with D3D11, which requires all resources to use driver- managed memory and requires memory to be unmapped (and hence pointers to be invalidated) when a resource is used in a draw or copy operation. However it might be possible to use D3D11's limited multithreading capabilities to emulate some features of PBOs, like asynchronous texture uploading. - The blit() and clear() operations don't have equivalents in the D3D11 API that handle all cases, so in most cases, they have to be emulated with a shader. This is currently done inside ra_d3d11, but ideally it would be done in generic code, so it can take advantage of mpv's shader generation utilities. - SPIRV-Cross is used through a NIH C-compatible wrapper library, since it does not expose a C interface itself. The library is available here: https://github.com/rossy/crossc - The D3D11 context could be made to support more modern DXGI features in future. For example, it should be possible to add support for high-bit-depth and HDR output with DXGI 1.5/1.6.
* demux: improve and optimize cache pruning and seek range determinationwm42017-11-041-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | The main purpose of this commit is avoiding any hidden O(n^2) algorithms in the code for pruning the demuxer cache, and for determining the seekable boundaries of the cache. The old code could loop over the whole packet queue on every packet pruned in certain corner cases. There are two ways how to reach the goal: 1) commit a cardinal sin 2) do everything incrementally The cardinal sin is adding an extra field to demux_packet, which caches the determined seekable range for a keyframe range. demux_packet is a rather general data structure and thus shouldn't have any fields that are not inherent to its use, and are only needed as an implementation detail of code using it. But what are you gonna do, sue me? In the future, demux.c might have its own packet struct though. Then the other existing cardinal sin (the "next" field, from MPlayer times) could be removed as well. This commit also changes slightly how the seek end is determined. There is a note on the manpage in case anyone finds the new behavior confusing. It's somewhat cleaner and might be needed for supporting multiple ranges (although that's unclear).
* demux: add option to create CC tracks eagerlywm42017-11-031-0/+12
| | | | | | | | | | | | We don't hope to auto-detect them at load time, as that would be too much of a pain - even FFmpeg requires fetching and parsing of video packets, and exposes the information only via deprecated API. But there still needs to be a way to select them by default. This is also needed to get the first CC packet at all (without seeking back). This commit also attempts to clean up locking a bit, which is a PITA, but it's better be careful & clean.
* manpage: fix/improve --msg-level descriptionwm42017-10-301-1/+3
| | | | Fixes #5055.
* vd_lavc: add support for nvdec hwaccelwm42017-10-281-0/+8
| | | | | | | | See manpage additions. (In ffmpeg-mpv and Libav, this is still called "cuvid". Libav won't work yet, because it has no frame params support yet, but this could get fixed soon.)
* command: change demuxer-cache-state property to return multiple rangeswm42017-10-261-6/+12
| | | | | | | | | | | | | | | | | | Even if the demuxer cache does not multiple ranges yet. This is to reduce the pain should caching of multiple ranges ever be implemented. Also change it from the sub properties stuff to return a mpv_node directly, which is less roundabout. Sub-property access won't work anymore, though. Remove the seekable-start/-end fields as well, as they're redundant with the ranges. All this would normally be considered an API change, but since it's been only a few days with no known users, change it immediately. This adds some node.c helpers as well, as the code would be too damn fugly otherwise.
* vo_gpu: change --tone-mapping-desaturate algorithmNiklas Haas2017-10-251-8/+9
| | | | | | | | | | | | | | | Comparing mpv's implementation against the ACES ODR reference samples and algorithms, it seems like they're happy desaturating highlights _way_ more aggressively than mpv currently does. And indeed, looking at some example clips like The Redwoods (which is actually well-mastered), the current desaturation produces unnatural-looking brightness fringes where the sky meets the treeline. Adjust the algorithm to make it apply to a much larger, more gradual brightness region; and change the interpretation of the parameter. As a bonus, the new parameter is actually sanely scaled (higher values = more desaturation). Also, make it scale based on the signal level instead of the luminance, to avoid under-desaturating bright blues.
* manpage: add --hwdec=rkmpp entrywm42017-10-231-0/+1
|
* client API: minor bump + change entry for DRM related opengl-cb changeswm42017-10-231-0/+3
| | | | Commit cfcee4cfe705 forgot those.
* Add DRM_PRIME Format Handling and Display for RockChip MPP decodersLionel CHAZALLON2017-10-231-0/+5
| | | | | | | | | | | This commit allows to use the AV_PIX_FMT_DRM_PRIME newly introduced format in ffmpeg that allows decoders to provide an AVDRMFrameDescriptor struct. That struct holds dmabuf fds and information allowing zerocopy rendering using KMS / DRM Atomic. This has been tested on RockChip ROCK64 device.
* command: read the diff if you want to knowwm42017-10-211-0/+16
|
* demux: add a back buffer and the ability to seek into itwm42017-10-212-5/+26
| | | | | | | | | | | | | | | | | | | | | | | | This improves upon the previous commit, and partially rewrites it (and other code). It does: - disable the seeking within cache by default, and add an option to control it - mess with the buffer estimation reporting code, which will most likely lead to funny regressions even if the new features are not enabled - add a back buffer to the packet cache - enhance the seek code so you can seek into the back buffer - unnecessarily change a bunch of other stuff for no reason - fuck up everything and vomit ponies and rainbows This should actually be pretty usable. One thing we should add are some properties to report the proper buffer state. Then the OSC could show a nice buffer range. Also configuration of the buffers could be made simpler. Once this has been tested enough, it can be enabled by default, and might replace the stream cache's byte ringbuffer. In addition it may or may not be possible to keep other buffer ranges when seeking outside of the current range, but that would be much more complex.
* vo_gpu: add rgba16hf to the list of FBO formatsJames Ross-Gowan2017-10-181-3/+3
| | | | | | | This should be functionally identical to rgba16f, since the formats only differ in their representation on the CPU, but it could be useful for RA backends that don't expose rgba16f, like Vulkan. It's definitely useful for the WIP D3D11 backend.
* video: add mp_image_params.hw_flags and add an examplewm42017-10-161-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems this will be useful for Rokchip DRM hwcontext integration. DRM hwcontexts have additional internal structure which can be different depending on the decoder, and which is not part of the generic hwcontext API. Rockchip has 1 layer, which EGL interop happens to translate to a RGB texture, while VAAPI (mapped as DRM hwcontext) will use multiple layers. Both will use sw_format=nv12, and thus are indistinguishable on the mp_image_params level. But this is needed to initialize the EGL mapping and the vo_gpu video renderer correctly. We hope that the layer count is enough to tell whether EGL will translate the data to a RGB texture (vs. 2 texture resembling raw nv12 data). For that we introduce MP_IMAGE_HW_FLAG_OPAQUE. This commit adds the flag, infrastructure to set it, and an "example" for D3D11. The D3D11 addition is quite useless at this point. But later we want to get rid of d3d11_update_image_attribs() anyway, while we still need a way to force d3d11vpp filter insertion, so maybe it has some justification (who knows). In any case it makes testing this easier. Obviously it also adds some basic support for triggering the opaque format for decoding, which will use a driver-specific format, but which is not supported in shaders. The opaque flag is not used to determine whether d3d11vpp needs to be inserted, though.
* video: make it possible to always override hardware decoding formatwm42017-10-162-0/+15
| | | | | | | | Mostly an obscure option for testing. But --videotoolbox-format can be deprecated, as it becomes redundant. We rely on the libavutil hwcontext implementation to reject invalid pixfmts, or not to blow up if they are incompatible.
* vo_gpu: semi-fix --gpu-context/--gpu-api options and help outputwm42017-10-161-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was confusing at best. Change it to output the actual choices. (Seems like in the end it's always me who has to clean up other people's bullshit.) Context names were not unique - but they should be, so fix it. The whole point of the original --opengl-backend option was to side-step the tricky auto-detection, so you know exactly what you get. The goal of this commit is to make --gpu-context work the same way. Fix the non-unique names by appending "vk" to the names. Keep in mind that this was not suitable for slecting the "UI" backend anyway, since "x11" would force GLX, whereas people on not-NVIDIA actually want "x11egl". Users trying to use --gpu-context=x11 to force the X11 backend would always end up with GLX, which would at least break VAAPI hardware decoding for them. Basically the idea that this option could select the "UI" type is completely broken - it selects an implementation, which implies a UI. Selecting the UI type This would require a separate mechanism. (Although in theory this separate mechanism could be part of the --gpu-context option - in any case, someone would have to implement it.) To achieve help output that can actually be understood, just duplicate the code. Most of that code is duplicated anyway, and trying to share just the list code with the result of making the output unreadable doesn't make too much sense. If we wanted to save code/effort, we could just remove the help output altogether. --gpu-api has non-unique entries, and it would be nice to group them (e.g. list all OpenGL capable contexts with "opengl"), but C makes this simple idea too much of a pain, so don't do it. Also remove a stray tab from the android entry on the manpage.
* manpage: add Vulkan WSI extension name for --gpu-context=winJames Ross-Gowan2017-10-141-1/+1
| | | | This matches the other Vulkan contexts.
* options: add --vlang switchwm42017-10-131-0/+3
| | | | For symmetry with --alang and --slang. 100% useless, but why not?
* stats: clarify documentationJulian2017-10-131-7/+7
| | | | | Change true/false to yes/no because lua script configs only take these values for booleans.
* manpage: correct some comments about ordered chapterswm42017-10-111-6/+5
| | | | | Ordered chapters behavior changed at some point, and all of this was outdated.
* stats: add documentationJulian2017-10-092-0/+164
| | | | stats.rst is heavily based on osc.rst
* lua: integrate stats.lua scriptJulian2017-10-091-0/+5
| | | | | | | | | Signed-off-by: wm4 <wm4@nowhere> Rename --stats to --load-stats-overlay and add an entry to options.rst over the original commit. Signed-off-by: wm4 <wm4@nowhere>
* vo_gpu: add android opengl backendAman Gupta2017-10-092-1/+7
| | | | | | | | | | At the moment, rendering on Android requires ``--vo=opengl-cb`` and a lot of java<->c++ bridging code to receive the receive and react to the render callback in java. Performance also suffers with opengl-cb, due to the overhead of context switching in JNI. With this patch, Android can render using ``--vo=gpu --gpu-context=android`` (after setting ``--wid`` to point to an android.view.Surface on-screen).
* vo: add mediacodec_embed output driverAman Gupta2017-10-091-0/+8
| | | | | Allows rendering IMGFMT_MEDIACODEC frames directly onto an android.view.Surface
* hwdec: add mediacodec hardware decoder for IMGFMT_MEDIACODEC framesAman Gupta2017-10-091-0/+5
|
* hwdec: rename mediacodec to mediacodec-copyAman Gupta2017-10-092-1/+3
|
* command: drop "audio-out-detected-device" propertywm42017-10-092-4/+2
| | | | | | Coreaudio stopped setting it a few releases ago (66a958bb4fa). There is not much of a user- or API-visible change, so remove it without deprecation.
* Revert "wayland_common: add support for embedding"Rostislav Pehlivanov2017-10-051-4/+0
| | | | This reverts commit 8d8d4c5cb1b3553215a8ba547d4db463fdc88831.
* wayland_common: add support for embeddingRostislav Pehlivanov2017-10-051-0/+4
|
* DOCS/interface-changes.rst: mention --log-file behavior changewm42017-10-051-0/+1
| | | | See previous commit.
* msg: make --msg-level affect --log-file toowm42017-10-041-2/+5
| | | | | | | But --msg-level can only raise the log level used for --log-file, because the original idea with --log-file was that it'd log verbose messages to disk even if terminal logging is lower than -v or fully disabled.
* DOCS/compile-windows.md: update for changes to mpv and MSYS2James Ross-Gowan2017-10-021-21/+19
| | | | | | | | | | | | - Don't recommend libdvdnav, since DVD support isn't compiled by default anymore. - Take advantage of the new $MINGW_PACKAGE_PREFIX and $MSYSTEM_PREFIX variables to make the build commands independent from the mingw-w64 build environment being used. - Invoke /usr/bin/python3 directly, since I've heard some packages have started to depend on mingw-w64 versions of Python, but our build scripts only work with the MSYS2 version. - Reword the MSYS2 install instructions to try to prevent common errors.
* Man page: fix typoKranky K. Krackpot2017-10-011-2/+2
| | | Man page: fix typo as of https://github.com/mpv-player/mpv/issues/4913
* manpage: update --blend-subtitles affected optionsLeo Izen2017-09-291-1/+1
| | | | | | Changed the reference from --gpu-gamma to --gamma-factor, and changed the reference from --post-shader to --glsl-shaders, in order to reflect actual changes to the option names.
* vo_gpu: force layout std430 for PCsNiklas Haas2017-09-291-3/+1
| | | | | | | | Seems to be fixed upstream in the nvidia driver, so it's probably a good idea to 1. force the layout and 2. remove the warning, as it now actually works. Users with older drivers would run into errors, but they can still use shaderc as a replacement. (And it's not like the old status quo was any better)
* vo_gpu: make the vertex attribs dynamicNiklas Haas2017-09-281-4/+0
| | | | | | | | | | | | | | | | This has several advantages: 1. no more redundant texcoords when we don't need them 2. no more arbitrary limit on how many textures we can bind 3. (that extends to user shaders as well) 4. no more arbitrary limits on tscale radius To realize this, the VAO was moved from a hacky stateful approach (gl_sc_set_vertex_attribs) - which always bothered me since it was required for compute shaders as well even though they ignored it - to be a proper parameter of gl_sc_dispatch_draw, and internally plumbed into gl_sc_generate, which will make a (properly mangled) deep copy into params.vertex_attribs.
* manpage: remove aphasemeter exampleswm42017-09-271-6/+1
| | | | | | | | | | Apparently this filter is broken in a weird way, which even makes some libavfilter functions segfault in certain conditions. Don't waste time with it and just remove the examples. Also adjust the "life" example description (certainly this filter is 100% worthless, but the example does demonstrate how to use source filters without any available input).
* manpage: some --hwdec correctionswm42017-09-261-5/+2
| | | | | | | auto-copy selects more modes than the ones listed. It will always be outdated anyway. The GLX vaapi backend is never selected anymore, because it sucks.
* manpage: document --gpu-api=vulkanNiklas Haas2017-09-261-0/+2
|
* vo_gpu: vulkan: add support for waylandRostislav Pehlivanov2017-09-261-1/+1
|
* vo_gpu: vulkan: generalize SPIR-V compilerNiklas Haas2017-09-261-0/+17
| | | | | | | | | | | | | | In addition to the built-in nvidia compiler, we now also support a backend based on libshaderc. shaderc is sort of like glslang except it has a C API and is available as a dynamic library. The generated SPIR-V is now cached alongside the VkPipeline in the cached_program. We use a special cache header to ensure validity of this cache before passing it blindly to the vulkan implementation, since passing invalid SPIR-V can cause all sorts of nasty things. It's also designed to self-invalidate if the compiler gets better, by offering a catch-all `int compiler_version` that implementations can use as a cache invalidation marker.
* vo_gpu: vulkan: initial implementationNiklas Haas2017-09-261-6/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This time based on ra/vo_gpu. 2017 is the year of the vulkan desktop! Current problems / limitations / improvement opportunities: 1. The swapchain/flipping code violates the vulkan spec, by assuming that the presentation queue will be bounded (in cases where rendering is significantly faster than vsync). But apparently, there's simply no better way to do this right now, to the point where even the stupid cube.c examples from LunarG etc. do it wrong. (cf. https://github.com/KhronosGroup/Vulkan-Docs/issues/370) 2. The memory allocator could be improved. (This is a universal constant) 3. Could explore using push descriptors instead of descriptor sets, especially since we expect to switch descriptors semi-often for some passes (like interpolation). Probably won't make a difference, but the synchronization overhead might be a factor. Who knows. 4. Parallelism across frames / async transfer is not well-defined, we either need to use a better semaphore / command buffer strategy or a resource pooling layer to safely handle cross-frame parallelism. (That said, I gave resource pooling a try and was not happy with the result at all - so I'm still exploring the semaphore strategy) 5. We aggressively use pipeline barriers where events would offer a much more fine-grained synchronization mechanism. As a result of this, we might be suffering from GPU bubbles due to too-short dependencies on objects. (That said, I'm also exploring the use of semaphores as a an ordering tactic which would allow cross-frame time slicing in theory) Some minor changes to the vo_gpu and infrastructure, but nothing consequential. NOTE: For safety, all use of asynchronous commands / multiple command pools is currently disabled completely. There are some left-over relics of this in the code (e.g. the distinction between dev_poll and pool_poll), but that is kept in place mostly because this will be re-extended in the future (vulkan rev 2). The queue count is also currently capped to 1, because of the lack of cross-frame semaphores means we need the implicit synchronization from the same-queue semantics to guarantee a correct result.
* vo_gpu: fix gamma scaleNiklas Haas2017-09-211-11/+11
| | | | | | This never really made sense since the BT.1886 changes. It should get *brighter* for bright rooms, not darker for dark rooms. Picked some new values that seemed reasonable-ish.
* vo_gpu: convert windows/osx hwdecs/contexts to new APIJames Ross-Gowan2017-09-211-19/+0
|
* vo_opengl: refactor into vo_gpuNiklas Haas2017-09-215-104/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done in several steps: 1. refactor MPGLContext -> struct ra_ctx 2. move GL-specific stuff in vo_opengl into opengl/context.c 3. generalize context creation to support other APIs, and add --gpu-api 4. rename all of the --opengl- options that are no longer opengl-specific 5. move all of the stuff from opengl/* that isn't GL-specific into gpu/ (note: opengl/gl_utils.h became opengl/utils.h) 6. rename vo_opengl to vo_gpu 7. to handle window screenshots, the short-term approach was to just add it to ra_swchain_fns. Long term (and for vulkan) this has to be moved to ra itself (and vo_gpu altered to compensate), but this was a stop-gap measure to prevent this commit from getting too big 8. move ra->fns->flush to ra_gl_ctx instead 9. some other minor changes that I've probably already forgotten Note: This is one half of a major refactor, the other half of which is provided by rossy's following commit. This commit enables support for all linux platforms, while his version enables support for all non-linux platforms. Note 2: vo_opengl_cb.c also re-uses ra_gl_ctx so it benefits from the --opengl- options like --opengl-early-flush, --opengl-finish etc. Should be a strict superset of the old functionality. Disclaimer: Since I have no way of compiling mpv on all platforms, some of these ports were done blindly. Specifically, the blind ports included context_mali_fbdev.c and context_rpi.c. Since they're both based on egl_helpers, the port should have gone smoothly without any major changes required. But if somebody complains about a compile error on those platforms (assuming anybody actually uses them), you know where to complain.
* options: remove --heartbeat-cmd and --heartbeat--intervalwm42017-09-182-44/+3
| | | | | | | | | This mechanism uses system() and shouldn't even exist. x11_common.c has its own solution for the original problem (disabling Linux DE screensavers without MPlayer/mpv having to link a dbus lib). If that is not sufficient, you can create a simple Lua script. Incidentally fixes #4888.
* Release 0.27.0v0.27.0Martin Herkt2017-09-131-1/+1
|
* vo_opengl: add a gamut warning featureNiklas Haas2017-09-101-0/+12
| | | | | | | | This clearly highlights all out-of-gamut/clipped pixels. (Either too bright or too saturated) Has some (documented) caveats. Also make TONE_MAPPING_CLIP stop actually clamping the value range (it's unnecessary and breaks this feature).
* man: correct default for --audio-file-autoMartin Herkt2017-09-101-4/+3
| | | | Fixes #4851
* input: merge mouse wheel and axis keycodesJames Ross-Gowan2017-09-031-0/+3
| | | | | | | | | | | | | | | | | | | | | | Mouse wheel bindings have always been a cause of user confusion. Previously, on Wayland and macOS, precise touchpads would generate AXIS keycodes and notched mouse wheels would generate mouse button keycodes. On Windows, both types of device would generate AXIS keycodes and on X11, both types of device would generate mouse button keycodes. This made it pretty difficult for users to modify their mouse-wheel bindings, since it differed between platforms and in some cases, between devices. To make it more confusing, the keycodes used on Windows were changed in 18a45a42d524 without a deprecation period or adequate communication to users. This change aims to make mouse wheel binds less confusing. Both the mouse button and AXIS keycodes are now deprecated aliases of the new WHEEL keycodes. This will technically break input configs on Wayland and macOS that assign different commands to precise and non-precise scroll events, but this is probably uncommon (if anyone does it at all) and I think it's a fair tradeoff for finally fixing mouse wheel-related confusion on other platforms.
* input: use mnemonic names for mouse buttonsJames Ross-Gowan2017-09-031-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | mpv's mouse button numbering is based on X11 button numbering, which allows for an arbitrary number of buttons and includes mouse wheel input as buttons 3-6. This button numbering was used throughout the codebase and exposed in input.conf, and it was difficult to remember which physical button each number actually referred to and which referred to the scroll wheel. In practice, PC mice only have between two and five buttons and one or two scroll wheel axes, which are more or less in the same location and have more or less the same function. This allows us to use names to refer to the buttons instead of numbers, which makes input.conf syntax a lot easier to remember. It also makes the syntax robust to changes in mpv's underlying numbering. The old MOUSE_BTNx names are still understood as deprecated aliases of the named buttons. This changes both the input.conf syntax and the MP_MOUSE_BTNx symbols in the codebase, since I think both would benefit from using names over numbers, especially since some platforms don't use X11 button numbering and handle different mouse buttons in different windowing system events. This also makes the names shorter, since otherwise they would be pretty long, and it removes the high-numbered MOUSE_BTNx_DBL names, since they weren't used. Names are the same as used in Qt: https://doc.qt.io/qt-5/qt.html#MouseButton-enum
* DOCS/contribute.md: coding style exceptionwm42017-08-301-0/+2
|
* DOCS/interface-changes.rst: don't suggest @deinterlace labelwm42017-08-231-2/+2
| | | | | --vf-defaults always applies, and the label is ignored. So don't suggest using it, it would be misleading.
* video: change --deinterlace behaviorwm42017-08-223-12/+22
| | | | | | | | | | | | This removes all GPL only code from it, and that's the whole purpose. Also happens to be much simpler. The "deinterlace" option still sort of exists, but only as runtime changeable option. The main change in behavior is that the property will not report back the actual deint state. Or in other words, if inserting or initializing the filter fails, the deinterlace property will still return "yes". This is in line with most recent behavior changes to properties and options.
* manpage: video equalizer properties now behave differentlywm42017-08-221-4/+0
| | | | No more special behavior.
* manpage: remove removed "osd" commandwm42017-08-221-4/+0
| | | | Someone pointed this out on github.
* vf_eq: remove this filterwm42017-08-222-26/+1
| | | | | | | | | Both the video equalizer command/option glue, which drives this filter, as well as the filter itself are slightly GPL contaminated. So it goes. After this commit, "--vf=eq" will actually use libavfilter's vf_eq (if FFmpeg was compiled in GPL mode), but it has different options and will not listen to the equalizer VOCTRLs.
* TOOLS/lua/autodeint: update to lavfi-bridgeRicardo Constantino2017-08-211-1/+0
| | | | | Also use lavfi setfield instead of removed field-dominance. Remove missing remainder of field-dominance in docs.
* ao_rsound: allow setting the hostwm42017-08-211-1/+2
| | | | | | | | Completely untested (rsound dev libs unavailable on my system). Trivial enough that it's very likely that it'll just work. No port selection, but could be added by parsing it as part of the device name. Should fix #4714.
* video: add metadata handling for spherical videowm42017-08-211-0/+10
| | | | | | | | | | | | | | This adds handling of spherical video metadata: retrieving it from demux_lavf and demux_mkv, passing it through filters, and adjusting it with vf_format. This does not include support for rendering this type of video. We don't expect we need/want to support the other projection types like cube maps, so we don't include that for now. They can be added later as needed. Also raise the maximum sizes of stringified image params, since they can get really long.
* options: correct two remaining instances of singular `file-path` optionsFrédéric Brière2017-08-181-2/+2
| | | | These were left behind by e4bc563fd2dc.
* manpage: update --lavfi-complex descriptionwm42017-08-171-4/+7
|
* options: change --loop semanticswm42017-08-142-5/+6
| | | | As announced by the previous deprecation.
* player: add --track-auto-selection optionwm42017-08-122-0/+14
| | | | I imagine this is useful. Or maybe it isn't.
* player: make --lavfi-complex changeable at runtimewm42017-08-121-0/+3
| | | | | | | | Tends to be somewhat glitchy if subtitles are enabled, and you enable and disable tracks. On error, this will disable --lavfi-complex, which will result in whatever behavior.
* man/mpv: document bd:// expected titles and title listRicardo Constantino2017-08-111-0/+5
|
* vo_opengl: further GL API use separationwm42017-08-071-0/+5
| | | | | | | | | | | | | | | Move multiple GL-specific things from the renderer to other places like vo_opengl.c, vo_opengl_cb.c, and ra_gl.c. The vp_w/vp_h parameters to gl_video_resize() make no sense anymore, and are implicitly part of struct fbodst. Checking the main framebuffer depth is moved to vo_opengl.c. For vo_opengl_cb.c it always assumes 8. The API user now has to override this manually. The previous heuristic didn't make much sense anyway. The only remaining dependency on GL is the hwdec stuff, which is harder to change.
* cocoa: add an option to disable the native macOS fullscreenAkemi2017-08-061-0/+4
| | | | Fixes #4014
* vo_opengl: make fbotex helper use rawm42017-08-051-0/+3
| | | | | | | | Further work removing GL dependencies from the actual video renderer, and moving them into ra backends. Use of glInvalidateFramebuffer() falls away. I'd like to keep this, but it's better to readd it once shader runs are in ra.
* w32_common: handle media keysJames Ross-Gowan2017-08-051-1/+1
| | | | | | | | | | | | | | | | | This was attempted before in fc9695e63b5b, but it was reverted in 1b7ce759b1f4 because it caused conflicts with other software watching the same keys (See #2041.) It seems like some PCs ship with OEM software that watches the volume keys without consuming key events and this causes them to be handled twice, once by mpv and once by the other software. In order to prevent conflicts like this, use the WM_APPCOMMAND message to handle media keys. Returning TRUE from the WM_APPCOMMAND handler should indicate to the operating system that we consumed the key event and it should not be propogated to the shell. Also, we now only listen for keys that are directly related to multimedia playback (eg. the APPCOMMAND_MEDIA_* keys.) Keys like APPCOMMAND_VOLUME_* are ignored, so they can be handled by the shell, or by other mixer software.
* vo_opengl: support embedded ICC profilesNiklas Haas2017-08-031-0/+6
| | | | | | | | | | | | | | | | This currently only works when using lcms-based color management (--icc-profile-*). In principle, we could also support using lcms even when the user has not specified an ICC profile, by generating the profile against a fixed reference (--target-prim/--target-trc) instead. I still might do that some day, simply because 3dlut provides a higher quality conversion than our simple gamut mapping does for stuff like BT.2020, and also because it's now needed to enable embedded ICC profiles. But that would be a separate change, so preserve the status quo for now. (Besides, my opinion is still that you should be using an ICC profile if you care about colors being accurate _at all_)
* vo_opengl: make compute shaders more flexibleNiklas Haas2017-08-031-7/+17
| | | | | | This allows users to do their own custom sample writing, mainly meant to address use cases such as RAVU. Also clean up the compute shader code a bit.
* vo_opengl: simplify/fix user shader textureswm42017-08-031-10/+12
| | | | | | | | | | | | | | | | | | | | This broke float textures, which were actually used by some shaders. There were probably some other bugs as well. Lots of code can be avoided by using ra_tex_params directly, so do that. The main change is that COMPONENT/FORMAT are replaced by a single FORMAT directive, which takes different parameters now. Due to the mess with 16/32 bit float textures, and because we want to support other APIs than just GL in the future, it's not really clear how this should be handled, and the nice component/type separation makes things actually harder. So just jump the gun and use the ra_format.name names, which were originally meant mostly for debugging. (This is probably something that will be regretted later.) Still only superficially tested, but seems to work. Fixes #4708.
* vo_opengl: generalize HDR tone mapping to gamut mappingNiklas Haas2017-08-032-7/+10
| | | | | | | | | | | | | | | | | | | | | | Since this code was already written for HDR, and is now per-channel (because it works better for HDR as well), we can actually reuse this to get very high quality gamut mapping without clipping. The only required change is to move the tone mapping from before the gamut map to after the gamut map. Additonally, we need to also account for changes in the signal range as a result of applying the CMS when we compute ref_peak, which is fortunately pretty easy because we only need to consider the case of primaries mapping to themselves. Since `HDR` no longer really makes sense as a label, rename it to `--tone-mapping` in general. Also fits better with `--tone-mapping-desat` etc. Arguably we could also rename `--hdr-compute-peak`, but that option is basically only useful for HDR content anyway because we don't need information about the signal range for gamut mapping. This (finally!) gives us reasonably high quality gamut mapping even in the absence of an ICC profile / 3DLUT.
* vo_opengl: support loading custom user texturesNiklas Haas2017-07-271-13/+48
| | | | | | | | | | | Parsing the texture data as raw strings makes the textures the most portable and self-contained. In order to facilitate different types of shaders, the parse_user_shader interaction has been changed to instead have it loop through blocks and call the passed functions for each valid block parsed. This is more modular and also cleaner, with better code separation. Closes #4586.
* vo_opengl: adjust the rules for linearizationNiklas Haas2017-07-241-2/+4
| | | | | | | | | | | | | | | | | | Two changes, compounded into one since they affect the same logic: 1. Never use linearization for HDR downscaling 2. Always use linearization for interpolation Instead of fixing p->use_linear at the beginning of pass_render_frame, we flip it on "dynamically" as needed. I plan on killing this p->use_linear frame (along with other per-pass metadata) and moving them into their own struct for tracking the "current" state of the video, but that's a separate/upcoming refactor. As a small bonus, reduce some code duplication in the interpolation logic. Fixes #4631
* manpage: expand --hwdec warningsNiklas Haas2017-07-241-17/+36
| | | | | | | | | | | | | I've found more test cases where hwdec=cuda shits itself, even hwdec=cuda-copy. So the whole “copyback is no worse than swdec” is simply not true. Also, in the light of 10 bit media files and APIs silently truncating to 8 bit, the warnings need to be generalized a bit. It's no longer safe to say that “doesn't convert to RGB” means “perfect playback”. I've also added a very strong disclaimer to the whole hwdec scenario clarifying why hwdec is usually a bad idea unless absolutely needed, because I've seen issue after issue that is resolved by disabling hwdec.
* vo_opengl: support user compute shadersNiklas Haas2017-07-241-0/+11
| | | | | These are identical to regular fragment shader hooks, but with extra metadata indicating the preferred block size.
* vo_opengl: support HDR peak detectionNiklas Haas2017-07-241-0/+8
| | | | | | | | | | | | | | This is done via compute shaders. As a consequence, the tone mapping algorithms had to be rewritten to compute their known constants in GLSL (ahead of time), instead of doing it once. Didn't affect performance. Using shmem/SSBO atomics in this way is extremely fast on nvidia, but it might be slow on other platforms. Needs testing. Unfortunately, setting up the SSBO still requires OpenGL calls, which means I can't have it in video_shaders.c, where it belongs. But I'll defer worrying about that until the backend refactor, since then I'll be breaking up the video/video_shaders structure anyway.
* vo_opengl: add direct rendering supportwm42017-07-241-0/+17
| | | | | | | | | | | | | | | | | | | | Can be enabled via --vd-lavc-dr=yes. See manpage additions for what it does. This reminds of the MPlayer -dr flag, but the implementation is completely different. It's the same basic concept: letting the decoder render into a GPU buffer to avoid a copy. Unlike MPlayer, this doesn't try to go through filters (libavfilter doesn't support this anyway). Unless a filter can work in-place, DR will be silently disabled. MPlayer had very complex semantics about buffer types and management (which apparently nobody ever understood) and weird restrictions that mostly limited it to mpeg2 style codecs. The mpv code does not do any of this, and just lets the decoder allocate an arbitrary number of untyped images. (No MPlayer code was used.) Parts of the code based on work by atomnuker (starting point for the generic code) and haasn (some GL definitions, some basic PBO code, and correct fencing).
* options: drop --video-aspect-method=hybridwm42017-07-212-4/+2
| | | | | | | | | Remove this code because it could be argued that it contains GPL-only code (see commit 642e963c860 for details). The remaining aspect methods appear to work just as well, are potentially more compatible to other players, and the code becomes much simpler.
* client API: drop some compatibility handlingwm42017-07-211-0/+3
| | | | See commit e4bc563fd2dcf for more information.
* input: drop deprecated "osd" commandwm42017-07-211-0/+1
| | | | | Complicated situation due to changes by GPL-only author, but also unnecessary due to newer mechanisms.
* options: kill --field-dominancewm42017-07-214-14/+4
| | | | GPL-only author, no chance of relicensing.
* manpage: fix minor spelling mistake in mpv.rstJames Cowgill2017-07-191-1/+1
| | | | Found by https://lintian.debian.org/
* manpage: upcase JavaScript for section title case consistency.torque2017-07-171-1/+1
|
* vo_opengl: use glBufferSubData instead of glMapBufferRangeNiklas Haas2017-07-161-3/+0
| | | | | | | | | | | | | | | | | | | | Performance seems pretty much unchanged but I no longer get nasty spikes on NUMA systems, probably because glBufferSubData runs in the driver or something. As a simplification of the code, we also just size the PBO to always have the full size, even for cropped textures. This seems slower but not by relevant amounts, and only affects e.g. --vf=crop. It also slightly increases VRAM usage for textures with big strides. This new code path is especially nice because it no longer depends on GL_ARB_map_buffer_range, and no longer uses any functions that can possibly fail, thus simplifying control flow and seemingly deprecating the manpage's claim about possible image corruption. In theory we could also reduce NUM_PBO_BUFFERS since it doesn't seem like we're streaming uploads anyway, but leave it in there just in case some drivers disagree...
* vo_opengl: generalize --scale-clamp etc.Niklas Haas2017-07-122-6/+13
| | | | | This can help fight ringing without completely killing it, thus providing a middle-ground between ringing and aliasing.
* player: change default section when loading encoding-profiles.confwm42017-07-121-2/+6
| | | | | | | It used to use the "encoding" section. Change this to the default section to remove another small special case. encoding-profiles.conf didn't use this by default anyway. The previous revert could mitigate potential impacts of this a little.
* man/options: fix a few broken options' examplesRicardo Constantino2017-07-121-16/+14
|
* ytdl_hook: actually load the script-optsRicardo Constantino2017-07-111-3/+3
| | | | | Also, comma-separated list doesn't actually work, even quote-surrounded. Switch to using | instead.
* ytdl_hook: add option to exclude URLs from being parsedRicardo Constantino2017-07-111-0/+20
| | | | | | | | | This is more of a niche usecase than --ytdl-format and --ytdl-raw-options, so a simple script option should be enough. Either create lua-settings/ytdl_hook.conf with 'exclude=example.com,sub.example.com' option or "--script-opts=ytdl_hook-exclude=example.com,sub.example.com"
* manpage: add a description for --scaleNiklas Haas2017-07-091-0/+1
| | | | For some reason this wasn't actually documented.
* vo_opengl: support tone-mapping-param for `clip`Niklas Haas2017-07-071-0/+3
| | | | | | | This just indicates a fixed linear coefficient to multiply into the signal, similar to the old option --target-brightness (but the inverse thereof). Good for testing purposes, which is why I added it. (This also corresponds somewhat to what zimg does)
* vo_opengl: rework --opengl-dumb-modeNiklas Haas2017-07-072-4/+6
| | | | | | | It's now possible to request non-dumb mode as a user, even when not using any non-dumb features. This change is mostly intended for testing, so I can easily switch between dumb and non-dumb mode on default settings. The default behavior is unaffected.
* demux_lavf: remove --demuxer-lavf-cryptokey optionwm42017-07-062-4/+2
| | | | | | | | Was at least somewhat broken, and is misleading. I don't really have an idea why FFmpeg has two AVOptions here anyway. We don't need to care, and I'm only aware of 1 user trying this option ever. See #4579.
* js: utils.getenv(): fix crash on undefined varAvi Halachmi (:avih)2017-07-061-1/+2
|
* vo_opengl: also expose NAME_mul for user shadersNiklas Haas2017-07-061-0/+8
| | | | | | | | | This is exposed so that bjin/mpv-prescalers can use textureGatherOffset for performance. Since there are now quite a lot of parameters where it isn't quite clear why they're all defined, add a paragraph to the man page that explains them a bit.
* vo_opengl: add --tone-mapping-desaturateNiklas Haas2017-07-061-0/+10
| | | | | | | This helps prevent unnaturally, weirdly colorized blown out highlights for direct images of the sunlit sky and other way-too-bright HDR content. I was debating whether to set the default at 1.0 or 2.0, but went with the more conservative option that preserves more detail/color.
* vo_opengl: use textureGatherOffset for polar filtersNiklas Haas2017-07-051-1/+1
| | | | | | | | | | | | | | | | | | This is more efficient on my machine (nvidia), but only when applied to groups of exactly 4 texels. So we switch to the more efficient textureGather for groups of 4. Some notes: - textureGatherOffset seems to be faster than textureGather by a non-negligible amount, but for some reason, textureOffset is still slower than a straight-up texture - textureGather* requires GLSL 400; and at least on nvidia, this requires actually allocating a GL 4.0 context. - the code in opengl/common.c that clamped the GLSL version to 330 is deprecated, because the old user shader style has been removed completely in the meantime - To combat the growing complexity of the polar sampling code, we drop the antiringing functionality from EWA shaders completely, since it never really worked well for EWA to begin with. (Horrific artifacting)
* filter_kernels: add radius cutoff functionalityNiklas Haas2017-07-031-0/+8
| | | | | | | | This allows filter functions to be prematurely cut off once their contributions start becoming insignificant. This effectively prevents wasted GPU time sampling from parts of the function that are essentially reduced to zero by the window function, providing anywhere from a 10% to 20% speedup. (5700μs -> 4700μs for me)
* m_option: deprecate multiple items for -add etc.wm42017-07-021-0/+2
| | | | | | | | This is more confusing than it helps, and forces escaping more stuff. For example, for string lists we could remove all need for escaling with -add and -pre. The user can simply use multiple of those options.
* options: change everything againwm42017-07-023-29/+35
| | | | Fucking bullshit.
* vo_opengl: refactor vo performance subsystemNiklas Haas2017-07-013-24/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces `vo-performance` by `vo-passes`, bringing with it a number of changes and improvements: 1. mpv users can now introspect the vo_opengl passes, which is something that has been requested multiple times. 2. performance data is now measured per-pass, which helps both development and debugging. 3. since adding more passes is cheap, we can now report information for more passes (e.g. the blit pass, and the osd pass). Note: we also switch to nanosecond scale, to be able to measure these passes better. 4. `--user-shaders` authors can now describe their own passes, helping users both identify which user shaders are active at any given time as well as helping shader authors identify performance issues. 5. the timing data per pass is now exported as a full list of samples, so projects like Argon-/mpv-stats can immediately read out all of the samples and render a graph without having to manually poll this option constantly. Due to gl_timer's design being complicated (directly reading performance data would block, so we delay the actual read-back until the next _start command), it's vital not to conflate different passes that might be doing different things from one frame to another. To accomplish this, the actual timers are stored as part of the gl_shader_cache's sc_entry, which makes them unique for that exact shader. Starting and stopping the time measurement is easy to unify with the gl_sc architecture, because the existing API already relies on a "generate, render, reset" flow, so we can just put timer_start and timer_stop in sc_generate and sc_reset, respectively. The ugliest thing about this code is that due to the need to keep pass information relatively stable in between frames, we need to distinguish between "new" and "redrawn" frames, which bloats the code somewhat and also feels hacky and vo_opengl-specific. (But then again, this entire thing is vo_opengl-specific)
* options: change path list options, and document list optionswm42017-06-303-8/+63
| | | | | | | | | | | | | | | | | | | | | | | The changes to path list options is basically getting rid of the need to pass multiple paths to a single option. Instead, you can use the option multiple times. The old behavior can be used by using the -set suffix with the option. Change some options to path lists. For example --script is now append by default, and if you use --script-set, you need to use ":"/";" as separator instead of ",". --sub-paths/--audio-file-paths is a deprecated alias now, and will break if the user tries to pass multiple paths to it. I'm assuming that if these are used, most users will pass only 1 path anyway. --opengl-shaders has more compatibility handling, since it's probably rather common that users pass multiple options to it. Also document all that in the manpage. I'll probably regret this later, as it somewhat increases the complexity of the option parser, rather than increasing it.
* ao_coreaudio: insane hack for passing through AC3 as float PCMwm42017-06-301-0/+9
| | | | | This uses the same hack as Kodi uses, and I suspect MPlayer/ancient mpv also did this (but didn't research that).
* video: change --video-aspect-method default value againwm42017-06-291-6/+9
| | | | | | I noticed that the previous default, bitstream, actually breaks with some shitty anamorphic DVD rips that signal square pixel aspect in the bitstream. So I think the "container" method is a better default.
* DOCS/tech-overview.txt: updateswm42017-06-291-50/+26
| | | | Oh, this file still exists.
* manpage: fix unfinished sentencewm42017-06-291-1/+2
| | | | | | | No idea what I intended to write here, so I'm finishing it in some way that makes sense (going by the commit that added it). Fixes #4525.
* input.conf: drop TV/DVB bindingswm42017-06-271-7/+2
| | | | Is anyone still using them? Well, I'm removing them anyway.
* client API: drop old "no-" option emulationwm42017-06-262-0/+4
| | | | | | | You could do mpv_set_option(h, "no-fs", ""), which would behave like "--no-fs" on the command line. At one point, this had to be emulated for compatibility, and printed a deprecation warning. This was almost a year ago, so remove it.
* manpage: fix --angle-swapchain-length requirementsJames Ross-Gowan2017-06-261-1/+1
| | | | This should also make a difference with the Windows 7 Platform Update.
* options: suggest a replacement for --field-dominancewm42017-06-251-1/+1
|
* DOCS/contribute.md: add rules for push access, that nobody will read...wm42017-06-241-0/+29
| | | | | ...but that doesn't mean they're not binding. Also, they're made up on the spot, and probably bad.
* DOCS/contribute.md: some updateswm42017-06-241-11/+16
| | | | | | Some of this is outdated by years. I don't think we even have MPlayer-style randomly formatted source files anymore (except stream_dvd.c).
* options: remove weird --really-quiet special behaviorwm42017-06-231-0/+1
| | | | | | | | | This was especially grating because it causes problems with the option/property unification, uses as only thing OPT_FLAG_STORE, and behaves weird with the client API or scripts. It can be reimplemented in a much simpler way, although it needs slightly more code. (Simpler because less special cases.)
* options: disable --field-dominance for WIP LGPL mode, also deprecatewm42017-06-231-0/+1
| | | | | | | | | | | | cehoyos, who did not agree to the LGPL relicensing, added this in commit 240b743e. The actual implementation of it is already guarded with HAVE_GPL. The field_dominance field in the option struct won't be guarded. We won't keep GPL-only core code forever, so deprecate it as well. To apply forced deinterlacing, a libavfilter filter can probably be removed, or we merge this functionality into the --deinterlace option (without using copyrighted stuff).
* player: deprecate "osd" commandwm42017-06-231-0/+1
| | | | | | | | | | | It was extended by "seru" in 8d190244. This person could not be reached (or does not reply), and it's in the way of LGPL relicensing. Deprecate it, and mark the (probably) affected parts of the code with HAVE_GPL. To be fair, even though the osd.c parts were refactored from the original code, there's probably no copyright by seru on it. But for now play it save. The mere existence of a 3rd OSD level is certainly not copyrightable, so you still can set osd-level to 3 - just that it does nothing.
* manpage: Remove documentation to use 'I' to show filename on the OSDLeo Izen2017-06-211-3/+0
| | | | | | A relic of mplayer had 'I' as the keybind to show the filename of the currently playing file on the OSD. mpv does not do this by default. This commit removes this incorrect information from the mpv manage.
* man/options: correct --{sub,osd}-font examplesRicardo Constantino2017-06-211-2/+2
| | | | Comic Sans is a good font that did nothing wrong.
* vo_opengl: implement sony s-log2 trcNiklas Haas2017-06-182-0/+3
| | | | | | | | Apparently this is virtually identical to Panasonic's V-Log, but using the constants from S-Log1 and an extra scaling coefficient to make the S-Log1 curve less limited. Whatever floats their NIH boat, I guess. Source: https://pro.sony.com/bbsccms/assets/files/micro/dmpc/training/S-Log2_Technical_PaperV1_0.pdf
* vo_opengl: implement sony s-log1 trcNiklas Haas2017-06-182-0/+3
| | | | | | | | Source: https://pro.sony.com/bbsccms/assets/files/mkt/cinema/solutions/slog_manual.pdf Not 100% confident in the implementation since the values from the spec seem to be very subtly off (~1%), but it should be close enough for practical purposes.
* csputils: implement sony s-gamutNiklas Haas2017-06-181-0/+2
| | | | The S-Log "matching" colorspace
* vo_opengl: implement support for OOTFs and non-display referred contentNiklas Haas2017-06-182-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | This introduces (yet another..) mp_colorspace members, an enum `light` (for lack of a better name) which basically tells us whether we're dealing with scene-referred or display-referred light, but also a bit more metadata (in which way is the scene-referred light expected to be mapped to the display?). The addition of this parameter accomplishes two goals: 1. Allows us to actually support HLG more-or-less correctly[1] 2. Allows people playing back direct “camera” content (e.g. v-log or s-log2) to treat it as scene-referred instead of display-referred [1] Even better would be to use the display-referred OOTF instead of the idealized OOTF, but this would require either native HLG support in LittleCMS (unlikely) or more communication between lcms.c and video_shaders.c than I'm remotely comfortable with That being said, in principle we could switch our usage of the BT.1886 EOTF to the BT.709 OETF instead and treat BT.709 content as being scene-referred under application of the 709+1886 OOTF; which moves that particular conversion from the 3dlut to the shader code; but also allows a) users like UliZappe to turn it off and b) supporting the full HLG OOTF in the same framework. But I think I prefer things as they are right now.
* csputils: rename HDR curvesNiklas Haas2017-06-183-6/+7
| | | | | | | | | | st2084 and std-b67 are really weird names for PQ and HLG, which is what everybody else (including e.g. the ITU-R) calls them. Follow their example. I decided against naming them bt2020-pq and bt2020-hlg because it's not necessary in this case. The standard name is only used for the other colorspaces etc. because those literally have no other names.
* video: refactor HDR implementationNiklas Haas2017-06-184-18/+12
| | | | | | | | | | | | | | | List of changes: 1. Kill nom_peak, since it's a pointless non-field that stores nothing of value and is _always_ derived from ref_white anyway. 2. Kill ref_white/--target-brightness, because the only case it really existed for (PQ) actually doesn't need to be this general: According to ITU-R BT.2100, PQ *always* assumes a reference monitor with a white point of 100 cd/m². 3. Improve documentation and comments surrounding this stuff. 4. Clean up some of the code in general. Move stuff where it belongs.
* dec_video: change license to LGPL (almost)wm42017-06-182-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "Almost" because this might contain copyright by michael, who agreed with LGPL, but only once the core is LGPL. This is preparation for that to happen. Apart from that, the usual remarks apply. In particular, dec_video.c started out quite chaotic with no modularization, but was later basically gutted, and in general rewritten a bunch of times. Not going to give a history lesson. Special attention needs to be given to 3 patches by cehosos, who did not agree to the relicensing: 240b743ebdf: --field-dominance e32cbbf7dc3: reinit VO if aspect ratio changes 306f6243fdf: use container aspect if codec aspect unset (?) The first patch is pretty clearly still in the current code, and needs to be disabled for LGPL. The functionality of the second patch is still active, but implemented completely different, and as part of general frame parameter changes (at the time of the patch, MPlayer already reinitialized the VO on frame size and pixel format changes - all this was merged into a single check for changing image parameters). The third patch makes me a bit more uncomfortable. It appears the code was moved to dec_video.c in de68b8f23c8c, and further changed in 82f0d373, 0a0bb905, and bf13bd0d. You could claim that cehoyos' copyright still sticks. Fortunately, we implement alternative aspect detection, which is simpler and probably preferable, and which arguably contains none of the original code and logic, and thus should be fully safe. While I don't know if cehoyos' copyright actually still applies, I'm more comfortable with making the code GPL-only for now. Also change the default to use the (in future) plain LGPL code, and deprecate the one associated with the GPL code, so we can eventually remove the GPL code. But it's also possible we decide that the copyright doesn't apply, and undo the deprecation and GPL guards. I expect that users won't notice anything. If you ask me, the old aspect method was probably an accidental bug instead of intentional behavior. Although, the new aspect method was broken too, so I had to fix it.
* image_writer, vo_image: change license to LGPLwm42017-06-181-8/+0
| | | | | | | | | | | | | | | | | | image_writer.c has code originating from vf_screenshot.c, vo_jpeg.c, and potentially others. vo_image.c is based on a bunch of those VOs as well, and the intention was to replace them with a single codebase. vo_tga.c was written by someone who was not or not could be contacted, but it doesn't matter anyway, as no code from that initial patch was used. One rather old patch (57f77bb41a9) reordered by libjpeg patch API calls, and the author of the patch was not contacted. But at least with the smoothing_factor override removed, this pretty much exactly corresponds to the official libjpeg API example (and might even reflect a change to those - didn't dig deeper). This removes the -jpeg-smooth option. While we're at it, remove all the other dropped jpeg options from the manpage (which was forgotten in past changes).
* vf_dlopen: remove this filterwm42017-06-181-23/+0
| | | | | | | | | | | | | | | | It was an attempt to move some MPlayer filters (which were removed from mpv) to external, loadable filters. That worked well, but then the MPlayer filters were ported to libavfilter (independently), so they're available again. Also there is a more widely supported and more advanced loadable filter system supported by mpv: vapoursynth. In conclusion, vf_dlopen is not useful anymore, confusing, and requires quite a bit of code (and probably wouldn't survive the rewrite of the mpv video filter chain, which has to come at some point). It has some implicit dependencies on internal conventions, like possibly the format names dropped in the previous commit. We also deprecated it last release. Drop it.
* stream_file: option to close fd after use -> fdclose://sfan52017-06-161-0/+5
| | | | | fdclose://123 will instruct mpv to close the file descriptor when it is no longer needed (usually when playing finishes).
* command: add all options to property->option bridgewm42017-06-151-0/+8
| | | | | | | | | | | | | | | | Before this, options with co->data==NULL (i.e. no storage) were not added to the bridge (except alias options). There are a few options which might make sense to allow via the bridge ("profile" and "include"). So allow them. In command_init(), we merely remove the co->data check, the rest of the diff is due to switching the if/else branches for convenience. We also must explicitly error on M_PROPERTY_GET if co->data==NULL. All other cases check it in some way. Explicitly exclude options from the property bridge, which would be added due this, and the result would be pointless.
* js: add javascript scripting support using MuJSAvi Halachmi (:avih)2017-06-142-0/+338
| | | | | | | | | | | | | | | Implements JS with almost identical API to the Lua support. Key differences from Lua: - The global mp, mp.msg and mp.utils are always available. - Instead of returning x, error, return x and expose mp.last_error(). - Timers are JS standard set/clear Timeout/Interval. - Supports CommonJS modules/require. - Added at mp.utils: getenv, read_file, write_file and few more. - Global print and dump (expand objects) functions. - mp.options currently not supported. See DOCS/man/javascript.rst for more details.
* DOCS/contribute.md: commit message body should be line-broken toowm42017-06-131-2/+3
| | | | | | | Not all tools apply line breaking. Which is probably good, because you wouldn't be able to put lines in there which should _not_ be broken. Don't ask me whether there is an "official" git convention for this.
* manpage: Update 'u' keyboard shortcut docs to say 'sub-ass-override'Leo Izen2017-06-131-1/+1
| | | | | | | | | Sometime earlier, "sub-ass-style-override" was renamed to "sub-ass-override". The option's documentation was updated to support this, but not the documentation for the hotkey that toggles this option. This commit updates the keyboard shortcut documentation to fix that. Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: add new HDR tone mapping algorithmNiklas Haas2017-06-091-4/+24
| | | | | | | | | | | | | | | | | I call it `mobius` because apparently the form f(x) = (cx+a)/(dx+b) is called a Möbius transform, which is the algorithm this is based on. In the extremes it becomes `reinhard` (param=0.0 and `clip` (param=1.0), smoothly transitioning between the two depending on the parameter. This is a useful tone mapping algorithm since the tunable mobius transform allows the user to decide the trade-off between color accuracy and detail preservation on a continuous scale. The default of 0.3 is already far more accurate than `reinhard` while also being reasonably good at preserving highlights, without suffering from the overall brightness drop and color distortion of `hable`. For these reasons, make this the new default. Also expand and improve the documentation for these tone mapping functions.
* options: slight cleanup of --sub-ass-style-overrideNiklas Haas2017-06-072-18/+23
| | | | | | | | | | | | | | | | | | List of changes: 1. Rename `signfs` to `scale`, to better match what it actually does (force --sub-scale to apply to ASS subtitles), and fix the blatantly wrong documentation (it actually specifically does *not* apply to signs) 2. Rename `--sub-ass-style-override` to `--sub-ass-override` to help reduce confusion between it and `--sub-ass-force-style`, as well as pointing out that it doesn't necessarily actually override styles. (The new `scale` option, for example, only sets ASS_OVERRIDE_BIT_FONT_SIZE, but not ASS_OVERRIDE_BIT_STYLE) 3. Mention that `--sub-ass-override` is generally sort of smart about only overriding dialog, not signs.
* options: change --sub-fix-timing defaultwm42017-06-061-4/+4
| | | | | | Why? Better than wasting time by arguing with idiots. Fixes #4484.
* vo_opengl: hwdec_cuda: Support separate decode and display devicesPhilip Langdale2017-06-031-0/+10
| | | | | | | | | | | | | | | | | In a multi GPU scenario, it may be desirable to use different GPUs for decode and display responsibilities. For example, if a secondary GPU has better video decoding capabilities. In such a scenario, we need to initialise a separate context for each GPU, and use the display context in hwdec_cuda, while passing the decode context to avcodec. Once that's done, the actually hand-off between the two GPUs is transparent to us (It happens during the cuMemcpy2D operation which copies the decoded frame from a cuda buffer to the OpenGL texture). In the end, the bulk of the work is around introducing a new configuration option to specify the decode device.
* af, vf: improvements to libavfilter bridgewm42017-05-312-3/+12
| | | | | | Add the "lavfi-" prefix (details see manpage additons). Tag the filter name as "(lavfi)" in the verbose filter list output.
* man/options: further document --chapters-file accepted filesRicardo Constantino2017-05-221-0/+4
|
* demux_raw: drop "mp-rawvideo" usewm42017-05-201-0/+1
| | | | | | This is an old pseudo codec to pass through the pixel format. Setup a suitable AVCodecParameter directly instead, so the "rawvideo" codec can be used.
* manpage: document tricky issue with IPC observe_property commandwm42017-05-161-0/+8
| | | | Seems like people get confused by this.
* manpage: better description for --external-filewm42017-05-161-3/+8
|
* man: document fonts.conf, subfont.ttf, and fonts subdirZhuoyun Wei2017-05-021-0/+17
| | | | | | | | | | | | | | | | | | | Update man page for fonts.conf and subfont.ttf. These are two undocumented features in mpv. They were only hardcoded into sub/ass_mp.c and could not be found anywhere else in the entire codebase. Git log reveals that fonts.conf was added in 2013 while subfont.ttf was brought in by a ancient patch of mplayer in 2002... These are two quite useful undocumented features when you do not want to mess up with global fonts.conf to include more fonts. Also document ~/.config/mpv/fonts/ directory and suggest using fonts.conf to include additional fonts. mpv reads all files in ~/.config/mpv/fonts/ directory into memory. If there are a lot of fonts in that directory, mpv would use a lot of memory. Using ~/.config/mpv/fonts.conf to include additional fonts is more memory-efficent.
* audio: merge --replaygain-track and --replaygain-album into one optionwm42017-04-271-6/+3
| | | | | This is probably better than separate options. For example, the user does not have to guess which one is applied if both options are enabled.
* audio: move replaygain control to top-level optionswm42017-04-263-0/+25
| | | | | | | | | | | | | | | | | | | | | af_volume is deprecated, and so are its replaygain sub-options. To make it possible to use replaygain without deprecated options (and of course to make it available at all after af_volume is dropped), reintroduce them as top-level options. This also means that they are easily changeable at runtime by using them as properties. Change the "volume" property to use the new update mechanism as well. We don't actually bother sharing the implementation between new and deprecated mechanisms, as the deprecated one will simply be deleted. For the from_dB() functions, we mention anders' copyright, although I'm not sure if a mere formula is copyrightable. This will have to be determined later. This whole change is mostly untested. Our distributed human CI will take care of it.
* DOCS/interface-changes.rst: fix typowm42017-04-261-1/+1
| | | | Pointed out by someone.
* wscript_build: install shared libmpv to BINDIR for Win32Ricardo Constantino2017-04-241-3/+0
|
* options: remove remaining deprecated audio device selection optionswm42017-04-232-50/+6
|
* Release 0.25.0v0.25.0Martin Herkt2017-04-231-7/+10
| | | | Also update release policy documentation and version extraction.
* client API: add MPV_ENABLE_DEPRECATED symbolwm42017-04-201-0/+3
| | | | | (Of course this is on by default, because otherwise we'd randomly break downstream applications.)
* options: change --audio-file-auto default to not to load any fileswm42017-04-201-0/+3
| | | | | There have been user complaints, and I'm annoyed by this behavior myself.
* osc: add user_opts.boxmaxchars for box layout title limitAvi Halachmi (:avih)2017-04-191-0/+8
| | | | | The default of 80 is conservative to allow relatively wide fonts, but with many common fonts a bigger number can be used without overflow.
* man/osc: document volume and fullscreen buttonsRicardo Constantino2017-04-191-6/+17
|
* manpage: replace gendered pronounsNicolas F2017-04-191-2/+2
|
* demux: estimate total packet size, deprecate packet number limitswm42017-04-142-6/+13
| | | | | | | It's all explained in the DOCS changes. Although this option was always kind of obscure and pointless. Until it is removed, the only reason for setting it would be to raise the static default limit, so change its default to INT_MAX so that it does nothing by default.
* player: add --keep-open-pause=no optionDan Oscarsson2017-04-142-0/+9
| | | | | | | | | | | Instead of pausing if --keep-open is active, stop at end but continue playing if seeking backwards. And then stop again when end is reached. Signed-off-by: wm4 <wm4@nowhere> Over the PR, the option was renamed, and the manpage additions were slightly changed/enhanced.
* command, manpage: some leftover mentions of renamed --loop optionwm42017-04-111-4/+4
|
* manpage: group --loop options togetherwm42017-04-101-16/+16
|
* options: deprecate --loopwm42017-04-102-2/+9
| | | | | | | | | | Also "announce" the plans to undeprecate it with changed semantics later. The deprecation period is needed to warn script authors and client API users (etc.) of the change. This is done because everyone seems to expect --loop to loop the current file, not the playlist. Even in cases when only 1 file is on the playlist, the --loop-file semantics seem to be preferred.
* vo_opengl: add option for caching shaders on diskwm42017-04-081-0/+12
| | | | | | | | | | | | | Mostly because of ANGLE (sadly). The implementation became unpleasantly big, but at least it's relatively self-contained. I'm not sure to what degree shaders from different drivers are compatible as in whether a driver would randomly misbehave if it's fed a binary created by another driver. The useless binayFormat parameter won't help it, as they can probably easily clash. As usual, OpenGL is pretty shit here.
* DOCS/interface-changes.rst: document --vf/--af deprecationswm42017-04-041-0/+10
| | | | | And also future directions. Basically, it tells the user that he can't hope for perfect forward-compatibility.
* video: support positional arguments for automatic lavfi option bridgewm42017-04-031-5/+5
| | | | | | Now e.g. --vf=pad=1000:1000 works. All in all pretty ugly and hacky. Just look away.
* video: add automatic libavfilter bridge to option parsingwm42017-04-021-0/+7
| | | | | | | | | | Now you can for example do "--vf=hue=h=60" - there is no "hue" filter in mpv, so libavfilter's will be used. This has certain caveats (see manpage). The point of this is providing a relatively smooth transition path to removing our own filter stuff.
* video: deprecate almost all video filterswm42017-04-021-0/+4
| | | | | | | | | | | | | The plan is to nuke the custom filter chain completely. It's not clear what will happen to the still needed builtin filters (mostly hardware deinterlacing and vf_vapoursynth). Most likely we'll replace them with different filter chain concept (whose main purpose will be providing builtin things and bridging to libavfilter). The undocumented "warn" options are there to disable deprecation warnings when the player inserts filter automatically. The same will be done to audio filters, at a later point.
* manpage, client API: add some clarifications when commands use OSDwm42017-04-011-3/+7
| | | | | The APIs that run commands in a more API-like manner disable OSD and string expansion by default.
* manpage: finish cut off sentencewm42017-04-011-1/+2
|
* player: make screenshot commands honor the async flagwm42017-04-011-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | And also change input.conf to make all screenshots async. (Except the every-frame mode, which always uses synchronous mode and ignores the flag.) By default, the "screenshot" command is still asynchronous, because scripts etc. might depend on this behavior. This is only partially async. The code for determining the filename is still always run synchronously. Only encoding the screenshot and writing it to disk is asynchronous. We explicitly document the exact behavior as undefined, so it can be changed any time. Some of this is a bit messy, because I wanted to avoid duplicating the message display code between sync and async mode. In async mode, this is called from a worker thread, which is not safe because showing a message accesses the thread-unsafe OSD code. So the core has to be locked during this, which implies accessing the core and all that. So the code has weird locking calls, and we need to do core destruction in a more "controlled" manner (thus the outstanding_async field). (What I'd really want would be the OSD simply showing log messages instead.) This is pretty untested, so expect bugs. Fixes #4250.
* input: add "async" flagwm42017-04-011-0/+6
| | | | | | | | | | | Obviously, this has no effect on commands which do not support this explicitly. A later commit will enable this for screenshots. Also add some wording on mpv_command_async(), which has nothing to do with this. Having a more elegant, unified behavior would be nice. But the API function was not created for this - it's merely for running commands _synchronously_ on the core, but without blocking the client API caller (if the API user consistently uses only async functions).
* external_files: enable autoloading with URLsRicardo Constantino2017-04-011-0/+2
| | | | Closes #3264
* osc: escape ASS and strip newlines on titleRicardo Constantino2017-03-271-0/+1
|
* osc: make title configurable and use property expansion on itRicardo Constantino2017-03-271-1/+7
|
* Revert "osc: make the title toggleable between media-title and filename"Ricardo Constantino2017-03-271-8/+2
| | | | This reverts commit 6573b73462e336da0daca845ba4df02782afc2b6.
* osx: fix key input in certain circumstancesAkemi2017-03-262-5/+1
| | | | | | | | | | | | | for a reason i can just assume some key events can vanish from the event chain and mpv seems unresponsive. after quite some testing i could confirm that the events are present at the first entry point of the event chain, the sendEvent method of the Application, and that they vanish at a point afterwards. now we use that entry point to grab keyDown and keyUp events. we also stop propagating those key events to prevent the no key input' error sound. if we ever need the key events somewhere down the event chain we need to start propagating them again. though this is not necessary currently.
* command: add expand-text command to property-expand a stringAvi Halachmi (:avih)2017-03-261-0/+5
|
* osc: make the title toggleable between media-title and filenameRicardo Constantino2017-03-261-2/+8
| | | | Close #4221
* command: change and simplify filter toggle syntaxwm42017-03-262-3/+8
| | | | | | | | | | | "@name:!" becomes simply "@name". This is actually slightly more complex to parse, but makes for a much simpler syntax and will be less weird to the user. Suggested by haasn. The old syntax is now rejected with an error. Also add some more explicit error checks, instead of e.g. allowing empty filter names and erroring only when it's not found.
* vo_opengl: angle: add --angle-flip to set the present modelJames Ross-Gowan2017-03-261-2/+15
| | | | | | | | DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL might be buggy on some hardware. Additionaly DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL might be supported on some Windows 7 systems with the platform update, but it might have poor performance. In these cases, the user might want to disable the use of DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL swap chains with --angle-flip=no.
* m_option: consistent af/vf filter entry "enabled" flag default valuewm42017-03-251-0/+1
| | | | | | | It should default to true, but setting the filter list via mpv_node (relevant for client API and Lua scripting) left it to false. Also "document" the flag.
* command: add better runtime filter toggling methodwm42017-03-253-24/+48
| | | | | | | | | | Basically, see the example in input.rst. This is better than the "old" vf-toggle method, because it doesn't require the user to duplicate the filter string in mpv.conf and input.conf. Some aspects of this changes are untested, so enjoy your alpha testing.
* manpage: minor addition for --video-syncwm42017-03-251-0/+4
| | | | Nobody needs to read all the text below it, really.
* sub: add SDH subtitle filterDan Oscarsson2017-03-252-0/+19
| | | | | | | | | | Add subtitle filter to remove additions for deaf or hard-of-hearing (SDH). This is for English, but may in part work for others too. This is an ASS filter and the intention is that it can always be enabled as it by default do not remove parts that may be normal text. Harder filtering can be enabled with an additional option. Signed-off-by: wm4 <wm4@nowhere>
* command: add demux-start-time propertyMatthias Hunstock2017-03-251-0/+3
| | | | Add a demux_start_time property, update docs.
* vo_opengl: replace uniform variable image_size with input_sizeigv2017-03-252-2/+4
| | | | | | input_size can be the size of a cropped image Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: add tex_offset uniform variable to user shadersigv2017-03-251-0/+2
|
* vo_opengl: make size of a cropped source image available to user shadersigv2017-03-251-3/+5
|
* af_drc: removeJan Janssen2017-03-253-24/+2
| | | | | | | | | | | | | | | | Remove low quality drc filter. Anyone whishing to have dynamic range compression should use the much more powerful acompressor ffmpeg filter: mpv --af=lavfi=[acompressor] INPUT Or with parameters: mpv --af=lavfi=[acompressor=threshold=-25dB:ratio=3:makeup=8dB] INPUT Refer to https://ffmpeg.org/ffmpeg-filters.html#acompressor for a full list of supported parameters. Signed-off-by: wm4 <wm4@nowhere>
* manpage: add empty line between protocol header/descriptionwm42017-03-251-0/+19
| | | | Appears to give better formatting. (I'll never understand rst...)
* manpage: explain more about outstanding dvdnav bugsFrederick Eaton2017-03-251-5/+11
|
* command: add a property to signal whether networking is usedwm42017-03-241-0/+8
| | | | | | Requested. The property semantics are a bit muddy due to lack of effort. Anticipated use is different display of cache status, so it should not matter anyway.
* manpage: fix a typowm42017-03-201-1/+1
|
* vo_opengl: add a --opengl-es=force2 optionwm42017-03-201-0/+2
| | | | | | | Useful for testing. Unfortunately, the nVidia EGL driver ignores this, and returns a GLES 3.2 context anyway (which it is allowed to do). Might still be useable with ANGLE, which will really give you a GLES 2 context if you ask for it.
* vo_opengl: add experimental vdpauglx backendwm42017-03-181-0/+5
| | | | | | | | | | | | | | | | As the manpage says, this has no value other than adding bugs. It uses code based on context_x11.c, and basically does very stripped down context creation (no alpha support etc.). It uses vdpau for display, and maps vdpau output surfaces as FBOs to render into them. This might be good to experiment with asynchronous presentation. For now, it presents synchronously, with a 4 frame delay (which should whack off A/V sync). The forced 4 frame delay is probably also why interaction feels slower. There are some weird vdpau errors on resizing and uninit. No idea what causes them.
* screenshot: change details of --screenshot-format handlingwm42017-03-182-1/+2
| | | | | | | | | | | | | | | | This is just a pointless refactor with the only goal of making image_writer_opts.format a number. The pointless part of it is that instead of using some sort of arbitrary ID (in place of a file extension string), we use a AV_CODEC_ID_. There was also some idea of falling back to the libavcodec MJPEG encoder if mpv was not linked against libjpeg, but this fails. libavcodec insist on having AV_PIX_FMT_YUVJ420P, which we pretend does not exist, and which we always map to AV_PIX_FMT_YUV420P (without the J indicating full range), so encoder init fails. This is pretty dumb, but whatever. The not-caring factor is raised by the fact that we don't know that we should convert to full range, because encoders have no proper way to signal this. (Be reminded that AV_PIX_FMT_YUVJ420P is deprecated.)
* image_writer: remove useless formatswm42017-03-183-12/+2
| | | | Nobody cares about those.
* manpage: slightly improve screenshot-raw descriptionwm42017-03-181-3/+4
|
* manpage: minor clarification to screenshot command argument handlingwm42017-03-151-2/+6
|
* manpage: adjust description of libva deinterlacer ref direction messwm42017-03-071-5/+7
| | | | | | | | | | Relevant: https://cgit.freedesktop.org/mesa/mesa/commit/?id=0798fddb5000f2b1edffc693ec65236a680ce61f Eventually I'll just remove this option. But it's probably good to leave it for while, possibly for letting Mesa VA driver users test and confirm this.
* hw_videotoolbox: allow using native decoder output formatwm42017-03-021-0/+2
| | | | | | | Depends on FFmpeg commit ade7c1a2326e2bb9b. It has yet to show whether it actually does what it should. Probably doesn't.
* vf_vavpp: add advanced deint bug compatibility for Intel vaapi driverswm42017-02-281-0/+7
| | | | | | | | | | | | | | | I'm not sure what's going on here, but it appears kodi switches forward and backwards references for advanced VPP deinterlacing modes. This in turn makes deinterlacing with these modes apparently work. If you don't switch the directions, you get a stuttering mess. As far as the libva trace dump is concerned, this makes mpv's libva deinterlacing API use behave like kodi's, and appears to reproduce smooth video with advanced libva deinterlacing enabled. I'm hearing that Mesa actually does it correctly, and I'm not sure what will happen there. For now, passing "reversal-bug=no" as sub-option to the vavpp filter will undo this behavior.
* cocoa: add option to force dedicated GPUAkemi2017-02-271-0/+6
| | | | Fixes #3242
* demux_lavf: skip avformat_find_stream_info() for some formatswm42017-02-231-0/+9
| | | | | | | | Includes hls, mp4, mkv by default. This also avoids stupid things like decoding at least 1 video frame per stream in the demuxer. This also add --demuxer-lavf-probe-info to give finer control over what happens.
* vo_opengl: remove dxva2 dummy hwdec backendwm42017-02-201-0/+3
| | | | | | | | | This was a hack to let libmpv API users pass a d3d device to mpv. It's not needed anymore for 2 reasons: 1. ANGLE does not have this problem 2. Even native GL via nVidia (where this failed) seems to not require this anymore
* manpage: discourage vo_vaapi furtherwm42017-02-171-3/+2
| | | | | I don't know what's this comment about hardware decoding. Possibly it was written before vo_opengl had vaapi decoding support.
* vo_opengl: implement videotoolbox hwdec on iOSAman Gupta2017-02-171-2/+3
| | | | | | Implements --hwdec=videotoolbox on iOS. Similar to hwdec_osx.c, but using CVPixelBuffer APIs available on iOS instead of the equivalent IOSurface APIs in macOS.
* vo_opengl: hwdec_osx: use new format setup functionwm42017-02-171-2/+2
| | | | | | | | | | | | | | | | We can drop the custom table. For some reason, the interop does not accept GL_RGB_RAW_422_APPLE as internal format for GL_RGB_422_APPLE, so switch the format table to use GL_RGB (this way both interop and real textures work the same). Another victim of the apparent requirement of exactly matching texture formats is kCVPixelFormatType_32BGRA. vo_opengl wants to handle this as normal RGBA texture, with a swizzle applied in the shader. CGLTexImageIOSurface2D() rejects this, because it wants the exact internal format. Just drop the format, because it's useless anyway. (Maybe this is a bit too fragile...)
* manpage: remove stale --volume-restore-data entrywm42017-02-171-12/+0
| | | | The option was removed a while ago.
* DOCS/waf-buildsystem.rst: fix typoPedro Pombeiro2017-02-151-1/+1
| | | | Signed-off-by: wm4 <wm4@nowhere>
* cocoa: add --ontop-level option for modifying ontop window levelAkemi2017-02-131-0/+8
| | | | | | | | | | since there are different views on what ontop is, we make the ontop window level modifiable. at the moment only support for macOS was added. the default for macOS was changed from 'system' to 'window' since this fixes an unwanted behaviour in fullscreen and in general causes less issues with expected behaviour. Fixes #2376 #3974
* DOCS/contribute.md: adjust coding style for if/else bracingwm42017-02-111-6/+4
|
* DOCS/mplayer-changes.rst: fix syntaxwm42017-02-101-1/+4
| | | | | | | The missing newline made the github rst renderer (which is a POS) hide the entire section. Also, add some more warning text.
* manpage: fix incorrect option name for --record-filewm42017-02-082-2/+2
| | | | | | Also the one in interface-changes.rst. Fixes #4121.
* player: add experimental stream recording featurewm42017-02-072-0/+24
| | | | | This is basically a WIP, but it can't remain in a branch forever. A warning is print when using it as it's still a bit "shaky".
* vo_opengl: angle: rewrite with custom swap chainJames Ross-Gowan2017-02-071-7/+61
| | | | | | | | | | | | | This replaces the old backend that exclusively used EGL windowing with one that can also use ANGLE's ability to render to directly to a texture. The advantage of this is that it allows mpv to create the swap chain itself and this allows mpv to use a flip-mode swap chain on a HWND (which avoids problems with DirectComposition) and to use a longer swap chain that has six backbuffers by default (which reportedly fixes problems with rendering 24fps video on 24Hz monitors.) Also, "screenshot window" should now work on DXGI 1.2 and up (Windows 8 and up.)
* manpage: Reorganise discussion of cuda hwdec to be less confusingPhilip Langdale2017-02-061-12/+8
| | | | | The existing discussion has managed to convince people they should use cuda-copy instead of cuda, which just isn't right.
* DOCS/edl-mpv.rst: fix typowm42017-02-051-1/+1
|
* ytdl_hook, edl: implement pseudo-DASH supportwm42017-02-041-3/+40
| | | | | | | | | We use the metadata provided by youtube-dl to sort-of implement fragmented DASH streaming. This is all a bit hacky, but hopefully a makeshift solution until libavformat has proper mechanisms. (Although in danger of being one of those temporary hacks that become permanent.)
* manpage: state that hwdec d3d11va requires Windows 8+S2F0amEgS2xvdmVy2017-02-031-2/+2
| | | As the manual entry for --hwdec states that d3d11va and d3d11va-copy require Windows, it can be assumed that it also works for Windows 7. Since it doesn't, according to https://github.com/mpv-player/mpv/issues/3285#issuecomment-228593539, and personal testing, updating the manual accordingly and making the hwdec OS requirements for ANGLE in line with videotoolbox, where OS version is stated.
* player: different way to auto-enable the demuxer cachewm42017-02-021-0/+2
| | | | | | | | | | | | | | | Instead of enabling it only when a stream-cache is enabled, also try to enable it independently from that if the demuxer is marked as is_network. Also add some code to the EDL code, so EDLs containing network streams are automatically cached this way. Extend the OSD info line so that it shows the demuxer cache in this case (more or less). I didn't find where or whether options.rst describes how the demuxer cache is enabled, so no changes there.
* sub: add justify of subtitlesDan Oscarsson2017-02-012-0/+14
| | | | | | | | To make it easier for the eyes, multi line subtitles should be left justified (for most languages). This adds an option to define how subtitles are to be justified inpendently of how they are aligned. Also add option to enable --sub-justify to be applied on ASS subtitles.
* win32: snap to screen edgespavelxdd2017-01-271-0/+3
| | | | | | | Disabled by default. The snap sensitivity value depends on the screen DPI. The default value is 16px on a 96 DPI screen. Fixes #2248
* stream_lavf: add support for data URIsRicardo Constantino2017-01-251-0/+4
| | | | | | | Only FFmpeg supports them and they need to be in the format data:// like other protocols or prefixed with ffmpeg:// or lavf://. Closes #4058
* manpage: add "A/V sync" to make it findable with Ctrl+foctos2017-01-251-1/+1
|
* sub: add option to force using video resolution for image subtitleswm42017-01-231-0/+7
| | | | Basically for debugging and dealing with broken files.
* player: remove --stream-capture option/propertywm42017-01-213-19/+5
| | | | | | | | | | | | | | | This was excessively useless, and I want my time back that was needed to explain users why they don't want to use it. It captured the byte stream only, and even for types of streams it was designed for (like transport streams), it was rather questionable. As part of the removal, un-inline demux_run_on_thread() (which has only 1 call-site now), and sort of reimplement --stream-dump to write the data directly instead of using the removed capture code. (--stream-dump is also very useless, and I struggled coming up with an explanation for it in the manpage.)
* command: rename framedrop propertieswm42017-01-202-2/+10
| | | | | | | | | | "drop-frame-count" -> "decoder-frame-drop-count" "vo-drop-frame-count" -> "frame-drop-count" This gets rid of the backwards "drop-frame" part in the name. Maybe calling the new property "frame-drops" would be better, but there are already a bunch of similar properties that end in "-count".
* x11: pseudo HiDPI scalingwm42017-01-191-1/+1
| | | | | | | | | | | | | | | | Scale the window by the assumed DPI scaling factor, using 96 DPI as base. For example, a screen that reports 192 DPI is assumed to have a DPI scale factor 2. The window will then be created with twice the size. For robustness reasons, we accept only integer DPI scales between 1 and 9. We also error out if the X and Y scales are very different, as this most likely indicates a multiscreen system with botched size reporting. I'm not sure if reading the X server's DPI is such a good idea - maybe the Xrdb "Xft.dpi" value should be used instead. The current method follows what xdpyinfo does. This can be disabled with --hidpi-window-scale=no.
* options: drop deprecated --sub-codepage syntaxwm42017-01-192-2/+4
|
* options: drop deprecated --vd/--ad codecs selection featureswm42017-01-192-12/+3
| | | | | Only simple selection works now. Using "-" to terminate codec selection remains in the code (might get undeprecated).
* player: add prefetching of the next playlist entrywm42017-01-181-0/+21
| | | | | | | | | | | | Since for mpv CLI, the player state is a singleton, full prefetching is a bit tricky. We do it only on the demuxer layer. The implementation reuses the old "open thread". This means there is significant potential for regressions even if the new option is not used. This is made worse by the fact that I barely tested this code. The generic mpctx_run_reentrant() wrapper is also removed - this was its only user, and its remains become part of the new implementation.
* vo_opengl, vo_opengl_cb: better hwdec interop backend selectionwm42017-01-173-4/+26
| | | | | | | | | | | Introduce the --opengl-hwdec-interop option, which replaces --hwdec-preload. The new option allows explicit selection of the interop backend. This is relatively complex, and I would have preferred not to add this, but it's probably useful to debug certain problems. In exchange, the "new" option documents that pretty much any but the simplest use of it will not be forward compatible.
* manpage: add comment about --alpha being broken on X11/EGL/Mesawm42017-01-161-0/+1
|
* lua: allow unregistration of idle handlersOlivier Perret2017-01-151-0/+5
|
* manpage: define stricter rules for C plugin return valueswm42017-01-141-2/+5
| | | | Just in case.
* manpage: fix a typowm42017-01-131-1/+1
|
* player: add experimental C plugin interfacewm42017-01-121-0/+56
| | | | | | | | | | | | | | | | | This basically reuses the scripting infrastructure. Note that this needs to be explicitly enabled at compilation. For one, enabling export for certain symbols from an executable seems to be quite toolchain-specific. It might not work outside of Linux and cause random problems within Linux. If C plugins actually become commonly used and this approach is starting to turn out as a problem, we can build mpv CLI as a wrapper for libmpv, which would remove the requirement that plugins pick up host symbols. I'm being lazy, so implementation/documentation are parked in existing files, even if that stuff doesn't necessarily belong there. Sue me, or better send patches.
* manpage: document x11probe OpenGL backendwm42017-01-061-0/+3
| | | | Fixes #3994.
* options: deprecate some other complex --ad/--vd featureswm42016-12-232-2/+4
| | | | | | | Who even needs those? Once these deprecations are gone, --ad/--vd are simple lists without any kind of complex matching.
* options: explicitly deprecate --ad-spdif-dtshdwm42016-12-231-0/+2
| | | | Has been less formally deprecated for a longer time.
* options: deprecate codec family selection in --vd/--adwm42016-12-232-8/+12
| | | | | Useless now, so get rid of it. Also affects some user-visible display things (like reported codec in use).
* audio: change how spdif codecs are selectedwm42016-12-232-4/+5
| | | | | | | | | | | | | | Remove ad_spdif from the normal codec list, and select it explicitly. One goal was to decouple this from the normal codec selection, so they're less entangled and the decoder selection code can be simplified in the far future. This means spdif codec selection is now done explicitly via select_spdif_codec(). We can also remove the weird requirements on "dts" and "dts-hd" for the --audio-spdif option, and it can just do the right thing. Now both video and audio codecs consist of a single codec family each, vd_lavc and ad_lavc.
* Fix mistakes in spelling and grammarDario Russo2016-12-211-1/+1
|
* options: change --h=... behaviorwm42016-12-161-3/+4
| | | | | Does not match a shell pattern anymore. Instead, a simple sub-string search is done.
* cocoa: fullscreen refactoringAkemi2016-12-152-4/+1
| | | | | | | | | | this replaces the old fullscreen with the native macOS fullscreen. additional the --fs-black-out-screens was removed since the new API doesn't support it in a way the old one did. it can possibly be re-added if done manually. Fixes #2857 #3272 #1352 #2062 #3864
* manpage: add table of contents to the HTML versionZhiming Wang2016-12-141-0/+2
| | | | | | | | The reST contents directive is added to mpv.rst. In wscript_build.py, the --strip-elements-with-class=contents option is needed for the rst2man call in order to prevent the TOC from appearing in mpv.1.
* manpage: document current and legacy option syntax betterwm42016-12-121-0/+28
| | | | | | | I thought it ewas already documented, but I'm not seeing it anywhere. Maybe it did exist, but was deleted. See #3899.
* manpage: clarify --loop optionwm42016-12-121-2/+2
| | | | Fixes #3899.
* charset_conv: simplify and change --sub-codepage optionwm42016-12-092-52/+23
| | | | | | | As documented in interface-changes.rst. This makes it much easier to follow what the heck is going on. Whether this is adequate for real-world use is unknown.
* manpage: replace `-vo` with `--vo`Douglas Christman2016-12-081-2/+2
|
* manpage: remove mention of window alpha (OSX)Akemi2016-12-081-4/+1
| | | | | | | This is not implemented and i don't even know if it ever was. Also remove a trailing whitespace. Fixes #3866
* manpage: move the --opengl-dumb-mode option downwm42016-12-071-14/+14
| | | | | | | It's horribly obscure - why would it be the first option to be listed? Also might fix the --scale option formatting/anchor in the HTML rendering.
* demux, stream: add option to prevent opening referenced fileswm42016-12-041-0/+20
| | | | Quite irresponsibly hacked together. Sue me.
* options: remove deprecated sub-option handling for --vo and --aowm42016-11-253-10/+4
| | | | | | | | Long planned. Leads to some sanity. There still are some rather gross things. Especially g_groups is ugly, and a hack that can hopefully be removed. (There is a plan for it, but whether it's implemented depends on how much energy is left.)
* DOCS/compile-windows: be more specific about the D3D compiler DLLMartin Herkt2016-11-231-7/+6
| | | | Also provide a more useful link to _43 and _47.
* vo_opengl: hwdec_cuda: Support P016 output surfacesPhilip Langdale2016-11-221-2/+2
| | | | | | | | | The latest 375.xx nvidia drivers add support for P016 output surfaces. In combination with an ffmpeg change to return those surfaces, we can display them. The bulk of the work is related to knowing which format you're dealing with at the right time. Once you know, it's straight forward.
* options: remove legacy global sub-option syntaxwm42016-11-221-0/+2
| | | | | | A bit of sanity, although a very small one. --vo sub-options are not affected by this yet.
* command: redefine some deprecated propertieswm42016-11-222-4/+12
| | | | | | | | | | | | | | As threatened by the API changes document. We can actually keep the deprecated --playlist-pos and --cache options, since they are aliases and not used by the corresponding properties. They are inconsistent, but do no harm. Keep them for now for the sake of the command line user. mpv_identify.sh partially stopped working, because it was never updated. The shell magic can't deal with property names that contain "/", so we can't replace "samplerate" with "audio-params/samplerate" - just remove these properties. (How about you use ffprobe?)
* vf_vdpaurb: remove this filterwm42016-11-222-9/+2
| | | | Was deprecated, superseded by --hwdec=vdpau-copy.
* client API: turn mpv_suspend() and mpv_resume() into stubswm42016-11-223-34/+10
| | | | | | | | | | | As threatened by the API changes document. This commit also removes or stubs equivalent calls in IPC and Lua scripting. The stubs are left to maintain ABI compatibility. The semantics of the API functions have been close enough to doing nothing that this probably won't even break existing API users. Probably.
* Fix some future release version numberswm42016-11-213-8/+8
| | | | | | Since the recent release was named 0.22.0 instead of 0.21.1, bump all mentions of 0.22.0 to 0.23.0. These were planned removals of deprecated versions, which obviously didn't happen in 0.22.0.
* DOCS: update interface changesMartin Herkt2016-11-202-3/+10
|
* options: clarify --softvol deprecation message and manpage entrywm42016-11-191-3/+3
| | | | | People seem to think that the softvol behavior is deprecated, but what is deprecated is actually disabling softvol.
* wscript: move install dirs setting to after C compiler checkRicardo Constantino2016-11-161-5/+2
| | | | | | | | This fixes waf setting the wrong LIBDIR for DEST_OS=win32 in waflib/Tools/c_config.py:get_cc_version() Any scripts assuming the implib and pkgconfig are in the wrong place should be changed to move the .dll instead.
* DOCS/client-api-changes.rst: fix typowm42016-11-151-2/+2
|
* DOCS/interface-changes.rst: reword a linewm42016-11-151-2/+2
| | | | | Try to make it sound a bit less weird. Probably still sounds weird, so feel free to propose further changes.
* audio: avoid returning audio-device-list entries without descriptionwm42016-11-142-2/+5
| | | | | | Use the device name as fallback. This is ugly, but still better than skipping the description entirely. This can be an issue on ALSA, where the API can return entries without proper description.
* vo_opengl: blend against background color for --alpha=blendPhilip Sequeira2016-11-131-1/+2
| | | | | Do it after color management, etc. so that it matches the color drawn in the margins.
* docs: remove trailing spacesStefano Pigozzi2016-11-111-2/+2
| | | Some slipped in with previous commit.
* cocoa: option to scale window by HiDPI scale factorAkemi2016-11-111-0/+7
| | | | | | | | | | Deactivating this options makes it possible to circumvent the default OS X behavior of using points. Windows on HiDPI resolutions won't open in double the size anymore and videos are display in their native resolution when windowed. Fixes #3716
* osc: add seekbarstyle=knobRicardo Constantino2016-11-091-1/+2
| | | | | | | | Most code from @leiserfg in #2365. Closes #2365 Cut guides to the center of the knob. This makes the knob knob look more like IRL knob sliders.
* manpage: rename drm-egl to drm.Emmanuel Gil Peyrot2016-11-071-1/+1
|
* man/options.rst: fix typoDouglas Christman2016-11-061-1/+1
|
* manpage: explicitly document all scaling optionsNiklas Haas2016-11-011-82/+77
| | | | | | | | | | Enumerate all of the scaling-related options, even for the ``--cscale`` / ``--tscale`` etc. variants. Unfortunately this breaks 80col quite severely, but there's nothing I can do about it due to a bug in rst2man preventing definition list labels from spanning multiple lines. Also reorder some of the scaling-related options to be closer together and in a more consistent order (for a top-to-bottom reading flow).
* filter_kernels: add ability to taper kernels/windowsNiklas Haas2016-11-011-6/+13
| | | | | | | This allows us to define the tukey window (and other tapered windows). Also add a missing option definition for `wblur` while we're at it, to make testing out window-related stuff easier.
* man/osc: remove extra indentation from 3adc6071Ricardo Constantino2016-10-301-10/+10
|
* osc: top/bottombar: rescale layout to same size with scale=1Ricardo Constantino2016-10-291-3/+3
| | | | | Basically, there's two less values to revert to previous defaults and top/bottombar now look at scale=1 like they looked with scale=1.5.
* man/osc: Fix hard wrapping in man filesRicardo Constantino2016-10-291-41/+61
|
* osc: compromise on default deadzonesizeRicardo Constantino2016-10-291-1/+1
| | | | | | This way people can still use the mouse to quickly check the elapsed time without moving it all the way to the bottom while still having half the screen to ignore mouse movement.
* osc: add script message handlers for chapter/track/playlistsRicardo Constantino2016-10-241-0/+4
| | | | | | | | | | These can be used in input.conf for pretty formatting of lists as with shift+clicking the OSC buttons. Ex: z script-message osc-playlist Z script-message osc-chapterlist x script-message osc-tracklist
* vo_tct: support also 256 colors outputAvi Halachmi (:avih)2016-10-251-0/+3
|
* vo_tct: optional custom size, support non-posix with 80x25 defaultAvi Halachmi (:avih)2016-10-251-1/+5
| | | | Also, replace the UTF8 half block char at the source code with C escape.
* man/osc: reorder a few options for better visibilityRicardo Constantino2016-10-231-24/+25
| | | | Also document pre-0.21.0 defaults.
* manpage: document ytdl://wm42016-10-231-0/+9
|
* manpage: fix a renamed option namewm42016-10-211-1/+1
|
* vo_opengl: partially re-enable glFlush() callswm42016-10-211-3/+6
| | | | | | | | | | | | It turns out the glFlush() call really helps in some cases, though only in audio timing mode (where we render, then wait for a while, then display the frame). Add a --opengl-early-flush=auto mode, which does exactly that. It's unclear whether this is fine on OSX (strange things going on there), but it should be. See #3670.
* vf_vdpaurb: deprecate this filterwm42016-10-201-0/+2
|
* video: add --hwdec=vdpau-copy modewm42016-10-201-3/+4
| | | | | | | At this point, all other hwaccels provide -copy modes, and vdpau is the exception with not having one. Although there is vf_vdpaurb, it's less convenient in certain situations, and exposes some issues with the filter chain code as well.
* vo_tct: introduce modern caca alternativerr-2016-10-201-0/+15
|
* man/osc: better explain the values of deadzonesizeRicardo Constantino2016-10-171-1/+3
|
* vd_lavc: Add hwdec wrapper for crystalhdPhilip Langdale2016-10-151-0/+6
| | | | This hardware decodes to system memory so it only requires a wrapper.
* osc: add user-alterable margin for top/bottombarRicardo Constantino2016-10-151-0/+4
|
* osc: add right-click behavior to playlist and chapter buttonsRicardo Constantino2016-10-151-0/+4
|
* osc: change default layout to bottombarRicardo Constantino2016-10-151-61/+37
| | | | | | Change a few other defaults accordingly: - seekbarstyle=bar looks better with bottombar. - Bigger scalewindowed and scalefullscreen make bottom/topbar more readable.
* osc: move tooltip to inside seekbar for top/bottombarRicardo Constantino2016-10-071-0/+4
| | | | Tooltip border is user-alterable
* vo_drm: change CLI options + refactorsrr-2016-10-071-7/+7
| | | | | | | | | | - Change connector selection to accept human readable names (such as eDP-1, HDMI-A-2) rather than arbitrary numbers. - Change GPU selection to accept GPU number rather than device paths. - Merge connector and GPU selection into one --drm-connector. - Add support for --drm-connector=help. - Add support for --drm-* in EGL backend. - Refactor KMS; reduce state sharing across drm_common.
* man: fix PDF buildMartin Herkt2016-10-061-4/+0
| | | | | It really doesn’t want to pagebreak that box, so I removed a useless example.
* cocoa: add glFlush() to cocoa backendAkemi2016-10-061-1/+1
| | | | | | | | | | | | The glFlush() call was made optional recently since it's not needed in most cases. On OSX though this is needed since we removed kCGLPFADoubleBuffer from the context creation, so the glFlush() call was added to the cocoa backend only. The CGLFlushDrawable() call can be safely removed since it only does something when a double buffered context is used. Also fixes a small typo. Fixes #3627.
* vo_opengl: disable glFlush() by default, and add an option to enable itwm42016-10-051-0/+5
| | | | | | | | | | | It seems this can cause issues with certain platforms, so better to disable it by default. The original reason for this isn't overly justified, and display-sync mode should get rid of the need for it anyway. The new option is meant for testing, and will probably be removed if nobody comes up and reports that enabling the option actually improves anything.
* manpage: fix closing quotewm42016-10-041-1/+1
|
* options: rename subtitle optionsDan Oscarsson2016-10-034-108/+200
| | | | | | | | | | | Rename the text subtitle options from --sub-text- to --sub- and --ass- options to --sub-ass-. The intention is to common sub options to prefixed --sub- and special ASS option be seen as a special version of sub options. The OSD options that work like the --sub- options are still named --osd-. Man page updated including a short note about renamed --sub-text-* and --ass-* options to --sub-* and --sub-ass-*.
* DOCS/interface-changes.rst: mention seek command changewm42016-10-031-0/+3
| | | | | | This is potentially incompatible if a program used negative timestamps to deal with timestamp resets, which would potentially lead to mpv producing and using negative timestamps.
* command: allow absolute seeks relative to end of streamPhilip Sequeira2016-10-021-1/+1
| | | | | | "seek -10 absolute" will seek to 10 seconds before the end. This more or less matches the --start option and negative seeks were otherwise useless (they just clipped to 0).
* vo_opengl: add debugging options for testing with padded textureswm42016-10-011-1/+7
|
* rpi: add --hwdec=rpi-copywm42016-09-301-0/+4
| | | | | | This means it can be used with normal video filters. Might help out with #3604.
* w32_common: implement VOCTRL_GET_DISPLAY_NAMESJames Ross-Gowan2016-09-291-3/+6
| | | | | | | | This should make display-names usable on Windows. It returns a list of GDI monitor names like "\\.\DISPLAY1". Since it may be useful to get the monitor that Windows considers associated with the window (with MonitorFromWindow,) this will always be returned as the first argument. This monitor is the one used for display-fps and icc-profile-auto.
* vo_opengl: deprecate 'drm-egl' backend and introduce 'drm' insteadwm42016-09-271-2/+2
| | | | Just a name change. Requested.
* player: allow opts in pseudo-gui set by the user to override user's defaultRicardo Constantino2016-09-261-6/+10
| | | | | | | | | | | | | | | | | | | | | This should still allow user-set default options to override built-in pseudo-gui while respecting user-set pseudo-gui options. Pros: - user option in default profile overrides built-in pseudo-gui's options Ex: screenshot-directory overrides built-in pseudo-gui's - user can "fix" pseudo-gui if some option like "force-window=no" is set in default by setting "force-window=yes" in [pseudo-gui] - `mpv --profile=pseudo-gui` will work as before Cons: - --show-profile=pseudo-gui won't display the built-in's options Original idea from wm4. Documentation edits mostly by wm4. Signed-off-by: wm4 <wm4@nowhere>
* qthelper: introduce new convenience functionswm42016-09-261-0/+3
| | | | (Why the heck is the C++ helper not in a separate repository?)
* DOCS/compile-windows.md: update msys2 instructions againKevin Mitchell2016-09-251-3/+3
| | | | they keep changing things. . .
* manpage: hwdec_cuda: update docs to say 10bit hevc is supportedPhilip Langdale2016-09-241-2/+2
| | | | | Now that ffmpeg bundles working headers, this no longer relies on a custom ffmpeg build with a hacked up header file.
* player: do not let pseudo-gui override user config settingswm42016-09-232-7/+17
| | | | | | | | Seems like this confused users quite often. Instead of --profile=pseudo-gui, --player-operation-mode=pseudo-gui now has to be used to invoke pseudo GUI mode. The old way still works, and still behaves in the old way.
* command: add a load-script commandwm42016-09-221-0/+3
| | | | | | | The intention is to give libmpv users as much flexibility to load scripts as using mpv from CLI, but without restricting libmpv users from having to decide everything on creation time, or having to go through hacks like recreating the libmpv context to update state.
* hwdec/cuda: Document how to activate cuda deinterlacingPhilip Langdale2016-09-221-8/+11
| | | | | | The latest changes to the decoder in ffmpeg enable frame doubled deinterlacing so that it's actually useful. Let's document how to use it.
* player: add --watch-later-directory optionDavid Logie2016-09-221-0/+7
| | | | | | | This option allows the user to set the directory where "watch later" files are stored. Signed-off-by: wm4 <wm4@nowhere>
* client API: more or less deprecate mpv_set_option()wm42016-09-212-1/+10
| | | | | | | | | | | | | | | | | | | | | | With the merging of options and properties, the mpv_set_option() function is close to being useless, and mpv_set_property() can be used for everything instead. There are certain conflicts remaining, which are explained in depth in the docs. For now, none of this should affect existing code using the client API. Make mpv_set_property() redirect to mpv_set_option() before initialization. Remove some options marked as M_OPT_FIXED. The "pause" and "speed" options cannot be written anymore without the playloop being notified by it, so the M_OPT_FIXED does nothing. For "vo-mmcss-profile", the problem was lack of synchronization, which has been added. I'm not sure what the problem was with "frames" - I think it was only marked as M_OPT_FIXED because changing it during playback will have no effect. Except for pause/speed, these changes are needed to make them writable as properties after mpv_initialize(). Also replace all remaining uses of CONF_GLOBAL with M_OPT_FIXED.
* lua: add API for registering idle handlerswm42016-09-211-0/+7
| | | | | This is only a functionality the Lua event dispatcher provides, rather than the libmpv client API.
* manpage: lua: mention recent deprecationswm42016-09-211-4/+6
| | | | | These are listed in interface-changes.rst, but the documentation in the manpage wasn't updated.
* lua: expose subprocess_detachedrr-2016-09-211-0/+13
|
* command: add a video-dec-params propertywm42016-09-201-0/+3
| | | | | | This is the actual decoder output, with no overrides applied. (Maybe video-params shouldn't contain the overrides in the first place, but damage done.)
* man/options.rst: fix typo and layoutKranky K. Krackpot2016-09-201-6/+8
| | | | Signed-off-by: wm4 <wm4@nowhere>
* player: make --osc/--ytdl settable during playbackwm42016-09-201-0/+4
| | | | | | | | | Setting the osc or ytdl properties will now load/unload the associated scripts. (For ytdl this does not mean the currently played URL will be reloaded.) Also add a changelog entry for this, which also covers the preceding work for --terminal.
* client API: revert some relaxations about calling mpv_initialize()wm42016-09-191-2/+0
| | | | | | | | | | | | | | | | | | | | | | My original idea was making mpv_initialize() a no-op, but it seems this can't happen after all. The problem is especially with subtle interactions in option parsing (basically all pre-parse options). Instead, I might go into the opposite direction, and add a new API function that takes over the role of mpv_create+mpv_initialize, and which will take a list of options. This list will be for the purpose of setting options that can be set only at initialization time (such as config-dir). This would also make it more uniform with the command- line player initialization. Maybe. In any case, for now revert parts of commit 453fea87 to remove the initialization-related freedoms it added. Fortunately, this wasn't released yet, so we remove it from the API as if it never happened. (The rest of that commit is still fine, just not the additional freedom.)
* command: add audio-pts property to get the audio ptsHector Martin2016-09-191-0/+6
| | | | | | | For audio files, this is identical to time-pos (except read-only). For audio-video files, this returns the audio position. Unlike time-pos, this is not quantized to a video frame. For video-only files, this property is unavailable.
* af_rubberband: add af-command and option to change the pitchHector Martin2016-09-191-2/+13
| | | | | This allows both fixed and dynamic control over the audio pitch using librubberband, which was previously not exposed to the user.
* af_pan: add af-command support to change the matrixHector Martin2016-09-191-0/+7
| | | | | This allows for seamless changes in the downmixing matrix without having to reinitialize the filter chain.
* player: more option/property consistency fixeswm42016-09-182-18/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | Some properties had a different type from their equivalent options (such as mute, volume, deinterlace, edition). This wasn't really sane, as raw option values should be always within their bounds. On the other hand, these properties use a different type to reflect runtime limits (such as range of available editions), or simply to improve the "UI" (you don't want to cycle throuhg the completely useless "auto" value when cycling the "mute" property). Handle this by making them always return the option type, but also allowing them to provide a "constricted" type, which is used for UI purposes. All M_PROPERTY_GET_CONSTRICTED_TYPE changes are related to this. One consequence is that you can set the volume property to arbitrary high values just like with the --volume option, but using the "add" command it still restricts it to the --volume-max range. Also deprecate --chapter, as it is grossly incompatible to the chapter property. We pondered renaming it to --chapters, or introducing a more powerful --range option, but concluded that --start --end is actually enough. These changes appear to take care of the last gross property/option incompatibilities, although there might still be a few lurking.
* command: fix window-scale option/property inconsistencieswm42016-09-181-0/+3
| | | | | | | | | For some odd reason, value ranges for the window-scale option and property are different, and the property has a more narrow range. Change it to the option range. Also store the window-scale value into the option value when setting the property, so it will be persistent if the window is closed and reopened.
* options: rename/deprecate --playlist-poswm42016-09-183-10/+7
| | | | | | Conflicts with the "playlist-pos" property. They're really a bit too different, and since the --playlist-pos option is relatively new and obscure, just rename it to get this out of the way.
* options: actually deprecate --mute=autowm42016-09-183-3/+8
| | | | Also, make it internally actually an alias to "no".
* command: add an apply-profile commandwm42016-09-171-0/+8
| | | | | This will actually update all associated options (which is trivial now with the recent changes).
* options: take care of propertly updating options on runtime changeswm42016-09-172-0/+17
| | | | | | | | | | | | | | | | | | | | | | All option write accesses are now put through the property interface, which means runtime option value verification and runtime updates are applied. This is done even for command line arguments and config files. This has many subtle and not-so-subtle consequences. The potential for unintended and intended subtle or not-subtle behavior changes is very large. Architecturally, this is us literally jumping through hoops. It really should work the other way around, with options being able to have callbacks for value verification and applying runtime updates. But this would require rewriting the entirety of command.c. This change is more practical, and if anything will at least allow incremental changes. Some options are too incompatible for this to work - these are excluded with an explicit blacklist. This change fixes many issues caused by the mismatch between properties and options. For example, this fixes #3281.
* manpage: document some more property/options inconsistencieswm42016-09-171-0/+27
|
* DOCS: vo/ao auto profiles are deprecatedRiCON2016-09-171-2/+1
| | | Leftovers from removal of references to ao/vo auto profiles.
* client API: declare mpv_suspend/mpv_resume deprecatedwm42016-09-163-0/+11
| | | | | | | They're useless, and I have no idea what they're actually supposed to do (wrt. pending input processing changes). Also remove their implicit uses from the IPC handlers.
* options: add --hwdec=yes as alias for --hwdec=autowm42016-09-151-2/+3
| | | | | | This also lets you just do "mpv --hwdec file.mkv", with the minor caveat that the legacy syntax "--hwdec val" or "-hwdec val" (without "=") does not work as expected anymore.
* client API: remove SIGPIPE overriding codewm42016-09-151-0/+2
| | | | | | | This workaround prevented that libmpv users could accidentally crash when the SIGPIPE signal was triggered by FFmpeg's OpenSSL/GnuTLS usage. But it also modifies the global signal handler state, so remove it now that this workaround is not required anymore.
* manpage: explain "speed-adjusted" FPS for --interpolation-thresholdwm42016-09-151-2/+5
| | | | Fixes #3528.
* vo_opengl: mali fbdev supportwm42016-09-131-0/+2
| | | | | | | | | | | | Minimal support just for testing. Only the window surface creation (including size determination) is really platform specific, so this could be some generic thing with platform-specific support as some sort of sub-driver, but on the other hand I don't see much of a need for such a thing. While most of the fbdev usage is done by the EGL driver, using this fbdev ioctl is apparently the only way to get the display resolution.
* DOCS/interface-changes.rst: minor cleanupwm42016-09-131-19/+16
| | | | | | | Edit the 0.21.0 section: remove the redundant vo_opengl items, move some up. Move the additions (which are less important and which aren't documented completely anyway) below the incompatible changes/deprecations.
* manpage: vo_rpi -> vo_openglwm42016-09-131-1/+1
|
* player: Apply new sub-speed values during playbackVladimir Panteleev2016-09-131-0/+1
|
* vo_rpi: deprecate this VOwm42016-09-122-1/+13
|
* man: fix building pdfshinchiro2016-09-121-4/+6
|
* hwdec_cuda: Add trivial cuda-copy wrapperPhilip Langdale2016-09-111-4/+9
| | | | | | | | | The cuvid decoder already knows how to copy back to system memory if NV12 frames are requested, and this will happen if the decoder is used without the hwdec. For convenience, let's add a wrapper hwdec so people don't have to explicitly pick the cuvid decoder if they want this behaviour.
* options: make --h list options according to a pattern passed to itwm42016-09-101-1/+5
| | | | | | Useless feature, but I want it. Won't work on Windows due to missing fnmatch().
* man: fix typobugdone2016-09-101-1/+1
|
* stream_cdda: remove weird option parsing stuffwm42016-09-092-1/+5
| | | | | | | | | | Mostly untested. This is not compatible. It removes the URL fields for track range and cdrom speed (what did this even do). The device is not not to be prefixed with an additional "/" if it's put into the URL. I can't be bothered to keep these things compatible, just rip your damn CDs instead.
* man/options: Document cuda hwdec.Philip Langdale2016-09-091-0/+6
|
* options: drop unreferenced --bluray-angle optionwm42016-09-081-4/+0
| | | | | Uh, what? It wasn't used at all. It was probably accidentally dropped at one point, or it was never used at all. Whatever, who cares.
* manpage: remove more references to deprecated sub-option syntaxwm42016-09-074-69/+49
| | | | Fixes #3497.
* DOCS/interface-changes.rst: list exact sub-option replacementswm42016-09-061-0/+2
| | | | | Actually, only link to a wiki page doing that, because these are too many options.
* vo_vdpau: rename some sub-optionswm42016-09-061-2/+2
| | | | | Since the sub-options have been deprecated very recently, and are redirected to global options, we don't need to document this change.
* audio/out: deprecate "exclusive" sub-optionswm42016-09-053-0/+14
| | | | | | | And introduce a global option which does this. Or more precisely, this deprecates the global wasapi and coreaudio options, and adds a new one that merges their functionality. (Due to the way the sub-option deprecation mechanism works, this is simpler.)
* audio/out: deprecate device sub-optionswm42016-09-053-16/+17
| | | | | We have --audio-device, which can force the device. Also add something describing to this extent to the manpage.
* options: deprecate suboptions for the remaining AO/VOswm42016-09-053-73/+115
|
* vo_direct3d: deprecate direct3d_shaders aliaswm42016-09-052-8/+11
| | | | | And remove the difference between the aliases. This is needed to make the sub-option changes less painful.
* vo_image: move to global optionswm42016-09-051-10/+12
| | | | | This is a bit "special", because the config tree wants unique m_sub_options pointers in the whole thing.
* ao_jack: move to global optionswm42016-09-051-6/+8
|
* options: add a mechanism to make sub-option replacement slightly easierwm42016-09-051-6/+2
| | | | | | | | Instead of requiring each VO or AO to manually add members to MPOpts and the global option table, make it possible to register them automatically via vo_driver/ao_driver.global_opts members. This avoids modifying options.c/options.h every time, including having to duplicate the exact ifdeffery used to enable a driver.
* sd_lavc: enable teletextwm42016-09-031-0/+4
| | | | | | | | | | | | Whitelisting supported codecs is (probably) still better than just allowing everything, given the weird FFmpeg API. I'm also assuming Libav doesn't even have the codec ID, but I didn't check. Also add a --teletext-page option, since otherwise it decodes every teletext page and shows them in succession. And yes, we can't use av_opt_set_int() - instead we have to set it as string. Because FFmpeg's option system is terrible.
* manpage: document another option/property inconsistencewm42016-09-031-0/+13
|
* config: deprecate ao and vo auto-profileswm42016-09-031-0/+1
| | | | | | | | | These never made any sense. They checked the --vo/--ao option, and applied the profile corresponding to the first entry. So the only way to get any use of those was to use the --ao or --vo option explicitly. You can get the same functionality by making a manual profile, making these force the ao/vo, and then using --profile on command line instead of --vo/--ao.
* manpage: mention how to apply/view opengl-hq profilewm42016-09-021-1/+2
|
* ao_alsa: change sub-options to global optionswm42016-09-023-68/+59
| | | | | | Same deal as with vo_opengl. Also edit the outdated information about multichannel output a little.
* command: remove vo-cmdlinewm42016-09-022-7/+2
| | | | | | With the recent vo_opengl changes it doesn't do anything anymore. I don't think a deprecation period is necessary, because the command was always marked as experimental.
* options: deprecate --vo-defaultswm42016-09-022-0/+3
| | | | | | With the conversion from sub-options to global options, this becomes useless. This change also comes slightly too soon, because not all VOs have been changed yet.
* vo_opengl: deprecate sub-options, add them as global optionswm42016-09-023-837/+818
| | | | | | | | | | | | | | | | | | | | | | | | vo_opengl sub-option were always rather annoying to handle. It seems better to make them global options instead. This is simpler and easier to use. The only disadvantage we are aware of is that it's not clear that many/all of these new global options work with vo_opengl only. --vo=opengl-hq is also deprecated. There is extensive compatibility with the old behavior. One exception is that --vo-defaults will not apply to opengl-hq (though with opengl it still works). vo-cmdline is also dysfunctional and will be removed in a following commit. These changes also affect opengl-cb. The update mechanism is still rather inefficient: it requires syncing with the VO after each option change, rather than batching updates. There's also no granularity (video.c just updates "everything", and if auto-ICC profiles are enabled, vo_opengl.c will fetch them on each update). Most of the manpage changes were done by Niklas Haas <git@haasn.xyz>.
* DOCS: move libmpv stub to manpagewm42016-09-023-22/+17
| | | | | | | And replace the sort-of duplicated explanations. (It's a bit funny to use weblinks to the generated web version of itself instead of proper RST links, but I think I don't care.)
* manpage: mention the client API/interface change logswm42016-09-022-3/+8
| | | | | Also, I'm seeing that we still have mplayer-changes.rst - add a warning that it's outdated.
* command: deprecate "cache" property, replace with "cache-percent"wm42016-09-022-5/+2
| | | | | | The --cache option and cache property conflict, so one of them has to be renamed. The option is probably used frequently, so initiate deprecation/rename of the property.
* vo_opengl: remove pre/post/scale-shadersNiklas Haas2016-09-022-63/+17
| | | | | | | | | | Deprecated in favor of user-shaders, which are functionally equivalent but superior. (Except in the case of scaler-shader, which has no direct replacement, but it turned out to be a very unpopular feature either way - most custom scalers don't fit into the mpv kernel infrastructure and are therefore implemented as user shaders either way) Signed-off-by: wm4 <wm4@nowhere>
* client API: create core thread at an earlier timewm42016-09-011-0/+2
| | | | | | | | | | | | | Create the core thread right in mpv_create(), and reduce what mpv_initialize() does further. This is simpler, and allows the API user to do more before calling mpv_initialize(). The latter is not the real goal, rather we'd like mpv_intialize() reduced to do almost nothing. It still does a lot, but nothing truly special anymore that is absolutely required for basic mpv workings. One thing we want the user to be able to do is changing properties before mpv_initialize() to reduce the special status of mpv_set_option().
* command: fix or document some property/option consistency issueswm42016-09-012-1/+39
| | | | | | | | | | | | | Make some existing properties behave more like options. This mostly means they don't deny access if the associated component is not active, but redirects to the option. One kind of fishy change is that we apply --brightness etc. only if they're not set to the default value. This won't necessarily work with --vo=xv, but affects only cases where 1. the Xv adapter has been changed to non-defaults, and 2. the user tries to reset them with mpv by passing e.g. --brightness=0. We don't care about Xv, and the noted use-case is dumb, so this change is acceptable.
* command: remove 2 deprecated propertieswm42016-09-012-18/+1
| | | | | They were delcared to be removed in mpv 0.20.0, and the next release will be 0.21.0.
* command: rename/deprecate some conflicting property nameswm42016-09-012-3/+14
| | | | | | These conflict with options of the same name, and prevent a "full" unification. Not addressed is the "cache" property, and possibly a few properties that behave differently from their equivalent options.
* command: add options to property listwm42016-09-013-160/+20
| | | | | | | | | | | Now options are accessible through the property list as well, which unifies them to a degree. Not all options support runtime changes (meaning affected components need to be restarted for the options to take effects). Remove from the manpage those properties which are cleanly mapped to options anyway. From the user-perspective they're just options available through the property interface.
* vo, ao: disable positional parameter suboptionswm42016-09-011-1/+1
| | | | | | | | | | | | | | | | Positional parameters cause problems because they can be ambiguous with flag options. If a flag option is removed or turned into a non-flag option, it'll usually be interpreted as value for the first sub-option (as positional parameter), resulting in very confusing error messages. This changes it into a simple "option not found" error. I don't expect that anyone really used positional parameters with --vo or --ao. Although the docs for --ao=pulse seem to encourage positional parameters for the host/sink options, which means it could possibly annoy some PulseAudio users. --vf and --af are still mostly used with positional parameters, so this must be a configurable option in the option parser.
* m_option: replace --no-video-aspect aliaswm42016-08-311-6/+4
| | | | | | | | | Instead, add a hacky OPT_ASPECT option type, which only exists to accept a "no" parameter, which in combination with the "--no-..." handling code makes --no-video-aspect work again. We can also remove the code in m_config.c, which only existed to make "--no-aspect" (a deprecated alias) to work.
* client API: deprecate "no-..." option handlingwm42016-08-313-17/+23
| | | | | | | | The client API can do this (and there are apparently some libmpv using projects which rely on this). But it's just unnecessary bloat as it requires a separate code path from the option parser. It would be better to remove this code. Formally deprecate it, including API bump and warning in the API changes file to make it really clear.
* m_config: handle --no-... options differentlywm42016-08-311-0/+5
| | | | | | | Instead of adding "no-"-prefixed aliases to the internal option list, which will act like normal options, do it in the parsing stage. This turns out to be simpler (and cheaper), and avoids adding aliased options.
* vo_xv: remove an aliased optionwm42016-08-311-4/+3
| | | | | Trying to get rid of them, and no-colorkey is an instance of it. Kill it.
* command: export profile list as a propertywm42016-08-281-0/+8
| | | | | | | Targeted at scripts, which can do whatever they want with it. This comes with the promise that they could get randomly broken any time. See #977.
* player: add option to disable video OSDwm42016-08-281-4/+19
| | | | | | | | | | | | | | Normally, OSD can be disabled with --osd-level=0. But this also disables terminal OSD, and some users want _only_ the terminal OSD. Add --video-osd=no, which essentially disables the video OSD. Ideally, it should probably be possible to control terminal and video OSD levels independently, but that would require separate OSD timers (and other state) for both components, so don't do it. But because the current situation isn't too ideal, add a threat to the manpage that might be changed in the future. Fixes #3387.
* command: add property for current subtitle textwm42016-08-271-0/+7
| | | | Requested by someone. Reuses the code for terminal subtitle display.
* vo_opengl: angle: new opengl flag to control DirectCompositionAvi Halachmi (:avih)2016-08-251-0/+10
| | | | | On some systems DirectComposition might behave poorly. Add an opengl suboption flag 'dcomposition' (default=yes) which can disable it.
* manpage: fix typowm42016-08-201-1/+1
|
* manpage: info about --panscan vs. --video-unscaledrr-2016-08-191-1/+4
|
* aspect: add --video-unscaled=downscale-bigrr-2016-08-191-3/+4
|
* manpage: input: fix define-section syntaxjaseg2016-08-171-2/+2
| | | | Source says "force", manpage said "forced". Now both say "force".
* player: add option to control duration of image displaywm42016-08-172-0/+21
| | | | | | | | | | | | | The --image-display-duration option controls how long an image is displayed. It's also possible to display the image forever (until manual user interaction stops playback). With this, the core drops the old method to "drain" video (i.e. waiting for the last frame duration on end of playback). Instead, we reuse MPContext.time_frame. The old mechanism was disabled for non-images anyway. Fixes #3425.
* DOCS: Update versionMartin Herkt2016-08-152-2/+2
|
* command: add replaygain information properties to track-listwm42016-08-131-0/+14
|
* audio/filter: remove delay audio filterPaul B Mahol2016-08-121-28/+0
| | | | Similar filter is available in libavfilter.
* command: add a property that returns filename without extensionwm42016-08-111-0/+6
| | | | Requested. Fixes #3404.
* manpage: remove the word "slave"wm42016-08-111-6/+6
| | | | It's discriminatory or something.
* player: add --no-autoload-files optionwm42016-08-101-0/+10
| | | | Allt his auto-loading is getting annoying especially for testing.
* player: add --audio-wait-open optionswm42016-08-091-0/+8
| | | | Complements the option added in the previous commit.
* player: add --audio-stream-silencewm42016-08-091-0/+11
| | | | | Completely insane that this has to be done. Crap for compensating HDMI crap.
* DOCS/release-policy.md: reminder to update certain version numberswm42016-08-071-1/+2
|
* client API: bump API for stream_cbwm42016-08-071-0/+2
| | | | | | | | | Forgotten in previous commit. Also minor semi-related change: remove the extra "," from the mpv_sub_api enum, which I accidentally added in the previous commit. (C99 is fine with trailing ",", C89 strictly speaking not. So do this for maximum compatibility.)
* audio: use --audio-channels=auto behavior, except on ALSAwm42016-08-041-19/+44
| | | | | | | | | | | | | | | | | | | | | | | This commit adds an --audio-channel=auto-safe mode, and makes it the default. This mode behaves like "auto" with most AOs, except with ao_alsa. The intention is to allow multichannel output by default on sane APIs. ALSA is not sane as in it's so low level that it will e.g. configure any layout over HDMI, even if the connected A/V receiver does not support it. The HDMI fuckup is of course not ALSA's fault, but other audio APIs normally isolate applications from dealing with this and require the user to globally configure the correct output layout. This will help with other AOs too. ao_lavc (encoding) is changed to the new semantics as well, because it used to force stereo (perhaps because encoding mode is supposed to produce safe files for crap devices?). Exclusive mode output on Windows might need to be adjusted accordingly, as it grants the same kind of low level access as ALSA (requires more research). In addition to the things mentioned above, the --audio-channels option is extended to accept a set of channel layouts. This is supposed to be the correct way to configure mpv ALSA multichannel output. You need to put a list of channel layouts that your A/V receiver supports.
* options: add vp9 to --hwdec-codecswm42016-07-301-3/+3
|
* vo_opengl: remove the 3dlut-size npot2 restrictionNiklas Haas2016-07-251-2/+1
| | | | | | | | This requires changing the pixel upload alignment because the odd sizes might not be aligned to multiples of 4. Anyway, the restriction has no real benefit and the sizes in between 32 and 64 might be worth using, so just drop it.
* vo_opengl: reduce default 3dlut-size to 64x64x64Niklas Haas2016-07-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Following testing after ebe798a, this is a more than sufficient size to cover our use case. The old default was a drop of about 58 dB PSNR using the old code, and this new default is about 65 dB PSNR, so it's actually an improvement despite resulting in a smaller size. There was no outlier whatsoever when comparing sizes around the 64 neighbourhood (with every step corresponding to a PSNR drop of about 0.07 dB), so I picked this since it's a power of two and requires no change to the current 3dlut-size parsing logic. I also tested smaller sizes such as 32x32x32 which performed almost as well on colorful samples, but this results in noticeable black boost in the dark regions, which is pretty undesirable. Therefore, we should avoid going much further below 64x64x64. Either way, this new size is so fast to compute that the 3dlut cache is almost useless on my end. In fact, it might even be slower to load the profile from the cache than to recompute it from scratch. (For caches on a disk. For cache on a tmpfs, it makes no difference)
* manpage: not-document tscale=linearwm42016-07-211-0/+3
|
* audio: refactor mixer code and delete mixer.cwm42016-07-173-0/+9
| | | | | | | | | | | | | | | | | mixer.c didn't really deserve to be separate anymore, as half of its contents were unnecessary glue code after recent changes. It also created a weird split between audio.c and af.c due to the fact that mixer.c could insert audio filters. With the code being in audio.c directly, together with other code that unserts filters during runtime, it will be possible to cleanup this code a bit and make it work like the video filter code. As part of this change, make the balance code work like the volume code, and add an option to back the current balance value. Also, since the balance semantics are unexpected for most users (panning between the audio channels, instead of just changing the relative volume), and there are some other volumes, formally deprecate both the old property and the new option.
* vf_d3d11vpp: add video processor selectionwm42016-07-151-0/+6
| | | | | Unfortunately completely useless. I still don't know how to force a video processor to use a specific algorithm, if it's even possible.
* videotoolbox: add yuv420p to --videotoolbox-formatwm42016-07-151-2/+2
|
* man: fix PDF build errorMartin Herkt2016-07-151-0/+1
| | | | | | | ReportLab really doesn’t like breaking inline literals, so insert an explicit line break. Fixes #3338
* videotoolbox: add --hwdec=videotoolbox-copy for h/w accelerated decoding ↵Aman Gupta2016-07-151-0/+1
| | | | with video filters
* DOCS/compile-windows.md: MSVC DLL usage instructionswm42016-07-141-0/+18
|
* Use - as command-name separator everywhereTimotej Lazar2016-07-146-17/+17
| | | | | | | Old-style commands using _ as separator (e.g. show_progress) were still used in some places, including documentation and configuration files. This commit updates all such instances to the new style (show-progress) so that commands are easier to find in the manual.
* manpage: add some missing color management related sub-propertieswm42016-07-131-0/+3
|
* command: add properties for HDR metadataNiklas Haas2016-07-131-0/+6
| | | | | | | | | Since it turns out that knowing what exactly a file was tagged with can be useful for debugging purposes, expose this as a property so I can check it more easily. This is mostly useful for sig-peak (since nom-peak is currently entirely calculated by us), but I added both for consistency.
* manpage: minor fixwm42016-07-102-3/+3
| | | | Also fix some other type in interface-changes.rst.
* man: fix typowm42016-07-091-1/+1
|
* audio: drop --softvol=no and --softvol=autowm42016-07-093-37/+51
| | | | | | | | | | | | | | Drop the code for switching the volume options and properties between af_volume and AO volume controls. interface-changes.rst mentions the changes in detail. Do this because this was exceedingly complex and had other problems as well. It was also very hard to test. It's just not worth the trouble. Some leftovers like AOCONTROL_HAS_PER_APP_VOLUME will be removed at a later point. Fixes #3322.
* man: fix typosJakub Wilk2016-07-095-11/+11
|
* man: fix botched sentencewm42016-07-081-3/+3
| | | | Fixes #3323.
* client API: remove "status" log level from mpv_request_event docswm42016-07-081-0/+4
| | | | | | Although it appears to be accepted by the function, MSGL_STATUS messages are never passed to the client API. Consequently "status" has the same meaning as "v" and is useless.
* manpage: document confusing "vf clr" command usagewm42016-07-031-0/+2
|
* command: pack sub image data in overlay-add commandwm42016-07-011-21/+11
| | | | | | | | | | | | | | Working towards refcounted sub images, and also for removing bitmap packers from VOs. I'm not sure why we even have this overlay-add command. It was sort of "needed" before opengl-cb was introduced, and before Lua scripts could put ASS drawings on OSD without conflicting with the OSC. But now trying to use it doesn't make too much sense anymore. Still keep it because we're trying to be nice, but throw performance out of the window. Now image data is copied 2 more times before displaying it. This also makes using the command a bit simpler.
* options: deprecate --heartbeat-cmdwm42016-06-292-0/+10
| | | | | It's useless. --heartbeat-interval is also considered deprecated, but this is not made explicit.
* vo_opengl: add output_size uniform to custom shaderMuhammad Faiz2016-06-281-0/+3
| | | | | | logically, scaler should know its input and output size Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: implement the Panasonic V-Log functionNiklas Haas2016-06-282-0/+3
| | | | | | | | | | User request and not that hard. Closes #3157. Note that FFmpeg doesn't support this and there's no signalling in HEVC etc., so the only way users can access it is by using vf_format manually. Mind: This encoding uses full range values, not TV range.
* manpage: add missing documentation for vf_format:gamma=dci-p3Niklas Haas2016-06-281-0/+1
|
* csputils: add Panasonic V-Gamut primariesNiklas Haas2016-06-282-0/+3
| | | | | | | This is actually not entirely trivial since it involves negative Yxy coordinates, so the CMM has to be capable of full floating point operation. Fortunately, LittleCMS is, so we can just blindly implement it.
* manpage: warn about the use of HDR functions for target-trcNiklas Haas2016-06-281-0/+6
| | | | | | | Most devices seems to require special signalling (e.g. via HDMI metadata) to actually decode HDR signals and treat them as such, so it's probably worth warning the potential user about the fact that mpv pretty definitely does *not* set any of this metadata signalling.
* vo_opengl: implement ARIB STD-B68 (HLG) HDR TRCNiklas Haas2016-06-282-0/+3
| | | | | | | | | | | | | | This HDR function is unique in that it's still display-referred, it just allows for values above the reference peak (super-highlights). The official standard doesn't actually document this very well, but the nominal peak turns out to be exactly 12.0 - so we normalize to this value internally in mpv. (This lets us preserve the property that the textures are encoded in the range [0,1], preventing clipping and making the best use of an integer texture's range) This was grouped together with SMPTE ST2084 when checking libavutil compatibility since they were added in the same release window, in a similar timeframe.
* Fix misspellingsstepshal2016-06-261-1/+1
|
* manpage: fix typowm42016-06-261-1/+1
|
* DOCS: change version references from 0.17.1 to 0.18.0wm42016-06-253-6/+6
| | | | 0.17.1 was never released, so the actual 0.18.0 release takes its place.
* af_lavcac3enc: make encoder configurablewm42016-06-231-1/+5
|
* vo_opengl: vdpau interop without RGB conversionwm42016-06-191-3/+6
| | | | | | | | | | | | | | | | | | | | | | Until now, we've always converted vdpau video surfaces to RGB, and then mapped the resulting RGB texture. Change this so that the surface is mapped as NV12 plane textures. The reason this wasn't done until now is because vdpau surfaces are mapped in an "interlaced" way as separate fields, even for progressive video. This requires messy reinterleraving. It turns out that even though it's an extra processing step, the result can be faster than going through the video mixer for RGB conversion. Other than some potential speed-gain, doing this has multiple other advantages. We can apply our own color conversion, which is important in more complex cases. We can correctly apply debanding and potentially other processing that requires chroma-specific or in-YUV handling. If deinterlacing is enabled, this switches back to the old RGB conversion method. Until we have at least a primitive deinterlacer in vo_opengl, this will stay this way. The d3d11 and vaapi code paths are similar. (Of course these don't require any crazy field reinterleaving.)
* vo_opengl: remove prescaling framework with superxbr prescalerBin Jin2016-06-182-32/+1
| | | | Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: remove nnedi3 prescalerBin Jin2016-06-181-31/+1
|
* vo_opengl: make size of OUTPUT available to user shadersBin Jin2016-06-121-3/+3
|
* vo_opengl: refactor performance data propertiesNiklas Haas2016-06-081-24/+38
| | | | | | | | | | | | | | | Instead of having 9 different properties, requiring 18 different VOCTRLs to read them all, they are now exposed as a single property. This is not only cleaner (since they're all together) but also allows querying all 9 of them with only a single VOCTRL (by using mp.get_property_native). (The extra factor of 2 was due to an extra query being needed to get the type, which is now also unnecessary) This makes it much easier to access performance metrics from within a lua script, and also makes it easier to just show a readable, formatted version via show-text.
* vo_opengl: make user hook passes optionalNiklas Haas2016-06-081-4/+11
| | | | | | | | | | | | | | | | User hooks can now use an extra WHEN expression to specify when the shader should be run. For example, this can be used to only run a chroma scaling shader `WHEN CHROMA.w LUMA.w <`. There's a slight semantics change to user shaders: When trying to bind a texture that does not exist, a shader will now be silently skipped (similar to when the condition is false) instead of generating an error. This allows shader stages to depend on an optional earlier stage without having to copy/paste the same condition everywhere. (In other words: there's an implicit condition on all of the bound textures existing)
* vo_opengl: expose performance timers as propertiesNiklas Haas2016-06-071-0/+24
| | | | | | | | | | | This is plumbed through a new VOCTRL, VOCTRL_PERFORMANCE_DATA, and exposed as properties render-time-last, render-time-avg etc. All of these numbers are in microseconds, which gives a good precision range when just outputting them via show-text. (Lua scripts can obviously still do their own formatting etc.) Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: apply vo-cmdline command incrementallywm42016-06-051-0/+5
| | | | | | | | | | Instead of implicitly resetting the options to defaults and then applying the options, they're always applied on top of the current options (in the same way adding new options to the CLI command line will). This does not apply to vo_opengl_cb, because that has an even worse mess which I refuse to deal with.
* manpage: update --hwdec=d3d11va remarkswm42016-05-311-5/+3
|
* vo_opengl: default hdr-tone-mapping to hableNiklas Haas2016-05-301-3/+4
| | | | | | | | | This algorithm works really well. Setting it is a much better "out-of-the-box" experience than just clipping, which will always look ugly. In other words, with this default, users of mpv will just be able to play HDR content without even realizing it's HDR (pretty much).
* vo_opengl: refactor HDR mechanismNiklas Haas2016-05-302-3/+12
| | | | | | | | | | | | | | | | | | | | Instead of doing HDR tone mapping on an ad-hoc basis inside pass_colormanage, the reference peak of an image is now part of the image params (alongside colorspace, gamma, etc.) and tone mapping is done whenever peak_src != peak_dst. To get sensible behavior when mixing HDR and SDR content and displays, target-brightness is a generic filler for "the assumed brightness of SDR content". This gets rid of the weird display_scaled hack, sets the framework for multiple HDR functions with difference reference peaks, and allows us to (in a future commit) autodetect the right source peak from the HDR metadata. (Apart from metadata, the source peak can also be controlled via vf_format. For HDR content this adjusts the overall image brightness, for SDR content it's like simulating a different exposure)
* vo_opengl: add hable tone-mapping algorithmNiklas Haas2016-05-301-0/+3
| | | | | | | | Developed by John Hable for use in Uncharted 2. Also used by Frictional Games in SOMA. Originally inspired by a filmic tone mapping algorithm created by Kodak. From http://frictionalgames.blogspot.de/2012/09/tech-feature-hdr-lightning.html
* vo_opengl: rename tone-mapping=simple to reinhardNiklas Haas2016-05-301-4/+4
| | | | | This is the canonical name for the algorithm. I simply didn't know it before.
* vf_d3d11vpp: add a D3D11 video processor filterwm42016-05-281-0/+9
| | | | | | | | | | | | | | | | | Main use: deinterlacing. I'm not sure how to select the deinterlacing mode at all. You can enumate the available video processors, but at least on Intel, all of them either signal support for all deinterlacers, or none (the latter is apparently used for IVTC). I haven't found anything that actually tells the processor _which_ algorithm to use. Another strange detail is how to select top/bottom fields and field dominance. At least I'm getting quite similar results to vavpp on Linux, so I'm content with it for now. Future plans include removing the D3D11 video processor use from the ANGLE interop code.
* command: add playlist-pos-1 propertywm42016-05-261-0/+3
| | | | | | | | | | This has often been requested for use on OSD. I don't really like having such "special" properties, but whatever. Hopefully this will be the only case. Untested because I'm too damn lazy. Fixes #2828.
* vo_opengl: always autoselect ANGLE as backend if availablewm42016-05-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | Remove the opengl-hq option default that caused it not to autoselect ANGLE (unlike --vo=opengl). Details see commit d5df90a2. Back then the intention was to use ANGLE by default, since it integrates much nicer with the Windows compositor (instead of native OpenGL, which tends to cause crazy glitches). On the other hand, many opengl-hq capabilities are not available with older ANGLE builds, so it didn't make any sense to autoselect ANGLE for it. With the GL_EXT_texture_norm16 extension recently added to ANGLE, it has essentially reached feature parity to desktop GL for the subset we are using. (Even the integer texture hack for high bit depth input could be dropped now.) It (probably) still does not support nnedi3, due to the weird way the NN coefficients are imported. Also, it uses half-floats instead of 16 bit fixed-point textures for technical reasons, which implies about 5 bits of precision loss. If anyone actually manages to distinguish the two dithering texture formats in a double-blind test, I will fix it.
* manpage: adjust dxva2 descriptionwm42016-05-231-3/+6
|
* manpage: document how hardware decoding might cause quality losswm42016-05-231-0/+36
|
* docs: fix some typosBen Boeckel2016-05-232-2/+2
|
* vo_opengl: remove non-working rgb/rgba FBO formatswm42016-05-202-1/+3
| | | | | | | | | | | Following commit 84ccebd9, the internal helpers don't allow GL_RGB and GL_RGBA as internal formats for FBO attachments anymore. While OpenGL itself is perfectly fine with it, I don't see much of a reason to bother, and mixing sized and unsized internal formats is confusing anyway. Just remove these formats.
* DOCS/mplayer-changes: document HDR supportNiklas Haas2016-05-161-1/+2
| | | | Marketing told me to do so.
* manpage: declare user-shader syntax for not stablewm42016-05-161-0/+4
|
* vo_opengl: implement more HDR tonemapping algorithmsNiklas Haas2016-05-161-3/+32
| | | | | | | | | | | | | | | | | | | | | This is now a configurable option, with tunable parameters. I got inspiration for these algorithms off wikipedia. "simple" seems to work pretty well, but not well enough to make it a reasonable default. Some other notable candidates: - Local functions (e.g. based on local contrast or gradient) - Clamp with soft knee (linear up to a point) - Mapping in CIE L*Ch. Map L smoothly, clamp C and h. - Color appearance models These will have to be implemented some other time. Note that the parameter "peak_src" to pass_tone_map should, in principle, be auto-detected from the SEI information of the source file where available. This will also have to be implemented in a later commit.
* vo_opengl: implement HDR (SMPTE ST2084)Niklas Haas2016-05-162-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | Currently, this relies on the user manually entering their display brightness (since we have no way to detect this at runtime or from ICC metadata). The default value of 250 was picked by looking at ~10 reviews on tftcentral.co.uk and realizing they all come with around 250 cd/m^2 out of the box. (In addition, ITU-R Rec. BT.2022 supports this) Since there is no metadata in FFmpeg to indicate usage of this TRC, the only way to actually play HDR content currently is to set ``--vf=format=gamma=st2084``. (It could be guessed based on SEI, but this is not implemented yet) Incidentally, since SEI is ignored, it's currently assumed that all content is scaled to 10,000 cd/m^2 (and hard-clipped where out of range). I don't see this assumption changing much, though. As an unfortunate consequence of the fact that we don't know the display brightness, mixed with the fact that LittleCMS' parametric tone curves are not flexible enough to support PQ, we have to build the 3DLUT against gamma 2.2 if it's used. This might be a good thing, though, consdering the PQ source space is probably not fantastic for interpolation either way. Partially addresses #2572.
* vo_opengl: abstract hook texture access behind macroNiklas Haas2016-05-151-2/+14
| | | | | | | | | | | | | | | | | | | | | | | | This macro takes care of rotation, swizzling, integer conversion and normalization automatically. I found the performance impact to be nonexistant for superxbr and debanding, although rotation *did* have an impact due to the extra matrix multiplication. (So it gets skipped where possible) All of the internal hooks have been rewritten to use this new mechanism, and the prescaler hooks have finally been separated from each other. This also means the prescale FBO kludge is no longer required. This fixes image corruption for image formats like 0bgr, and also fixes prescaling under rotation. (As well as other user hooks that have orientation-dependent access) The "raw" attributes (tex, tex_pos, pixel_size) are still un-rotated, in case something needs them, but ideally the hooks should be rewritten to use the new API as much as possible. The hooked texture has been renamed from just NAME to NAME_raw to make script authors notice the change (and also deemphasize direct texture access). This is also a step towards getting rid of the use_integer pass.
* vo_opengl: use RPN expressions for user hook sizesNiklas Haas2016-05-151-7/+17
| | | | | | | | | This replaces the previous TRANSFORM by WIDTH, HEIGHT and OFFSET where WIDTH and HEIGHT are RPN expressions. This allows for more fine-grained control over the output size, and also makes sure that overwriting existing textures works more cleanly. (Also add some more useful bstr functions)
* vo_opengl: support external user hooksNiklas Haas2016-05-151-0/+113
| | | | | | | | | | | This allows users to add their own near-arbitrary hooks to the vo_opengl processing pipeline, greatly enhancing the flexibility of user shaders. This enables, among other things, user shaders such as CrossBilateral, SuperRes, LumaSharpen and many more. To make parsing the user shaders easier, shaders are now loaded as bstrs, and the hooks are set up during video reconfig instead of on every single frame.
* lua: add timer:is_enabled() functionJulian2016-05-141-0/+4
| | | | | Allows to query if some timer is currently running or was stopped/killed.
* manpage: document missing sub-propertieswm42016-05-111-0/+2
| | | | | This is the client-API part; the normal descriptions are present in the text above.
* video: add --hwdec=auto-copy modewm42016-05-111-0/+8
| | | | | | | | This uses the normal autoprobing rules like "auto", but rejects anything that isn't flagged as copying data back to system memory. The chunk in command.c was dead code, so remove it instead of updating it.
* manpage: unmark d3d11va as "experimental"wm42016-05-111-2/+3
| | | | Also add missing mediacodec entry.
* manpage: document -- and some issues passing filenameswm42016-05-101-1/+12
|
* manpage: fix some script_message references to preferred namewm42016-05-093-9/+9
|
* win32: make taskbar progress indication optionalmaniak13492016-05-082-0/+9
| | | | | | | | | | | Add --taskbar-progress command line option and property which controls taskbar progress indication rendering in Windows 7+. This option is on by default and can be toggled during playback. This option does not affect the creation process of ITaskbarList3. When the option is turned off the progress bar is just hidden with TBPF_NOPROGRESS. Closes #2535
* manpage: document --x11-bypass-compositor=nowm42016-05-081-1/+4
| | | | Requested.
* manpage: change gnome-screensaver-command exampleRahul Kalkani2016-05-071-1/+1
| | | | | | Correct options to deactivate is -d or --deactivate. Signed-off-by: wm4 <wm4@nowhere>
* x11: rename inappropriate --x11-bypass-compositor=never optionwm42016-05-071-2/+2
| | | | This obviously made no sense.
* x11: add --x11-bypass-compositor=alwayswm42016-05-061-2/+7
| | | | Also add missing documentation for fs-only, and correct the default.
* DOCS: update documentation related to color managementNiklas Haas2016-05-062-6/+12
| | | | | | Some of this documentation was left woefully inaccurate as color management in mpv evolved. This commit updates all of the wording and adds notes and comments where appropriate.
* manpage: minor fixes to --lavfi-complexwm42016-05-061-2/+3
|
* client API: access choices as flags if appropriatewm42016-05-042-0/+9
| | | | | | | | | | | | Options/properties that are choices, and which include "yes" or "no" values (or both) can now be read and written as MPV_FORMAT_FLAG. For write access, rejecting flags in these cases was obnoxiously unintuitive and inconvenient. For read access, the value of this is less convincing, and actually it's a major API change. At this point I probably have to admit that the finer details of the client API are very unstable.
* command: change some hwdec propertieswm42016-05-042-2/+30
| | | | | | | | Introduce hwdec-current and hwdec-interop properties. Deprecate hwdec-detected, which never made a lot of sense, and which is replaced by the new properties. hwdec-active also becomes useless, as hwdec-current is a superset, so it's deprecated too (for now).
* lcms: improve black point handling (especially BT.1886)Niklas Haas2016-05-041-0/+7
| | | | | | | | | | | | | | | | | | | First of all, black point compensation is now on by default. This is really rather harmless and only improves the result (where "improvement" means "less black clipping"). Second, this adds an option to limit the ICC profile's contrast, which helps for untagged matrix profiles that are implicitly black scaled even in colorimetric intent. (Note that this relies on BPC being enabled to work properly, which is why the two changes are tied together) Third, this uses the LittleCMS built in black point estimator instead of relying on the presence of accurate A2B tables. This also checks tags and does some amounts of noise elimination. If the option is unspecified and the profile is missing black point information, print a warning instructing the user to set the option, and fall back to 1000 otherwise.
* manpage: fix typoVaidas Kascėnas2016-04-301-1/+1
| | | | Signed-off-by: wm4 <wm4@nowhere>
* options: add --fit-border video optionmaniak13492016-04-301-0/+6
| | | | | | | Flag that is set by default. Reseting it will result in mpv trying to fit client area with video instead of the whole window with border and decorations on the screen. Marked as (Windows only) for now until it's implemented on other platforms.
* sd_add: replace --sub-ass=no with --ass-style-override=stripwm42016-04-302-5/+12
| | | | | | --sub-ass=no / --ass=no still work, but --ass-style-override=strip is preferred now. With this change, --ass-style-override can control all the types of style overriding.
* vo_opengl: support GL_EXT_texture_norm16 on GLESwm42016-04-271-1/+2
| | | | | | | | | | | | | | | This gives us 16 bit fixed-point integer texture formats, including ability to sample from them with linear filtering, and using them as FBO attachments. The integer texture format path is still there for the sake of ANGLE, which does not support GL_EXT_texture_norm16 yet. The change to pass_dither() is needed, because the code path using GL_R16 for the dither texture relies on glTexImage2D being able to convert from GL_FLOAT to GL_R16. GLES does not allow this. This could be trivially fixed by doing the conversion ourselves, but I'm too lazy to do this now.
* vo_opengl: D3D11VA + ANGLE interopwm42016-04-271-0/+1
| | | | | | | | | | | | | | | | | | | This uses ID3D11VideoProcessor to convert the video to a RGBA surface, which is then bound to ANGLE. Currently ANGLE does not provide any way to bind nv12 surfaces directly, so this will have to do. ID3D11VideoContext1 would give us slightly more control about the colorspace conversion, though it's still not good, and not available in MinGW headers yet. The video processor is created lazily, because we need to have the coded frame size, of which AVFrame and mp_image have no concept of. Doing the creation lazily is less of a pain than somehow hacking the coded frame size into mp_image. I'm not really sure how ID3D11VideoProcessorInputView is supposed to work. We recreate it on every frame, which is simple and hopefully doesn't affect performance.
* manpage: fix --autofit examplewm42016-04-241-1/+1
| | | | Fixes #3069.
* command: if only ab-loop-b is set, loop from start of filewm42016-04-213-7/+12
| | | | | | | | | | Commit 382bafcb changed the behavior for ab-loop-a. This commit changes ab-loop-b so that the behavior is symmetric. Adjust the OSD rendering accordingly to the two changes. Also fix mentions of the "ab_loop" command to the now preferred "ab-loop".
* stream_memory: add hex:// protocolwm42016-04-201-0/+3
| | | | Completely useless, expect for some special purposes.
* player: loop on end of file if ab-loop-b is unsetwm42016-04-182-2/+6
| | | | Possibly slightly more useful/intuitive.
* client API: improve mpv_set_property() handling of MPV_FORMAT_NODEwm42016-04-151-0/+9
| | | | | | | | | If a mpv_node wrapped a string, the behavior was different from calling mpv_set_property() with MPV_FORMAT_STRING directly. Change this. The original intention was to be strict about types if MPV_FORMAT_NODE is used. But I think the result was less than ideal, and the same change towards less strict behavior was made to mpv_set_option() ages ago.
* aspect: rework --video-unscaledNiklas Haas2016-04-102-7/+6
| | | | | | | | | | | | | | | | | | | In the past, --video-unscaled also disabled zooming and aspect ratio corrections. But this didn't make much sense in terms of being a useful option. The new behavior just sets the initial video size to be unscaled, but it's still affected by zoom commands and aspect ratio corrections. To get the old behavior back, --video-aspect=0 --video-zoom=0 need to be added as well (in the general case). Most of the time it should not make a difference though. Also, there seems to have been some additional dst_rect clamping code inside src_dst_split_scaling that didn't seem to either be necessary nor ever get triggered. (The code immediately above it already makes sure to crop the video if it's larger than the dst_rect) No idea why it was there, but I just removed it.
* osd: add italic font for osdst4t1k2016-04-081-0/+3
|
* x11: do not set _NET_WM_BYPASS_COMPOSITOR by defaultwm42016-04-031-2/+2
| | | | | | | | | | | It's pretty "unfriendly" and causes too many issues. (Probably. At least they're more obvious to a user than e.g. broken frame timing.) Potentially we could apply heuristics like applying this only on fullscreen, but let's not. It's up to the user to configure this to get best results. Fixes #2997.
* aspect: make video-zoom logarithmicNiklas Haas2016-04-032-6/+5
| | | | | | | | | | | | | The past behavior was a bit weird, especially when zooming out. There was no simple way to zoom in or out in consistent increments using keybindings alone. The new behavior preserves most of the old behavior's semantics but scales out to infinity better. It coincidentally also makes it really easy to get clean power of 2 ratios (e.g. 2x, 4x, 8x and their inverses). Fixes #3004.
* manpage: change underscore to hyphen in input commandKevin Mitchell2016-04-031-1/+1
| | | | fixes #3018
* manpage: fix typoKevin Mitchell2016-04-021-1/+1
|
* manpage: add example for --msg-levelwm42016-04-021-0/+16
| | | | I guess the syntax is not necessarily very obvious.
* vd_lavc: add d3d11va hwdecKevin Mitchell2016-03-301-0/+1
| | | | | | This commit adds the d3d11va-copy hwdec mode using the ffmpeg d3d11va api. Functions in common with dxva2 are handled in a separate decode/d3d.c file. A future commit will rewrite decode/dxva2.c to share this code.
* command: add video-stereo-mode propertywm42016-03-281-0/+3
| | | | | | Enables runtime change of the option. Fixes #2994.
* lua: don't require key for mp.add_key_binding()wm42016-03-261-1/+2
| | | | | Requested. The intention is that scripts can provide mappable actions for key bindings without setting a default key.
* DOCS/interface-changes: mention --input-ipc-server changewm42016-03-241-0/+2
|
* man: ipc: update for named pipe IPC on WindowsJames Ross-Gowan2016-03-232-11/+42
|
* command: change "cache-speed" OSD formattingwm42016-03-221-2/+2
| | | | | Also change the property to an int, since using double is questionable and pointless.
* command: add cache-speed propertywm42016-03-202-0/+6
| | | | | | | Should reflect I/O speed. This could go into the terminal status line. But I'm not sure how to put it there, since it already uses too much space, so it's not there yet.
* man: lua: fix typo in script-binding example.torque2016-03-191-1/+1
| | | | This line was added in ae5df9be98e4193342321f30285655fcf88e7e63, and it appears to have been a typo.
* csputils: add DCI-P3 colorspaceNiklas Haas2016-03-191-0/+2
| | | | | | This colorspace has been historically used as a calibration target for most digital projectors and sees some involvement in the UltraHD standards, so it's a useful addition to mpv.
* DOCS/compile-windows.md: use CC=gcc.exe for msys2 compileKevin Mitchell2016-03-181-2/+2
| | | | | The .exe extension *is* required. It only kind of worked without it due to the --check-c-compiler flag.
* DOCS/compile-windows.md: update dependencies for msys2 buildKevin Mitchell2016-03-181-1/+1
| | | | | Apparently, you're not supposed to use msys2 pkg-config for mingw stuff. Also, in msys2, python *is* python3.
* lua: don't suspend core by default during script executionwm42016-03-182-7/+2
| | | | | | | | | This changes behavior somewhat. The old behavior can be restored by running "mp.use_suspend=true". It was originally introduced for the OSC, but I can't reproduce whatever misbehavior I was seeing. (See mp.suspend()/resume() for explanations what the suspend mechanism does.)
* DOCS/compile-windows.md: update MSYS2 instructionsKevin Mitchell2016-03-161-12/+37
| | | | | | | | * Use the update-core command * Add --check-c-compiler=gcc to be safe * Add warning about potential pitfalls of adding C:\msys2\mingw64\bin to %PATH% * Recommend winpty * Add note about ANGLE
* manpage: fix inverted condition in mixer-active descriptionwm42016-03-131-2/+2
| | | | | | Still not sure if the current text is actually understandable. Also fix a typo.
* manpage: minor changes to some environment variableswm42016-03-121-5/+1
| | | | | | TERM isn't used anymore (except possibly indirectly by vo_caca). MPV_LEAK_REPORT should be thread-safe, modulo bugs.
* manpage: add that dxinterop may work on intel.Kevin Mitchell2016-03-101-1/+2
|
* manpage: remove extraneous newlines from end of options.rstKevin Mitchell2016-03-101-2/+0
|
* manpage: add note about video filters and hwdecKevin Mitchell2016-03-101-1/+5
|
* manpage: document dxva2 option for hwdecKevin Mitchell2016-03-101-3/+6
| | | | Also mention dxva2-copy along with vaapi-copy.
* DOCS: add some hints to the new examples repositorywm42016-03-101-0/+14
|
* DOCS: remove client API exampleswm42016-03-1025-1936/+0
| | | | Moved to: https://github.com/mpv-player/mpv-examples
* command: change stream-pos semanticswm42016-03-092-2/+4
| | | | | | | | | | | | | Changing the byte stream position without cooperation of the demuxer seems a bit insane, and is certainly useless. A user should do factor seeks instead. For formats like ts, this will actually translate to byte seeks, while treating the rest of the playback chain a bit more gracefully. With this argument, remove write access to this property. If someone really complains, proper byte seeks could be added as seek mode (although I'm going to need a convincing argument for this). Read access changes too, but in a more subtle way.
* vo_opengl: rename prescale to prescale-lumaNiklas Haas2016-03-051-10/+4
| | | | | | Since prescale now literally only affects the luma plane (and the filters are all designed for luma-only operation either way), the option has been renamed and the documentation updated to clarify this.
* demux: add null demuxerwm42016-03-042-1/+5
| | | | It's useless, but can be used for fancy --lavfi-complex nonsense.
* command: add encoder-list propertywm42016-03-011-2/+7
| | | | | Also change decoder-list (for the sake of sharing the underlying code for both properties).
* command: export canonical ffmpeg version identifierwm42016-02-291-0/+7
| | | | Was printed only with "mpv -h" or so.
* command: export list of all decoderswm42016-02-291-0/+32
| | | | | | | Was only available via --vd=help and --ad=help (i.e. not at all via client API). Not bothering with separating audio and video codecs, since this list isn't all that useful anyway in general. If someone complains, a type field could be added.
* command: export more information under track-listwm42016-02-292-5/+34
| | | | | | | | | | | | | Export a number of container fields, which may or may not be useful in some scenarios. They are explicitly marked as originating from the demuxer, in order to make it explicit that they might be unreliable. I'd actually like to remove all other cases where container information is exported, but those numerous cases are going to be somewhat hard to deprecate. Also, not directly related, export the description of the currently active decoder. (This has been requested before.)
* osc: add always-on mode and unify visibility mode (always/never/auto)Avi Halachmi (:avih)2016-02-271-12/+13
| | | | | | | | | | | | | Adds always-on mode by internally utilizing hidetimeout as negative and forbidding the user to set negative values. This removes script-message to enable/disable the osc, and instead introduces a combined 'visibility' control with the values never/auto/always. It's available via script_opts and script_message as 'osc-visibility'. As message, it also supports a 'cycle' value. The del key is bound to cycling the visibility modes.
* manpage: add showvolume example to --lavfi-complexwm42016-02-271-0/+3
| | | | Pretty useful for debugging surround nonsense.
* manpage: fix typowm42016-02-211-1/+1
|
* manpage: add hint where the full keybindings are declaredwm42016-02-211-0/+4
| | | | The actual location of input.conf the user has to find out himself.
* demux_timeline: fix nested timelineswm42016-02-202-5/+3
| | | | | You can e.g. reference ordered chapters or other EDL files in EDLs. There were some bugs left which broke this in some cases.
* player: add on_preloaded hookwm42016-02-151-0/+11
| | | | (Limited usefulness.)
* manpage: normal filters are still active with complex filterswm42016-02-121-0/+3
| | | | It's not exactly obvious how they interact.
* manpage: fix indenting issue in vf_formatNiklas Haas2016-02-111-21/+21
|
* manpage: add example for playing 2 audio tracks at the same timewm42016-02-081-0/+2
|
* player: add --external-file optionwm42016-02-081-0/+5
| | | | Mostly intended for use with --lavfi-complex.
* player: add complex filter graph supportwm42016-02-051-1/+43
| | | | | | | | | | | | | | | | See --lavfi-complex option. This is still quite rough. There's no support for dynamic configuration of any kind. There are probably corner cases where playback might freeze or burn 100% CPU (due to dataflow problems when interaction with libavfilter). Future possible plans might include: - freely switch tracks by providing some sort of default track graph label - automatically enabling audio visualization - automatically mix audio or stack video when multiple tracks are selected at once (similar to how multiple sub tracks can be selected)
* input: ignore --input-cursor for events injected by input commandswm42016-02-041-0/+2
| | | | | | Apparently useful for window embedding. Fixes #2750.
* audio: remove default preference for libdcadecwm42016-02-011-1/+1
| | | | Not needed anymore, because the decoder was merged with FFmpeg.
* DOCS: explain about DVD situation in man page.archenemies2016-01-311-0/+39
| | | | | | Explains libdvdnav vs libdvdread situation (as much as I know), workarounds for bugs, and limitations of image-based subtitles. (try #4)
* vo_opengl: replace tscale-interpolates-only with interpolation-thresholdwm42016-01-272-4/+16
| | | | | The previous approach was too naive, and can e.g. ruin playback if scheduling switches e.g. between 1 and 2 vsync per frame.
* vo_opengl: support 10 bit support with ANGLEwm42016-01-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | GLES does not support high bit depth fixed point textures for unknown reasons, so direct 10 bit input is not possible. But we can still use integer textures, which are supported by GLES 3.0. These store integer data just like the standard fixed point textures, except they are not normalized on sampling. They also don't support bilinear filtering, and require a special sampler ("usampler2D"). While these texture formats enable us to shuffle the data to the GPU, they're rather impractical with the requirements mentioned above and our current architecture. One problem is that most code assumes it can always use bilinear scaling (even if bilinear is never used when using appropriate scale/cscale options). Another is that we don't have any concept of running a function on a texture in an uniform way. So for now, run a simple conversion step through a FBO. The FBO will use the rgba16f format normally, which gives enough bits for 10 bit, and will at least gracefully degrade with higher depth input. This is bound to be much slower than a more "direct" method, but at least it works and is simple to implement. The odd change of function call order in init_video() is to properly disable "dumb mode" (no FBO use) if these texture formats are in use.
* vo_opengl: default to rgba16f FBOs on ANGLEwm42016-01-261-2/+2
| | | | | Although it has only 1 bit more precission than rgba10_a2, it was reported to improve the visual quality.
* command: always allow setting volume/mute propertieswm42016-01-262-2/+24
| | | | | | | | | | | | | | | | | | | | | | | This seems generally easier when using libmpv (and was already requested and implemented before: see commit 327a779a; it was reverted some time later). With the weird internal logic we have to deal with, in particular the --softvol=no case (using system volume), and using the audio API's mixer (--softvol=auto on some systems), we still can't avoid all glitches and corner cases that complicate this issue so much. The API user is either recommended to use --softvol=yes or auto, or to watch the new mixer-active property, and assume the volume/mute properties have significant values if the mixer is active. Remaining glitches: - changing the volume/mute properties has no effect if no internal mixer is used (--softvol=no) and the mixer is not active; the actual mixer controls do not change, only the property values - --volume/--mute do not have an effect on the volume/mute properties before mixer initialization (the options strictly are only applied during mixer init) - volume-max is 100 while the mixer is not active
* manpage: fix typowm42016-01-251-1/+1
|
* vo_opengl: add tscale-interpolates-only sub-optionwm42016-01-252-0/+5
|
* vo_opengl: default scaler-resizes-only sub-option to yeswm42016-01-252-1/+2
| | | | | | | | Often requested. The main argument, that prominent scalers like sharpen change the image even if no scaling happens, disappeared anyway. ("sharpen", unsharp masking, is neither prominent nor a scaler anymore. This is an artifact from MPlayer, which fuses unsharp masking with bilinear scaling in order to make it single-pass, or so.)
* vo_opengl: rename custom shader entrypoint from sample to sample_pixelwm42016-01-252-1/+7
| | | | | | | "sample" is a reserved identifier at least in GLES ES. Suggestions for a better name than "sample_pixel" are still welcome. Fixes #2733.
* manpage: minor correctionswm42016-01-242-8/+4
| | | | Pointed out by der_richter on IRC.
* DOCS/interface-changes: fix typowm42016-01-231-1/+1
|
* manpage: adjust vf/af-command descriptionwm42016-01-221-1/+4
|
* command: add af-command commandwm42016-01-221-0/+3
| | | | Similar to vf-command. Requested. Untested.
* command: add vf-command commandwm42016-01-221-0/+6
|
* audio: change downmix behavior, add --audio-normalize-downmixwm42016-01-202-0/+13
| | | | | | This is probably the 3rd time the user-visible behavior changes. This time, switch back because not normalizing seems to be the more expected behavior from users.
* audio: change --audio-channels default back to stereowm42016-01-202-5/+9
| | | | | | | | Too many problems. Well, actually it's just Linux audio systems which cause problems, and exclusive audio access on other platforms. In any case, it seems you have to do some manual configuration if you want multichannel audio output.
* manpage: adjust --display-fps descriptionwm42016-01-181-3/+7
| | | | | Make it more conservative. In most cases, mpv should be able to determine it correctly on all supported platforms.
* manpage: update win32 config pathwm42016-01-141-1/+1
| | | | | | Well, this probably depends on the exact Windows version. Fixes #2611.
* man: options: Clarify expected behaviour with --dvbin-full-transponder.Oliver Freyermuth2016-01-141-4/+7
| | | | | | | Since the streams are chosen from the full TS by the player frontend, one should not expect that the program which is shown matches the chosen channel which was used for tuning to the frequency. Also, reformulate slightly to simplify reading.
* man: options: hint to cycling of program property.Oliver Freyermuth2016-01-141-0/+2
| | | | | Very helpful to switch between the different programs on a transponder in full-transponder-mode for DVB.
* man: input: document new DVB bindings and properties.Oliver Freyermuth2016-01-142-1/+13
| | | | | There is now H and K for DVB-channel switching, and the properties dvb-channel (W) and dvb-channel-name (RW).
* manpage: mention that image subtitles can not be repositioned etc.wm42016-01-121-0/+8
| | | | Fixes #2707. (Not entirely following the suggestions there.)
* manpage: adjust documented screenshot file namewm42016-01-081-2/+3
| | | | Fixes #2696.
* win32: fix fd://James Ross-Gowan2016-01-071-3/+2
| | | | | | | | Windows definitely supports Unix-style fd inheritance. This mostly worked when launched from mpv.exe, though mpv should change the file mode to O_BINARY. When launched from mpv.com, the wrapper must pass the list of handles (stored in the undocumented lpReserved2 and cbReserved2 fields) to the mpv process.
* ao_dsound: remove this audio outputwm42016-01-061-16/+2
| | | | | | | It existed for XP-compatibility only. There was also a time where ao_wasapi caused issues, but we're relatively confident that ao_wasapi works better or at least as good as ao_dsound on Windows Vista and later.
* options: exclude 360 from --video-rotate rangewm42016-01-021-1/+1
| | | | It's indeed completely useless. Pointed out in #2647.
* manpage: lua: fix command nameswm42015-12-291-5/+5
| | | | Both variants work, but the ones with "-" are preferred now.
* demux_mkv: adjust subtitle preroll defaultswm42015-12-271-2/+9
| | | | | | | | | | | | | | | | | Always preroll by default if the cue (index) information indicates overlapping subtitles. Increase the amount of maximum data it will skip to get such subtitles to 10 seconds. Since the index information can reliably tell whether reading earlier is needed, the maximum should be rarely actually used, thus we can set it high. On the other hand, the "old" prerolling mechanism always has to skip the maximum amount of data; thus the method using the index gets its own option to control the maximum amount of data to skip. (As more and more files With newer mkvtoolnix versions are muxed, and with this new and hopefully sane default established, these options can probably be removed in the future.)
* options: add --audio-file-pathswm42015-12-251-1/+5
| | | | | | | | Requested. It works like --sub-paths. This will also load audio files from a "audio" sub directory in the config file (because the same code as for subtitles is used, and it also had such a feature). Fixes #2632.
* input: add a catch-all "unmapped" commandwm42015-12-231-0/+6
| | | | | | This can be used to grab all unmapped keys. Fixes #2612.
* input: add key name to script-binding command responsewm42015-12-231-8/+14
| | | | | | | | | | | | | | | | The "script-binding" command is used by the Lua scripting wrapper to register key bindings on the fly. It's also the only way to get fine- grained information about key events (such as separate key up/down events). This information is sent via a "key-binding" message when the state of a key changes. Extend it to send name of the mapped key itself. Previously, it was assumed that the user just uses an unique identifier for the binding's name, so it wasn't needed. With this change, a user can map exactly the same command to multiple keys, which is useful especially with the next commit. Part of #2612.
* vo_opengl: blend transparent video against tiles by defaultwm42015-12-221-2/+4
| | | | | | | | | | | Add a "blend-tiles" choice to the "alpha" sub-option. This is pretty simplistic and uses the GL raster position to derive the tiles. A weird consequence is that using --vo=opengl and --vo=opengl-hq gives different scaling behavior (screenspace pixel size vs. source video pixel size 16x16 tiles), but it seems we don't have easy access to the original texture coordinates. Using the rasterpos is probably simpler. Make this option the default.
* Add a CONTRIBUTING.md filewm42015-12-221-9/+11
| | | | | | | | | Github will display a link to it when a user wants to create an issue or pull request. Also make some minor adjustments to DOCS/contribute.md, which is developer oriented, and for which I see no reason to merge it with the new file.
* vf_yadif: change defaultswm42015-12-212-5/+6
| | | | | | | | | | | | | | | | This is for the sake of command.c and the "deinterlace" option/property. Instead of forcing certain "better" defaults when inserting yadif, change the actual "yadif" defaults. I pondered not changing vf_yadif, and instead adding a trivial "yadif- auto" wrapper filter, which would merely have different defaults. But thinking about it, it doesn't make any sense for "deinterlace" to have different defaults from vf_yadif, with vf_yadif having the "worse" defaults. If someone wants the old behavior, the old behavior can be forced in a backward and forward compatible way by setting the suboptions. Fixes #2539 (kind of).
* DOCS/compile-windows: pthreads is not needed anymorewm42015-12-201-16/+1
| | | | | | Both mpv and ffmpeg have their own internal pthreads wrappers. The mpv one has been recently enabled by default as well. (It didn't work on XP, but we dropped XP support.)
* win32: input: use Vista CancelIoExJames Ross-Gowan2015-12-201-22/+0
| | | | | | | | | | | | | | | | | libwaio was added due to the complete inability to cancel synchronous I/O cleanly using the public Windows API in Windows XP. Even calling TerminateThread on the thread performing I/O was a bad solution, because the TerminateThread function in XP would leak the thread's stack. In Vista and up, however, this is no longer a problem. CancelIoEx can cancel synchronous I/O running on other threads, allowing the thread to exit cleanly, so replace libwaio usage with native Vista API functions. It should be noted that this change also removes the hack added in 8a27025 for preventing a deadlock that only seemed to happen in Windows XP. KB2009703 says that Vista and up are not affected by this, due to a change in the implementation of GetFileType, so the hack should not be needed anymore.
* video: switch from using display aspect to sample aspectwm42015-12-191-4/+4
| | | | | | | | | | | | | | | | MPlayer traditionally always used the display aspect ratio, e.g. 16:9, while FFmpeg uses the sample (aka pixel) aspect ratio. Both have a bunch of advantages and disadvantages. Actually, it seems using sample aspect ratio is generally nicer. The main reason for the change is making mpv closer to how FFmpeg works in order to make life easier. It's also nice that everything uses integer fractions instead of floats now (except --video-aspect option/property). Note that there is at least 1 user-visible change: vf_dsize now does not set the display size, only the display aspect ratio. This is because the image_params d_w/d_h fields did not just set the display aspect, but also the size (except in encoding mode).
* vo_opengl: disable pbo by defaults for opengl-hqwm42015-12-191-5/+7
| | | | Too many problems.
* man: fix grammar issuesMartin Herkt2015-12-199-65/+71
|
* vo_opengl: add dxinterop backendJames Ross-Gowan2015-12-111-0/+3
| | | | | | | | | | | | | | | | | | | | | WGL_NV_DX_interop is widely supported by Nvidia and AMD drivers. It allows a texture to be shared between Direct3D and WGL, so that rendering can be done with WGL and presentation can be done with Direct3D. This should allow us to work around some persistent WGL issues, such as dropped frames with some driver/OS combos, drivers that buffer frames to increase performance at the cost of latency, and the inability to disable exclusive fullscreen mode when using WGL to render to a fullscreen window. The addition of a DX_interop backend might also enable some cool Direct3D-specific enhancements in the future, such as using the GetPresentStatistics API to get accurate frame presentation timestamps. Note that due to a driver bug, this backend is currently broken on Intel. It will appear to work as long as the window is not resized too often, but after a few changes of size it will be unable to share the newly created renderbuffer with GL. See: https://software.intel.com/en-us/forums/graphics-driver-bug-reporting/topic/562051
* stream: drop PVR supportwm42015-12-101-59/+0
| | | | | | | | | This is only for specific Hauppage cards. According to the comments in who is actively using this feature. Get it out of the way. Anyone who still wants to use this should complain. Keeping this code would not cause terribly much additional work, and it could be restored again. (But not if the request comes months later.)
* sub: increase gap/overlap fixing threshold to 210mswm42015-12-071-1/+1
| | | | Don't ask why.
* vo_opengl: decrease default lookup texture size to 64Bin Jin2015-12-071-2/+2
| | | | | | It turns out that with accurate lookup we can decrease the default size of texture now. Do it to compensate the performance loss introduced by the LUT_POS macro.
* vo_opengl: make LOOKUP_TEXTURE_SIZE configurableBin Jin2015-12-071-0/+9
|
* win32: add option to set VO MMCSS profilewm42015-12-061-0/+4
| | | | This was requested.
* manpage: reflect recent subtitle changeswm42015-12-062-10/+10
|
* examples/qt_opengl: Use fbo of the widget and not the thread contextcommander kotori2015-12-031-1/+1
| | | | | | | Sometimes QOpenGLWidget may be redirecting it's output to a framebuffer object rather than the frontbuffer, in which case the current thread's context render fbo is different from the widget's. Use the widget's desired fbo instead.
* examples/qt_opengl: remove redundant time-start property fetchcommander kotori2015-12-031-2/+1
| | | | | | Time-start is not a real property since 70df1608d. Fixes #2529.
* vo_opengl: enable NNEDI3 prescaler on OpenGL ES 3.0Bin Jin2015-12-021-2/+2
| | | | | | | | | | | | | | It turns out that both UBO and intBitsToFloat() are supported in OpenGL ES 3.0[1][2], enable them so that NNEDI3 prescaler can be used in a wider range of backends. Also fixes some implicit int-to-float conversions so that the shader actually compiles on GLES. Tested on Linux desktop (nvidia 358.16) with "es" sub-option. [1]: https://www.khronos.org/opengles/sdk/docs/man3/html/glGetUniformBlockIndex.xhtml [2]: https://www.khronos.org/opengles/sdk/docs/manglsl/docbook4/xhtml/intBitsToFloat.xml
* manpage: fix a command namewm42015-12-011-1/+1
| | | | Using "-" as separator is preferred now.
* manpage: ' can't be used for quotingwm42015-11-301-2/+2
|
* manpage: explain behavior of "path" propertywm42015-11-291-1/+5
| | | | | | | This seems to confuse users pretty often, but I'm not going to change its behavior. See e.g. #2541.
* DOCS/interface-changes: add some recent changeswm42015-11-291-1/+3
|
* vo_opengl: make tscale=mitchell:tscale-clamp the defaultwm42015-11-291-1/+1
| | | | Looks better than "oversample". tscale-clamp suggested by haasn.
* w32_common: implement icc-profile-autoJames Ross-Gowan2015-11-261-1/+2
| | | | | | | | | | | | This adds basic support for ICC profiles. Per-monitor profiles are supported. WCS profiles are not supported, but there is an API for converting WCS profiles to ICC, so they might be supported in future. I'm just not sure if anyone actually uses them. Reloading the ICC profile when it's changed in the control panel is also not supported. This might be possible by using the WCS APIs and watching the registry for changes, but there is no official API for it, and as far as I can tell, no other Windows programs can do it.
* vo: do not use display FPS for framedropwm42015-11-251-5/+4
| | | | | | | This logic was kind of questionable anyway, and --display-sync should give much better results. (I would even go as far as saying that the FPS-dependent framedrop code made things worse in some situations. Not all, though.)
* vo_opengl: disable interpolation without display-syncwm42015-11-251-0/+4
| | | | | Without display-sync mode, our guesses wrt. vsync phase etc. are much worse, and I see no reason to keep the complicated "vsync_timed" code.
* command, vo: add estimated-display-fps propertywm42015-11-251-0/+8
| | | | | | | | | | This is simply the average refresh rate. Including "bad" samples is actually an advantage, because the property exists only for informational purposes, and will reflect problems such as the driver skipping a vsync. Also export the standard deviation of the vsync frame duration (normalized to the range 0-1) as vsync-jitter property.
* vo_rpi: add an option to disable OSDwm42015-11-251-0/+4
| | | | | | The OSD takes up an entire fullscreen dispmanx layer. Although the GPU should be able to handle it (possibly even without any disadvantages), it'll still be useful for debugging performance issues.
* manpage: deinterlace is now the lowercase dKevin Mitchell2015-11-233-8/+8
| | | | | there were a few places that that used an upper case D and one that still actually said Shift+D
* manpage: clarify correct-downscaling descriptionwm42015-11-231-1/+2
| | | | Someone complained about the wording.
* command: export some per-video-frame informationwm42015-11-221-0/+13
| | | | Utterly useless, but requested. Fixes #2444.
* vo_opengl: use ANGLE by default if available (except for "hq" preset)wm42015-11-211-3/+14
| | | | | | | | | Running mpv with default config will now pick up ANGLE by default. Since some think ANGLE is still not good enough for hq features, extend the "es" option to reject GLES backends, and add to to the opengl-hq preset. One consequence is that mpv will by default use libswscale to convert 10 bit video to 8 bit, before it reaches the VO.
* vo_opengl: enable dumb-mode automatically if possiblewm42015-11-191-1/+4
| | | | | | | | | | | | | | | I decided that I actually can't stand how vo_opengl unnecessarily puts the video through 3 shader stages (instead of 1). Thus, what was meant to be a fallback for weak OpenGL implementations, the dumb-mode, now becomes default if the user settings allow it. The code required to check for the settings isn't so wild, so I guess it's manageable. I still hope that one day, our rendering logic can generate ideal shader stages for this case too. Note that in theory, dumb-mode could be reenabled at runtime due to a color management 3D LUT being set, so a separate dumb_mode field is required. The dumb-mode option can't just be overwritten.
* vo_opengl: switch FBO format on GLESwm42015-11-191-1/+2
| | | | | GL_RGB10_A2 is the best fixed-point format we can get on GLES/ANGLE for now. (Unless we somehow switch to non-normalized integer textures.)
* x11: request bypassing compositorwm42015-11-181-0/+4
| | | | | | | Maybe this is a good idea. Also add an option to disable it again, for the sake of testing. Fixes #2502.
* player: replace mistimed-frame-count with vsync-ratio on status linewm42015-11-181-5/+7
| | | | I think this is much more informative. Maybe.
* manpage: fix typo in vd-lavc-o exampleEllis Berner2015-11-181-1/+1
| | | `--vd--lavc-o becomes --vd-lavc-o`
* manpage: fix a typowm42015-11-181-1/+1
|
* input.conf: add default bindings for changing window scalewm42015-11-171-9/+5
| | | | | | These are very much inspired by the hardcoded Cocoa bindings on OSX. Fixes #2500.
* videotoolbox: make decoder format customizablewm42015-11-171-0/+8
| | | | | | | | | | Because apparently there's no ideal universally working format. The weird OpenGL texture format for kCVPixelFormatType_32BGRA is from: http://stackoverflow.com/questions/22077544/draw-an-iosurface-to-an-opengl-context (Which apparently got it from the linked Apple example code.)
* player: handle rebasing start time differentlywm42015-11-163-6/+24
| | | | | | | | | | | | | | | | Most of this is explained in the DOCS additions. This gives us slightly more sanity, because there is less interaction between the various parts. The goal is getting rid of the video_offset entirely. The simplification extends to the user API. In particular, we don't need to fix missing parts in the API, such as the lack for a seek command that seeks relatively to the start time. All these things are now transparent. (If someone really wants to know the real timestamps/start time, new properties would have to be added.)
* command: add vsync-ratio propertywm42015-11-132-0/+9
| | | | | | | | This is very "illustrative", unlike the video-speed-correction property, and thus useful. It can also be used to observe scheduling errors, which are not detected by the core. (These happen due to rounding errors; possibly not evne our fault, but coming from files with rounded timestamps and so on.)
* command: rename vo-missed-frame-count propertywm42015-11-132-7/+10
| | | | | | | | | "Missed" implies the frame was dropped, but what really happens is that the following frame will be shown later than intended (due to the current frame skipping a vsync). (As of this commit, this property is still inactive and always returns 0. See git blame for details.)
* win32: avoid detection as exclusive fullscreen windowMartin Herkt2015-11-131-0/+4
| | | | | | | | | | | | | | | | | Apparently Windows treats windows that use OpenGL, cover an entire screen and have the WS_POPUP style set or are topmost windows as exclusive fullscreen windows that bypass DWM and cannot be covered by other windows. This means we can’t use dwmflush in fullscreen mode, and it also means that no other window can cover mpv, and it makes the screen flicker when switching to fullscreen mode. This can be avoided by not setting the WS_POPUP flag. Users can still access the old behavior by enabling stay-on-top (which IMO at least makes sense—now we just need to get dwmflush autodetection right to avoid nasty surprises). fixes #2177
* vo_opengl_cb: make operation more similar to normal VOswm42015-11-092-21/+2
| | | | | | | | | | | | | | | | | | | | | vo_opengl_cb is a special case, because we somehow have to render video asynchronously, all while "trusting" the API user to do it correctly. This didn't quite work, and a while ago a compromise using a timeout to prevent theoretically possible deadlocks was added. Make it even more synchronous. Basically, go all the way, and synchronize rendering between VO and user renderer thread to the full extent possible. This means the silly frame queue is dropped, and we event attempt to synchronize the GL SwapBuffer call (via mpv_opengl_cb_report_flip()). The changes introduced with commit dc33eb56 are effectively dropped. I don't even remember if they mattered. In the future, we might make all VOs fetch asynchronously from a frame queue, which would mostly remove the differences between vo_opengl and vo_opengl_cb, but this will take a while (if it will even be done).
* command: make display-fps property writablewm42015-11-091-1/+1
| | | | | | | Has the same function as setting the option. This commit changes the property in a bunch of other ways. For example if the VO is not created, it will return the option value.
* vo_opengl: rename "drm_egl" to "drm-egl"wm42015-11-091-2/+2
|
* manpage: remove examples and authors sectionwm42015-11-081-46/+0
| | | | | | | | | The examples demonstrates use with optical media, which is far from mpv's main purpose. The authors section is a leftover from MPlayer times. There are enough other places which reiterate how mpv is based on mplayer2/MPlayer, copyright statements, and so on.
* manpage: slightly improve configuration files sectionwm42015-11-081-2/+3
| | | | | | | | Hint that the linked section contains information for Windows. (Well, that's a lie, but it has a link to the Windows section.) Avoid implying that lines in the config file end with ';'. Also, the <> are probably just confusing.
* vo_opengl: add DRM EGL backendrr-2015-11-081-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes: - Unfortunately the only way to talk to EGL from within DRM I could find involves linking with GBM (generic buffer management for Mesa.) Because of this, I'm pretty sure it won't work with proprietary NVidia drivers, but then again, last time I checked NVidia didn't offer proper screen resolution for VT. - VT switching doesn't seem to work at all. It's worth mentioning that using vo_drm before introduction of VT switcher had an anomaly where user could switch to another VT and input text to it, while video played on top of that VT. However, that isn't the case with drm_egl: I can't switch to other VT during playback like this. This makes me think that it's either a limitation coming from my firmware or from EGL/KMS itself rather than a bug with my code. Nonetheless, I still left (untestable) VT switching code in place, in case it's useful to someone else. - The mode_id, connector_id and device_path should be configurable for power users and people who wish to watch videos on nonprimary screen. Unfortunately I didn't see anything that would allow OpenGL backends to register their own set of options. At the same time, adding them to global namespace is pointless. - A few dozens of lines could be shared with vo_drm (setting up VT switching, most of code behind page flipping). I don't have any strong opinion on this. - Sometimes I get minor visual glitches. I'm not sure if there's a race condition of some sort, unitialized variable (doubtful), or if it's buggy driver. (I'm using integrated Intel HD Graphics 4400 with Mesa) - .config and .control are very minimal. Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: rename fancy-downscaling to correct-downscalingwm42015-11-071-2/+2
| | | | The old name was stupid. Very stupid.
* vo_opengl: fancy-downscaling: enable also for anamorphic clipsAvi Halachmi (:avih)2015-11-071-3/+3
|
* demux_mkv: remove --demuxer-mkv-fix-timestampswm42015-11-071-12/+0
| | | | | | | | While it seemed like a pretty good idea at first, it's just a dead end and works only in the simplest cases. While it may or may not help slightly with audio sync mode, the display-sync mode already compensates this in a better way. The main issue is that timestamps at this layer are not in order, so it can look at single timestamps only.
* ao_jack: remove "alsa" std-channel-layout choicewm42015-11-071-6/+3
| | | | | Same deal as with previous commit. "waveext" is less arbitrary and at least supports 3/7 channels.
* vo_opengl: implement NNEDI3 prescalerBin Jin2015-11-051-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement NNEDI3, a neural network based deinterlacer. The shader is reimplemented in GLSL and supports both 8x4 and 8x6 sampling window now. This allows the shader to be licensed under LGPL2.1 so that it can be used in mpv. The current implementation supports uploading the NN weights (up to 51kb with placebo setting) in two different way, via uniform buffer object or hard coding into shader source. UBO requires OpenGL 3.1, which only guarantee 16kb per block. But I find that 64kb seems to be a default setting for recent card/driver (which nnedi3 is targeting), so I think we're fine here (with default nnedi3 setting the size of weights is 9kb). Hard-coding into shader requires OpenGL 3.3, for the "intBitsToFloat()" built-in function. This is necessary to precisely represent these weights in GLSL. I tried several human readable floating point number format (with really high precision as for single precision float), but for some reason they are not working nicely, bad pixels (with NaN value) could be produced with some weights set. We could also add support to upload these weights with texture, just for compatibility reason (etc. upscaling a still image with a low end graphics card). But as I tested, it's rather slow even with 1D texture (we probably had to use 2D texture due to dimension size limitation). Since there is always better choice to do NNEDI3 upscaling for still image (vapoursynth plugin), it's not implemented in this commit. If this turns out to be a popular demand from the user, it should be easy to add it later. For those who wants to optimize the performance a bit further, the bottleneck seems to be: 1. overhead to upload and access these weights, (in particular, the shader code will be regenerated for each frame, it's on CPU though). 2. "dot()" performance in the main loop. 3. "exp()" performance in the main loop, there are various fast implementation with some bit tricks (probably with the help of the intBitsToFloat function). The code is tested with nvidia card and driver (355.11), on Linux. Closes #2230
* vo_opengl: add Super-xBR filter for upscalingBin Jin2015-11-051-0/+38
| | | | | | | | | | | Add the Super-xBR filter for image doubling, and the prescaling framework to support it. The shader code was ported from MPDN extensions project, with modification to process luma only. This commit is largely inspired by code from #2266, with `gl_transform_trans()` authored by @haasn taken directly.
* options: enable mpeg2 hw decoding by default if hw decoding is requestedwm42015-11-051-3/+3
| | | | | We didn't include this codec in the whitelist because of past problems with vdpau and interlacing. (I can't reproduce any problems anymore.)
* vd_lavc: make hwdec fallback more tolerantwm42015-11-031-2/+3
| | | | | | | | | | | | A hw decoder might fail to decode a frame for multiple reasons, and not always just because decoding is impossible. We can't generally distinguish these reasons well. Make it more tolerant by accepting failures of 3 frames, but not more. The threshold can be adjusted by the repurposed --vd-lavc-software-fallback option. (This behavior was suggested much earlier in some PR, but at the time the "proper" hwdec fallback was indistinguishable from decoding error. With the current situation, "proper" fallback is still instantious.)
* vo_opengl: win32: try to enable DwmFlush by defaultwm42015-11-011-2/+6
| | | | | | | | | | | | | | Enable it by default, but not unconditionally. Add an "auto" mode, which disable DwmFlush if the compositor is (probably) inactive. Let's see how this goes. Since I accidentally enabled DwmFlush always by default (more or less) in a previous commit touching this code, this is probably mostly just cargo-culting, and it's uncertain whether it does anything. Note that I still got bad vsync behavior when fullscreening mpv, and making another window visible on the same screen. This happens even if forcing DWM.
* vo_opengl: add vsync-fences optionwm42015-10-301-0/+9
| | | | | | | | | | | | | | | | | | | | | | Yet another relatively useless option that tries to make OpenGL's sync behavior somewhat sane. The results are not too encouraging. With a value of 1, vsync jitter is gone on nVidia, but there are frame drops (less than with glfinish). With 2, I get the usual vsync jitter _and_ frame drops. There's still some hope that it might prevent too deep queuing with some GPUs, I guess. The timeout for the wait call is 1 second. The value is pretty arbitrary; it should just not be too high to freeze the process (if the GPU is un-nice), and not too low to trigger the timeout in normal cases, even if the GPU load is very high. So I guess 1 second is ok as a timeout. The idea to use fences this way to control the queue depth was stolen from RetroArch: https://github.com/libretro/RetroArch/blob/df01279cf318e7ec90ace039d60515296e3de908/gfx/drivers/gl.c#L1856
* command: add mistimed-frame-count propertywm42015-10-301-0/+8
| | | | | Does what the manpage says. This is a replacement incrementing the dropped frame counter (see previous commit).
* manpage: briefly mention libmpvwm42015-10-301-0/+9
|
* manpage: extend profile documentationwm42015-10-291-1/+39
|
* player: add audio drop/duplicate modewm42015-10-271-0/+12
| | | | Not very robust in the moment.
* vd_lavc: make software decoding fallback an optionRodger Combs2015-10-251-0/+4
|
* options: remove --use-text-osdwm42015-10-242-11/+2
|
* vo_opengl: make the default debanding settings less excessiveNiklas Haas2015-10-211-6/+6
| | | | | | | | | It's great that the new algorithm supports multiple placebo iterations and all, but it's really not necessary and hurts performance in the general case for the sake of the 0.1% that actually pause the screen and look for minute differences. Signed-off-by: wm4 <wm4@nowhere>
* options: add support for client certificate authenticationJoschka Tillmanns2015-10-201-0/+7
| | | | | | | | Client certificates are supported by ffmpeg as documented here: > https://www.ffmpeg.org/ffmpeg-protocols.html#tls Signed-off-by: wm4 <wm4@nowhere>
* command: make time properties unavailable if timestamp is unknownwm42015-10-161-0/+4
| | | | | | Let's hope this doesn't confuse client API users too much. It's still the best solution to get rid of corner cases where it actually return the wrong timestamp on start, and then suddenly jump.
* DOCS/client_api_examples/README: add qt_openglwm42015-10-111-10/+16
| | | | | | | And also adjust the documentation for the other Qt examples to avoid redundancy. While we're at it, move the simple example to the top.
* DOCS/client_api_examples/qt_opengl: fix uninitwm42015-10-111-0/+1
| | | | | | | | | | | | | | | | | mpv_opengl_cb_uninit_gl() still needs the OpenGL context. It makes calls to free OpenGL objects. Strictly speaking, this is probably unnecessary, because the OpenGL context is destroyed afterwards (implicitly freeing all related objects). But mpv_opengl_cb_uninit_gl() does not require the destruction of the OpenGL context, and thus has to free resources manually. It's also true that OpenGL normally simply ignores API calls (or returns errors) if no context is set, but doing it properly is cleaner. That makeCurrent() can be called in the destructor is explicitly allowed and recommended for freeing GL resources in the Qt docs. This fixes a mpv error message on exit.
* DOCS/client_api_examples: add qt widget + opengl-cb examplewang-bin2015-10-116-0/+272
|
* ytdl: Remove DASH hacks, use DASH by defaultChrisK22015-10-111-5/+2
| | | | | | | | | | | Thanks to rcombs, ffmpeg now properly supports DASH and we can remove our hacks for it and use it by default whenever available. If you don't like this for whatever reason, you can get the "normal" streams back with --ytdl-format=best . Closes #579 Closes #1321 Closes #2359
* DOCS/client_api_examples/README: rewritewm42015-10-101-17/+90
| | | | | | The new one is much more detailed. Also add part of it to the libmpv doxygen.
* manpage: font options do not support fontconfig patterns anymorewm42015-10-091-2/+5
| | | | | | libass 0.13.0 breaks this due to removal of fontconfig from its core (instead, fontconfig is one possible backend, and pattern lookup is apparently not possible anymore).
* video: remove user-controllable PTS sorting (--pts-association-mode)wm42015-10-062-17/+0
| | | | | | | | | Useless. Sometimes it might be useful to make some extremely broken files work, but on the other hand --no-correct-pts is sufficient for these cases. While we still need some of the code for AVI, the "auto" mode in particular inflated the size of the code.
* audio: add option for falling back to ao_nullwm42015-10-052-0/+9
| | | | | | | | | The manpage entry explains this. (Maybe this option could be always enabled and removed. I don't quite remember what valid use-cases there are for just disabling audio entirely, other than that this is also needed for audio decoder init failure.)
* manpage: edit recommended VO remarkswm42015-10-041-7/+4
|
* Revert "vo_x11: remove this video output"wm42015-09-301-0/+6
| | | | | | | | | | | | | | | This reverts commit d11184a256ed709a03fa94a4e3940eed1b76d76f. Unfortunately, there was a lot of unexpected resistance. Do note that this is still extremely slow, crappy, etc. Note that vo_x11.c was further edited. Compared to the removed vo_x11.c, an additional ~200 lines of code was removed in order to simplify it. I tried to strip it down as much as possible. In particular, support for odd non-32 bit formats (24, 16, 15, 8 bit) is dropped. Closes #2300.
* manpage: adjustments to hwdec remarkswm42015-09-291-3/+9
|
* video: replace vf_format outputlevels option with global optionwm42015-09-294-22/+24
| | | | | | | | | | | The vf_format suboption is replaced with --video-output-levels (a global option and property). In particular, the parameter is removed from mp_image_params. The mechanism is moved to the "video equalizer", which also handles common video output customization like brightness and contrast controls. The new code is slightly cleaner, and the top-level option is slightly more user-friendly than as vf_format sub-option.
* video: remove VDA supportwm42015-09-281-1/+0
| | | | | | | | | VideoToolbox is preferred. Now that FFmpeg released 2.8, there's no reason to support VDA anymore. In fact, we had a bug that made VDA not useable with older FFmpeg versions in some newer mpv releases. VideoToolbox is supported even on slightly older OSX versions, and if not, you still can run mpv without hw decoding.
* manpage: fix broken examplewm42015-09-271-1/+1
| | | | Fixes #2353.
* client API: rename GL_MP_D3D_interfaceswm42015-09-241-0/+5
| | | | | | | | | | | | | This is a pseudo-OpenGL extension for letting libmpv query native windowing system handles from the API user. (It uses the OpenGL extension mechanism because I'm lazy. In theory it would be nicer to let the user pass them with mpv_opengl_cb_init_gl(), but this would require a more intrusive API change to extend its argument list.) The naming of the extension and associated function was unnecessarily Windows specific (using "D3D"), even though it would work just fine for other platforms. So deprecate the old names and introduce new ones. The old ones still work.
* vo_opengl: remove sharpen scalers, add sharpen sub-optionwm42015-09-233-7/+15
| | | | | | | | | | | | This turns the old scalers (inherited from MPlayer) into a pre- processing step (after color conversion and before scaling). The code for the "sharpen5" scaler is reused for this. The main reason MPlayer implemented this as scalers was perhaps because FBOs were too expensive, and making it a scaler allowed to implement this in 1 pass. But unsharp masking is not really a scaler, and I would guess the result is more like combining bilinear scaling and unsharp masking.
* DOCS: update client API changes for releaseMartin Herkt2015-09-231-1/+1
|
* DOCS: update release policyMartin Herkt2015-09-231-27/+69
|
* manpage: add a note about libavfilterwm42015-09-112-0/+8
|
* video/filter: remove some vf_lavfi wrapperswm42015-09-111-68/+0
| | | | | | | | | | | | | | | | I see no point in keeping these around. Keeping wrappers for some select libavfilter filters just because MPlayer had these filters is not a good reason. Ultimately, all real filtering work should go to libavfilter, and users should get used to using vf_lavfi directly. We might even not require the awful double-nested syntax for using libavfilter one day. vf_rotate, vf_yadif, vf_stereo3d are kept because mpv uses them internally. (They all extend the lavfi filters or change their defaults.) vf_mirror is kept for symmetry with vf_flip. vf_gradfun and vf_pullup are probably semi-popular, so I'll remove them not yet - only after some more discussion.
* af_lavfi: implement af-metadata propertywm42015-09-112-0/+5
| | | | | | | Works like vf-metadata. Unfortunately requires some code duplication (even though it's not much). Fixes #2311.
* video: make --field-dominance set interlaced flagKevin Mitchell2015-09-101-0/+4
| | | | fixes #2289
* cache: do not include backbuffer size in total stream cache sizewm42015-09-101-1/+3
| | | | | | | | | This causes weirdness with the "cache-size" property and option. Only the read handler of the property included the backbuffer, while all others did not. Make it consistent, and subtract the backbuffer size from the cache size. Fixes #2305.
* DOCS: cleanup API changes version markerswm42015-09-102-10/+11
| | | | | | Make it so that they don't need to be edited on release (no change in tense). Also, move the "stray" changes after client API version 1.19 to 1.19 itself.
* vo_opengl: implement debanding (and remove source-shader)Niklas Haas2015-09-091-14/+33
| | | | | | | | | | The removal of source-shader is a side effect, since this effectively replaces it - and the video-reading code has been significantly restructured to make more sense and be more readable. This means users no longer have to constantly download and maintain a separate deband.glsl installation alongside mpv, which was the only real use case for source-shader that we found either way.
* af_lavrresample: add normalize suboptionwm42015-09-081-0/+7
|
* vo_opengl: restore single pass optimization as separate code pathwm42015-09-071-1/+14
| | | | | | | | | | | | | | | | | | | | | | The single path optimization, rendering the video in one shader pass and without FBO indirections, was removed soem commits ago. It didn't have a place in this code, and caused considerable complexity and maintenance issues. On the other hand, it still has some worth, such as for use with extremely crappy hardware (GLES only or OpenGL 2.1 without FBO extension). Ideally, these use cases would be handled by a separate VO (say, vo_gles). While cleaner, this would still cause code duplication and other complexity. The third option is making the single-pass optimization a completely separate code path, with most vo_opengl features disabled. While this does duplicate some functionality (such as "unpacking" the video data from textures), it's also relatively unintrusive, and the high quality code path doesn't need to take it into account at all. On another positive node, this "dumb-mode" could be forced in other cases where OpenGL 2.1 is not enough, and where we don't want to care about versions this old.
* vo_opengl: require FBOs and get rid of the single-pass optimizationNiklas Haas2015-09-071-9/+8
| | | | | | | This change makes vo_opengl slightly less compatible (ancient devices without FBOs will no longer work) and decreases performance in the simplest case (vo=opengl), in exchange for significantly reducing code complexity and making everything easier to reason about.
* DOCS/client_api_examples/sdl: make the window resizablewm42015-09-041-1/+2
|
* audio/filter: remove af_bs2b toowm42015-09-041-22/+0
| | | | | | | Some users still use this filter, so the filter was going to be kept. But I overlooked that libavfilter provides this filter. Remove the redundant wrapper from mpv. Something like --af=lavfi=bs2b should work and give exactly the same results.
* audio/filter: remove some useless filterswm42015-09-031-158/+0
| | | | | | | | | | | | | | | | | | | | | | | | All of these filters are considered not useful anymore by us. Some have replacements in libavfilter (useable through af_lavfi). af_center, af_extrastereo, af_karaoke, af_sinesuppress, af_sub, af_surround, af_sweep: pretty simple and useless filters which probably nobody ever wants. af_ladspa: has a replacement in libavfilter. af_hrtf: the algorithm doesn't work properly on most sources, and the implementation was buggy and complicated. (The filter was inherited from MPlayer; but even in mpv times we had to apply fixes that fixed major issues with added noise.) There is a ladspa filter if you still want to use it. af_export: I'm not even sure what this is supposed to do. Possibly it was meant for GUIs rendering audio visualizations, but it couldn't really work well. For example, the size of the audio depended on the samplerate (fixed number of samples only), and it couldn't retrieve the complete audio, only fragments. If this is really needed for GUIs, mpv should add native visualization, or a proper API for it.
* manpage: fix typowm42015-09-031-1/+1
| | | | Fixes #2279.
* vo_opengl: enable pbo by default with opengl-hqwm42015-09-021-1/+1
| | | | | | | | | Can significantly help with very large video resolutions on nvidia drivers. It doesn't seem to have negative effects on Intel drivers either. (Although it could have on Intel drivers for older hardware.) For now, this is only for --vo=opengl-hq. Maybe --vo=opengl should use it too, but it's still meant to be the crappy, fail-safe default.
* video: make container vs. bitstream aspect ratio configurablewm42015-08-302-0/+18
| | | | | | Utterly idiotic bullshit. Fixes #2259.
* player: add --playlist-pos optionwm42015-08-222-0/+12
| | | | Oddly often requested.
* docs: correct typo for 'ingore-chmap'Ellis Berner2015-08-221-1/+1
| | | | ingore-chmap -> ignore-chmap
* command: make the playback-time property writablewm42015-08-211-2/+4
| | | | | | | Provides a simplistic way to seek without having to care about weird situations like timestamp vs. playback time. This is good, because the seek command is currently timestamp based, so when using the seek command the user _does_ have to care.
* vo_opengl: add tscale-clamp optionNiklas Haas2015-08-201-0/+6
| | | | | | | | | | This significantly reduces the amount of noticeable flashing when using tscale kernels with negative lobes, by cutting them off completely. I'm not sure if this has any negative effects. It needs a bit of subjective testing over a period of time, so I just made it an option. Fixes #2155.
* vo_rpi: disable background by defaultwm42015-08-201-0/+5
| | | | And add an option to enable it.
* manpage: fix typowm42015-08-181-1/+1
| | | | Actually, this was unintentionally changed in commit 70e0bc1e.
* DOCS/client_api_examples/sdl: don't curse the mainloopwm42015-08-171-2/+2
| | | | Fix a typo, and also reword another comment.
* DOCS/client_api_examples/sdl: add more explanation commentswm42015-08-121-1/+21
|
* player: use OSD formattin for DS on the terminal status linewm42015-08-121-3/+4
|
* DOCS/client_api_examples/sdl: don't load file before GL initwm42015-08-111-4/+4
| | | | Could lead to failure because it's essentially a race condition.
* DOCS/client_api_examples: add SDL OpenGL examplewm42015-08-112-0/+142
|
* manpage: fix typowm42015-08-111-1/+1
|
* player: add display sync modewm42015-08-104-1/+83
| | | | | | | | | | | | | | | | | | | | | | | | If this mode is enabled, the player tries to strictly synchronize video to display refresh. It will adjust playback speed to match the display, so if you play 23.976 fps video on a 24 Hz screen, playback speed is increased by approximately 1/1000. Audio wll be resampled to keep up with playback. This is different from the default sync mode, which will sync video to audio, with the consequence that video might skip or repeat a frame once in a while to make video keep up with audio. This is still unpolished. There are some major problems as well; in particular, mkv VFR files won't work well. The reason is that Matroska is terrible and rounds timestamps to milliseconds. This makes it rather hard to guess the framerate of a section of video that is playing. We could probably fix this by just accepting jittery timestamps (instead of explicitly disabling the sync code in this case), but I'm not ready to accept such a solution yet. Another issue is that we are extremely reliant on OS video and audio APIs working in an expected manner, which of course is not too often the case. Consequently, the new sync mode is a bit fragile.
* player: separate controls for user and video controlled speedwm42015-08-102-0/+5
| | | | | | | | | | For video sync, we want separate playback speed controls for user- requested speed and the "correction" speed for video timing. Further, we use this separation to make sure only a resampler is inserted if playback speed is only changed for video sync correction. As of this commit, this is basically inactive code. It's just preparation for the video sync code (the following commit).
* demux_mkv: disable timestamp fixup code againwm42015-08-101-1/+1
| | | | | | | | | | | | This doesn't work too well if sections of the file change to a different framerate. It lowers our chances to guess the correct FPS in the display sync code. For normal playback, this (probably) doesn't help that much anyway, except that the "estimated-vf-fps" property will regress in the simplest mkv case. This will be fixed with the next commit. The now disabled code will probably be removed; it's not useful anymore.
* manpage: document videotoolbox supportwm42015-08-081-0/+1
|
* manpage: use - as separator for the remaining commandswm42015-08-061-22/+22
| | | | | See commit 289705da. These manpage parts were just forgotten when updating the command descriptions.
* lua: implement input_enable_section/input_disable_section via commandswm42015-08-061-4/+13
| | | | | | | | | | | | | | | Removes some more internal API calls from the Lua scripting backend. Which is good, because ideally the scripting backend would use libmpv functions only. One awkwardness is that mouse sections are still not supported by the public commands (and probably will never), so flags like allow-hide- cursor make no sense to an outside user. Also, the way flags are passed to the Lua function changes. But that's ok, because they're only undocumented internal functions, and not supposed to be used by script users. osc.lua only does due to historical reasons.
* command: define-section with empty contents removes a sectionwm42015-08-061-0/+2
|
* command: add a command for defining input bindingswm42015-08-061-0/+20
| | | | | | This was requested. It was more or less present internally already and used for Lua scripting. Lua will switch to the "public" functions in the following commits.
* demux: add options to control maximum queue sizewm42015-08-052-0/+16
| | | | | | | | | | | | | | Add --demuxer-max-packets and --demuxer-max-bytes, which control the maximum size of the packet queue. These can be helpful to avoid excessive memory usage. Memory usage is the reason why there's a limit in the first place. If a file is more or less broken, and audio and video don't line up, the decoders will fill up the packet queue trying to read more audio or video, and the maximum sizes are required to avoid unbounded memory allocation. Being able to override the maximum sizes is useful; either for restricting memory usage further, or enlarging the sizes when attempting to play various broken files.
* demux: remove options to control minimum packet queue sizewm42015-08-052-15/+1
| | | | | | | | Remove --demuxer-readahead-packets and --demuxer-readahead-bytes. These were a bit useless. They could force a minimum packet queue size, but controlling the queue size with --demuxer-readahead-secs is much nicer. It's fairly certain nobody ever used these options.
* DOCS: document video-aspect behavior changewm42015-08-051-0/+3
| | | | Forgotten in commit ae2f8fd0.
* charset_conv: "auto" encoding detection now uses uchardet.Jehan2015-08-041-4/+5
| | | | | If mpv is not built with uchardet, "enca" is still the fallback default encoding detection.
* input.conf: remap d/D keyswm42015-08-041-5/+1
| | | | | | | | | | Drop d for toggling framedrop. Toggling this is way too special to be at such a prominent place, and in fact I believe toggling it is pointless. Remap deinterlacing from D to d. It's relatively useful and non- destructive. As suggested in #973 (almost).
* player: remove higher-level remains of DVD/BD menu supportwm42015-08-032-22/+1
| | | | | | | | | | | | | | | Nobody wanted to restore this, so it gets the boot. If anyone still wants to volunteer to restore menu support, this would be welcome. (I might even try it myself if I feel masochistic and like wasting a lot of time for nothing.) But if it does get restored, it should be done differently. There were many stupid things about how it was done. For example, it somehow tried to pull mp_nav_events through all the layers (including needing to "buffer" them in the demuxer), which was needlessly complicated. It could be done simpler. This code was already inactive, so this commit actually changes nothing. Also keep in mind that normal DVD/BD playback still works.
* charset_conv: add uchardet supportwm42015-08-021-0/+6
| | | | | | | | | | | | | | For now, it needs to be explicitly selected. ENCA is still the default. This assumes uchardet returns iconv names. This doesn't seem to be always the case, and the result are lots of iconv errors. So explicitly check for this situation, and print a warning if it occurs. It's entirely possible that uchardet support is actually useless, because names are not necessarily iconv-compatible (but uchardet doesn't seem to document whether it attempts to return iconv-compatible names if possible). Fixes #908.
* win32: add portable config modewm42015-07-271-0/+8
| | | | | | | | | | | See manpage additions. The main reason for adding this is that we can't guess whether the user wants his config in his Windows profile or not. The user basically has to tell mpv what should be done, and the "portable_config" directory does this implicitly. Fixes #2042 (approximately).
* manpage: document --audio-channels=auto caveatswm42015-07-251-0/+8
| | | | | | | This is an unfortunate fact of life. Maybe making this the default wasn't such a good idea after all. Also update etc/example.conf. It used an obsolete alias for "auto".
* Require contributions in LGPLv2.1+wm42015-07-241-0/+3
| | | | | | | | | | | As suggested in #2033. Additionally, change "LGPLv2+" to "LGPLv2.1+". Since this was always used with the "and later" phrase, this doesn't require any further discussion. Also clarify that the "+" means "or later". This should be clear to anyone with a brain, but you never know with copyright.
* command: add property indicating per-file optionswm42015-07-232-0/+7
| | | | Fixes #2165, more or less.
* video: don't restrict --vd-lavc-threads to a maximum of 16wm42015-07-231-3/+4
| | | | | | Only do it when the number of threads is autodetected, as more than 16 threads are still considered not recommended. (libavcodec prints a warning.)
* manpage: fix typowm42015-07-231-1/+1
|
* cache: make backbuffer size configurablewm42015-07-222-5/+14
| | | | | | | | | | Allow setting an arbitrary amount, instead of the fixed 50%. This is nto striclty backwards compatible. The defaults don't change, but the --cache/--cache-default options now set the readahead portion. So in practice, users who configured this until now will see the double amount of cache being used, _plus_ the 75MB default backbuffer will be in use.
* vo_opengl: add temporal-dither-period optionNiklas Haas2015-07-201-0/+5
| | | | | This was requested multiple times by users, and it's not hard to implement and/or maintain.
* command: add track-list/N/audio-channels propertydeuiore2015-07-182-0/+6
| | | | | | Signed-off-by: wm4 <wm4@nowhere> (With some heavy modifications from the original patch.)
* screenshot: don't write PNG colorspace tags by defaultwm42015-07-182-1/+2
| | | | | | Generates too much discussion and confusion. Fixes #2051.
* sub: add option for stretching image subtitles to screenwm42015-07-182-0/+13
| | | | | | | Probably makes users happy who want bitmap subtitles to show up in the screen margins, and stops them from doing idiotic crap with vf_expand. Fixes #2098.
* manpage: fix typowm42015-07-131-1/+1
| | | | The (...) was closed, but never opened.
* player: extend --hls-bitrate optionwm42015-07-131-1/+4
| | | | Fixes #2116.
* player: use exit code 0 by default for quit, 4 for signals, etc.Philip Sequeira2015-07-111-1/+2
| | | | | | Default key bindings in encoding mode also use code 4, because scripts will probably want to fail if encoding is aborted (leaving an incomplete file).
* vo_opengl: reimplement tscale=oversampleNiklas Haas2015-07-111-1/+1
| | | | Closes #2102.
* vf_vdpaurb: Add a new filter for reading back vdpau decoded framesPhilip Langdale2015-07-111-0/+7
| | | | | | | | | | | | | | | | | Normally, vdpau decoded frames are passed directly to a suitable vo (vo_vdpau or vo_opengl) without ever touching system memory. This is efficient for output purposes, but prevents any of the regular filters from being used with such frames. This new filter implements a read-back step to pull the frames back into system memory where they can be acted on by other filters. Eventually the frames will be sent to the vo as if they were normal software-decoded frames. Note that a vdpau compatible vo must still be used to ensure that the decoder is properly initialised. Signed-off-by: wm4 <wm4@nowhere>
* player: parse and expose m3u playlist titleswm42015-07-102-0/+7
| | | | Requested. Closes #2100.
* video: add a way to disable automatic stereo conversionwm42015-07-102-3/+4
| | | | Fixes #2111.
* demux_mkv: improve video duration detection heuristicwm42015-07-091-1/+6
| | | | | | | | | | | Extend the --demuxer-mkv-probe-video-duration behavior to work with files that are partial and are missing an index. Do this by finding a cluster 10MB before the end of the file, and if that fails, just read the entire file. This is actually pretty trivial to do and requires only 5 lines of code. Also add a mode that always reads the entire file to estimate the video duration.
* stream_file: add fd:// protocolwm42015-07-091-0/+5
|
* player: disable seeking even if the cache is enabledwm42015-07-082-0/+6
| | | | | | | | | | | | | | Until now, if a stream wasn't seekable, but the stream cache was enabled (--cache), we've enabled seeking anyway. The idea was that at least short seeks would typically fall within the cache. And if not, the user was out of luck and terrible things happened. In other words, it was unreliable. Be stricter about it and remove this behavior. Effectively, this will for example disable seeking in piped data. Instead of trying to be clever, add an --force-seekable option, which will always enable seeking if the user really wants it.
* vf_vdpaupp: don't attempt to deinterlace progressive frameswm42015-07-082-1/+5
|
* vf_vavpp: don't attempt to deinterlace progressive frameswm42015-07-082-0/+5
|
* command: make deinterlace property use interlaced-only yadif modewm42015-07-071-1/+2
|
* vf_yadif: expose interlaced frame modewm42015-07-071-5/+4
| | | | | Also remove the enabled suboption, which did nothing. (It was probably broken at some point.)
* vo_opengl_cb, vo_opengl: add option for preloading hwdec contextwm42015-07-072-0/+17
| | | | | | | | See manpage additions. This is mainly useful for vo_opengl_cb, but can also be applied to vo_opengl. On a side note, gl_hwdec_load_api() should stop using a name string, and instead always use the IDs. This should be cleaned up another time.
* ipc: add request_id to jsonPreston Hunt2015-07-031-0/+18
| | | | | | | | | | | | If the request contains a "request_id", copy it back into the response. There is no interpretation of the request_id value by mpv; the only purpose is to make it easier on the requester by providing an ability to match up responses with requests. Because the IPC mechanism sends events continously, it's possible for the response to a request to arrive several events after the request was made. This can make it very difficult on the requester to determine which response goes to which request.
* manpage: fix dwmflush parameterwm42015-07-031-1/+2
|
* ao_coreaudio: add exclusive suboptionwm42015-07-032-0/+6
|
* ao_coreaudio_exclusive: support PCMwm42015-07-031-2/+0
| | | | | | | | | | | | | | | | | | Until now, this was for AC3 only. For PCM, we used AudioUnit in ao_coreaudio, and the only reason ao_coreaudio_exclusive exists is that there is no other way to passthrough AC3. PCM support is actually rather simple. The most complicated issue is that modern OS X versions actually do not support copying through the data; instead everything must go through float. So we have to deal with virtual and physical format being different, which causes some complications. This possibly also doesn't support some other things correctly. For one, if the device allows non-interleaved output only, we will probably fail. (I couldn't test it, so I don't even know what is required. Supporting it would probably be rather simple, and we already do it with AudioUnit.)
* client API, dxva2: add a workaround for OpenGL fullscreen issueswm42015-07-031-0/+2
| | | | | | | | | This is basically a hack for drivers which prevent the mpv DXVA2 decoder glue from working if OpenGL is in fullscreen mode. Since it doesn't add any "hard" new API to the client API, some of the code would be required for a true zero-copy hw decoding pipeline, and sine it isn't too much code after all, this is probably acceptable.
* vo_opengl: adjust interpolation code for the new video-sync mechanismNiklas Haas2015-07-011-5/+4
| | | | | | | | | | | | | This should make interpolation work much better in general, although there still might be some side effects for unusual framerates (eg. 35 Hz or 48 Hz). Most of the common framerates are tested and working fine. (24 Hz, 30 Hz, 60 Hz) The new code doesn't have support for oversample yet, so it's been removed (and will most likely be reimplemented in a cleaner way if there's enough demand). I would recommend using something like robidoux or mitchell instead of oversample, though - they're much smoother for the common cases.
* manpage: fix copy&paste mistakeswm42015-06-301-22/+20
| | | | | | | These are definitely not per-track. (Maybe we should just provide a script or such which pretty-prints "native" property output.
* DOCS/man: fix some grammar errorsDaniel Bergmann2015-06-293-4/+4
| | | | Signed-off-by: wm4 <wm4@nowhere>
* DOCS: fix recent typoswm42015-06-282-2/+2
| | | | Pointed out by a certain wiiaboo.
* demux: export forced flagwm42015-06-272-0/+6
| | | | | | At least Matroska files have a "forced" flag (in addition to the "default" flag). Export this flag. Treat it almost like the default flag, but with slightly higher priority.
* subprocess, lua: export whether the process was killed by uswm42015-06-271-0/+4
| | | | | | | | We want to distinguish actual errors, and just aborting the program intentionally. Also be a bit more careful with handling the wait() exit status: do not called WEXITSTATUS() without checking WIFEXITED() first.
* Disable DVD and BD menu support (to be removed)wm42015-06-262-7/+3
| | | | | | | | | | | | | | | | | | DVD/BD menu support never worked right, and are a pain to maintain. In particular, DVD menus never actually worked correctly, because highlights were not rendered correctly. Fixing this requires major effort, which I'm not interested to spend. Most importantly, the requirement to switch streams without losing the DVD/BD state caused major weirdness in the playback core. It was implemented by somehow syncing the playback state to the DVD/BD implementation (in stream_dvdnav.c etc.), and then reloading the demuxer without destroying and recreating the stream. This caused a bunch of special-cases which I'm looking forward to remove. For now, don't just remove everything related to menu support and just disable it. If someone volunteers, it can be restored (i.e. rewritten) in a reasonable way. If nobody volunteers soon, it goes.
* DOCS/mplayer-changes: Add removal of X11 vorrooij2015-06-261-0/+2
| | | | | | The X11 video output was removed recently and is a difference from mplayer. That's why it should be documented in the mplayer-changes document.
* vo_x11: remove this video outputwm42015-06-261-6/+0
| | | | | | | It only causes additional maintenance work. Even if you wanted to have a fallback, it's probably better to use --vo=sdl or so.
* audio: output human-readable channel layouts toowm42015-06-252-0/+7
| | | | | This gets you the "logical" channel layout, instead of the exact thing we're sending to the AO. (Tired of the cryptic shit ALSA gives me.)
* DOCS: document some recent interface additionswm42015-06-241-0/+2
|
* manpage: Fix typo. oacopts -> ovcoptsc_142015-06-231-1/+1
|
* manpage: minor fixeswm42015-06-231-1/+2
|
* command: export stereo 3D tagswm42015-06-231-0/+3
| | | | Fixes #2066.
* af_volume: add a replaygain fallback optionwm42015-06-231-0/+4
|
* client API: allow using msg-level option for log messageswm42015-06-201-0/+1
| | | | | | | | | | | | | | | | Client API users can enable log output with mpv_request_log_messages(). But you can enable only a single log level. This is normally enough, but the --msg-level option (which controls the terminal log level) provides more flexibility. Due to internal complexity, it would be hard to provide the same flexibility for each client API handle. But there's a simple way to achieve basically the same thing: add an option that sends log messages to the API handle, which would also be printed to the terminal as by --msg-level. The only change is that we don't disable this logic if the terminal is disabled. Instead we check for this before the message is output, which in theory can lower performance if messages are being spammed. It could be handled with some more effort, but the gain would be negligible.
* osc: time display configuration optionsTeoh Han Hui2015-06-191-0/+8
| | | | Total time and ms
* Various spelling fixesMarcin Kurczewski2015-06-184-6/+6
| | | | Signed-off-by: wm4 <wm4@nowhere>
* DOCS/compile-windows.md: fix Lua packagewm42015-06-181-1/+1
| | | | | mingw-w64-x86_64-lua maps to Lua 5.3, which we do not support. Change it to mingw-w64-x86_64-lua51.
* DOCS/manpage: fix typosrrooij2015-06-176-12/+12
| | | | | | | Fix some errors in the man pages by spell checking them. Most of them were typos. Signed-off-by: wm4 <wm4@nowhere>
* af_convert24: remove this filterwm42015-06-161-7/+0
|
* DOCS/compile-windows.md: drop unused dependencywm42015-06-161-1/+1
|
* lua: support MPV_END_FILE_REASON_REDIRECTwm42015-06-111-0/+10
| | | | And also add the missing "unknown" entry to the manpage.
* client API: add MPV_END_FILE_REASON_REDIRECTwm42015-06-111-0/+3
| | | | | Requested. Minor incompatible behavior change, as it was signalling MPV_END_FILE_REASON_EOF previously.
* lua: export end-file event fieldswm42015-06-111-0/+17
|
* command: add keypress, keydown, and keyup commands.torque2015-06-112-0/+18
| | | | | These commands are used to simulate keypresses using the key names from input.conf.
* player: use 4 as process exit code on user quitswm42015-06-101-0/+1
| | | | | | | | | | | | | So successful playback and user quit can be distinguished, for whatever reason you may want to do this. Normally, the "quit" command can be customized, but this does not work for quit commands sent by the terminal signal handler. One solution would be introducing something like "ON_SIGNAL" (equivalent to "CLOSE_WIN"), but considering there are a bunch of possible signals, I'd rather not get into this. So go with the dumb solution. Probably fixes #2029.
* audio: add --audio-spdif as new method for enabling passthroughwm42015-06-052-9/+30
| | | | | | | | | | | | | This provides a new method for enabling spdif passthrough. The old method via --ad (--ad=spdif:ac3 etc.) is deprecated. The deprecated method will probably stop working at some point. This also supports PCM fallback. One caveat is that it will lose at least 1 audio packet in doing so. (I don't care enough to prevent this.) (This is named after the old S/PDIF connector, because it uses the same underlying technology as far as the higher level protoco is concerned. Also, the user should be renamed that passthrough is backwards.)
* inpout.conf: make shift+o toggle between 2 states onlywm42015-06-031-1/+1
| | | | | | | | | | | | | The "osd" command cycles between 4 states (OSD level 0-3), which is probably confusing and inconvenient. OSD levels 0 and 2 are rarely needed. I would claim there is normally not much of a need to completely disable OSD by setting level 0 during playback. Level 2 is just slightly less information than level 3, and I'm not sure why it exists at all. Change it so that it toggles between level 3 and 1. Note that this ignores the default OSD level. If the default is 3, the first use of this key will set it to 3 again. Just assume 1 is the default. If someone complains, this could be improved.
* lua: fix options submodulewm42015-05-291-1/+1
| | | | | | | | | It polluted the global namespace, instead of exporting the function properly. For now, keep it compatible by explicitly keeping the bogus export. Also fix a mistake in the manpage example.
* vo_drm: Expose mode ID option to usersMarcin Kurczewski2015-05-281-0/+4
|
* command: remove deprecated get_property commandwm42015-05-272-1/+2
| | | | | | This command has been deprecated in the 0.8.x and 0.9.x releases - get rid of it. Its only point ever was MPlayer compatibility, which broke years ago anyway.
* options: remove --slave-brokenwm42015-05-273-22/+4
| | | | It has been deprecated for ages.
* DOCS: fix wrong libmpv's cocoa example commentStefano Pigozzi2015-05-271-4/+2
| | | | | libmpv can be embedded in a cocoa view (without the mpv window). This has been the case for serveral months, and the comment is just wrong now.
* DOCS: interface-changes: mention recent vo_opengl additionswm42015-05-271-0/+2
|
* vo_opengl: CMS no longer implies linear scalingNiklas Haas2015-05-271-10/+6
| | | | | | | | | | | They're completely orthogonal concepts, merged in the past due to convenience and ease of implementing it in the old #ifdef hell renderer. Especially after the CMS stuff was generalized by 634b4a, this was a trivial change to implement and also means color management will be much higher quality when enabled with vo=opengl (which had quantization issues in the past due to the 8 bit FBO format and upscaling), since it can be done in a single pass now.
* vo_opengl: icc-profile overrides icc-profile-autoNiklas Haas2015-05-271-2/+2
| | | | Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: add support for custom shadersNiklas Haas2015-05-271-2/+70
|
* input: allow - as separator between commands, instead of _wm42015-05-251-40/+40
| | | | | | | | | | Wnile it seems quite logical to me that commands use _ as word separator, while properties use -, I can't really explain the difference, and it tends to confuse users as well. So always prefer - as separator for everything. Using _ still works, and will probably forever. Not doing so would probably create too much chaos and confusion.
* command: change the hwdec propertieswm42015-05-252-19/+28
| | | | | | Another very minor step towards property/option unification. Not bothering with interface compatibility here.
* vf_dlopen: declare as deprecatedwm42015-05-251-0/+2
| | | | | Mostly to see whether someone uses it, and if a better solution can be worked out. (It's simple enough to be supported forever.)
* vo_null: add framerate emulationwm42015-05-241-0/+6
|
* manpage: --media-title -> --force-media-titlePhilip Sequeira2015-05-241-1/+1
| | | Missed in 450af053.
* DOCS/client_api_examples/cocoa-openglcb: do initial flush correctly.torque2015-05-231-11/+5
|
* command: add protocol-list propertywm42015-05-232-0/+7
| | | | Fixes #1972.
* command: deprecate audio-sampleratewm42015-05-222-7/+2
| | | | | | | Also replace their implementation with the recently introduced properties. One significant difference is that audio-channels using OSD formatting does not print the channel layout. The user can just use the replacement property instead.
* command: add audio-params and audio-out-params propertieswm42015-05-222-0/+37
|
* command: rename audio-format propertywm42015-05-222-3/+4
| | | | Clashes with the option.
* options: rename --media-title optionwm42015-05-221-0/+1
| | | | Conflicts with the property.
* command: deprecate the "length" propertywm42015-05-222-2/+6
| | | | It collides with the --length option.
* DOCS: add a changelog for option/command/property changeswm42015-05-222-3/+47
| | | | | All these make up both user interface and API. It's a good idea to actually keep track of changes to it.
* audio: make softvol scale cubicwm42015-05-221-5/+5
| | | | | | | | This brings the volume control closer to what is percepted as linear volume change. Adjust the --softvol-max default to roughly the old maximum (roughly doubles the gain).
* audio: change range of volume option/propertywm42015-05-222-15/+12
| | | | | | | | | Now --volume takes an absolute volume, meaning it doesn't depend on --softvol-max. 0 is still silence, and 100 now always means unchanged volume. The OSD and the "volume" property are changed accordingly. Also raise the minimum value of --softvol-max. A value below 100 makes no sense and breaks the OSD.
* DOCS/client_api_examples: cocoa: minor fixeswm42015-05-211-2/+2
| | | | | | | Cocoa needs to be linked explicitly. EXIT_SUCCESS is pretty pointless, and the same file uses exit(1) in other places.
* DOCS/client_api_examples: add opengl-cb-based cocoa example.torque2015-05-211-0/+310
| | | | Contains a basic toggle button that pauses the video.
* vo_opengl: remove npot optionwm42015-05-211-4/+0
| | | | Completely useless.
* DOCS/mplayer-changes: add relative seeking by %Robin2015-05-211-0/+1
| | | | Add relative seeking by percentage to mplayer-changes.rst
* vo_xv: make number of buffers configurablewm42015-05-201-0/+6
|
* manpage: fix syntaxwm42015-05-191-1/+1
| | | | | I guess this wasn't meant to be literal syntax, but it implies "," is used as sub-option separator.
* input: add relative percentage seekrrooij2015-05-191-1/+3
| | | | | | | | | | | Only absolute percentage seeking was permitted first. It is now also possible to seek by relative percentage. MPSEEK_FACTOR is used as seek_type. Fixes #1950. Signed-off-by: wm4 <wm4@nowhere>
* command: add playlist_shuffle commandwm42015-05-171-0/+4
| | | | Fixes #965.
* input.conf: add CTRL+s key binding for window screenshotswm42015-05-171-0/+4
|
* manpage: improve osc helpAvi Halachmi (:avih)2015-05-161-10/+11
| | | | Signed-off-by: wm4 <wm4@nowhere>
* DOCS/client_api_examples: Qt: force qmake to use pkg-config.torque2015-05-163-0/+3
|
* manpage: lua: clarify OSD differences between mp.command/mp.commandvwm42015-05-161-0/+7
| | | | | | Conflicts: player/audio.c player/video.c
* video: add hevc to whitelist of hwdec codecswm42015-05-141-1/+1
| | | | | This means if --hwdec is used, and hardware decoding is supported for HEVC, it's actually used.
* vo_opengl: change user options for requesting GLESwm42015-05-141-4/+7
| | | | | | | | Instead of having separate backends, make use of GLES a flag. This reduces the number of backends and the resulting annoyances. Also, nobody cares about using GLES, so there's no backward compatibility either.
* manpage: explain some property expansion restrictionswm42015-05-131-1/+4
|
* manpage: remove stray newlinewm42015-05-131-1/+0
|
* vo_opengl_cb: add a "block" framedrop mode and make it defaultwm42015-05-121-2/+4
| | | | | | | | | (I have no idea why there are different modes.) Instead of risking to drop frames too early, give it some margin. Since there are situations this could deadlock, wait with a timeout. This can happen if e.g. the API user is refusing to render anything, or if uninitialization is happening.
* Always block SIGPIPE globallywm42015-05-111-1/+2
| | | | | | | | | | | | | | | OpenSSL and GnuTLS are still causing this problem (although FFmpeg could be blamed as well - but not really). In particular, it was happening to libmpv users and in cases the pseudo-gui profile is used. This was because all signal handling is in the terminal code, so if terminal is disabled, it won't be set. This was obviously a questionable shortcut. Avoid further problems by always blocking the signal. This is done even for libmpv, despite our policy of not messing with global state. Explicitly document this in the libmpv docs. It turns out that a version bump to 1.17 was forgotten for the addition of MPV_FORMAT_BYTE_ARRAY, so document that change as part of 1.16.
* DOCS/man/options.rst: Remove trailing whitespacesrrooij2015-05-101-2/+2
|
* DOCS/man/opions.rst: Elaborate on --no-videorrooij2015-05-101-0/+4
| | | | | When --no-video is set, the ytdl-format is set to "bestaudio/best". This wasn't documented in the man page yet.
* player: add --force-window=immediate modewm42015-05-081-2/+4
| | | | | | | This creates the window before the first file is loaded. This was requested a bunch of times, but on the other hand a change to make this behavior the default was reverted some time ago, because other users hated it.
* DOCS: add a link to LIRC wiki entrywm42015-05-071-0/+1
|
* manpage: do not use deprecated syntax in examplewm42015-05-061-1/+1
|
* vo_opengl: change default FBO formatwm42015-05-051-2/+2
| | | | | | | | Reduces (but likely does not remove) the danger of rounding intermediate values down to 8 bit. This is important for cscale, or any other processing that might store raw YUV values in framebuffers. Fixes #1918.
* manpage: fix typowm42015-05-051-1/+1
|
* ao_coreaudio: add an option for changing the physical formatwm42015-05-051-0/+8
| | | | | | | | | | | | ao_coreaudio uses AudioUnit - the OSX software mixer. In theory, it supports multichannel audio just fine. But in practice, this might be disabled by default, and the user is supposed to select a multichannel base format in the "Audio MIDI Setup" utility. This option attempts to change this setting automatically. Some possible disadvantages and caveats are listed in the manpage additions. It is off by default, since changing this might be rather bad behavior for a normal application.
* path: start special espansion with ~~name instead of ~namewm42015-05-031-9/+9
| | | | | | | Since commit 7381db60, strings like "~desktop/" were expanded as platform-specific paths by mpv. Apparently this similarity to standard Unix shell expansion caused confusion, so change it to "~~desktop/". The shell doesn't expand this, so it should be better.
* options: remove --leak-reportwm42015-05-021-2/+1
| | | | Use the environment variable instead.
* screenshots: create screenshot dirwm42015-05-021-2/+3
| | | | Minor user convenience.
* manpage: fix typowm42015-05-011-1/+1
|
* vo_opengl: gl_lcms: replace icc-cache by icc-cache-dirNiklas Haas2015-05-011-4/+7
| | | | | | | | | | This now stores caches for multiple ICC profiles, potentially all the user has ever used. The big use case for this is for users with multiple monitors. The old logic would mandate recomputing the LUT and discarding the cache whenever dragging mpv from one screen to another. This also avoids having to save and check the ICC profile itself, since the file name already uniquely determines it.
* screenshots: change default directory in pseudo-gui mode to desktopwm42015-05-012-1/+3
| | | | | | | | This should take care of the endless complaints about the default location for screenshots (and will of course create new ones). If the screenshot-template is set to an absolute path, the directory won't be used. So this should be reasonably compatible.
* screenshots: prefix default template with "mpv-"wm42015-05-011-2/+2
| | | | | | So that the user realizes where they come from, or can find them at all. This was a common complaint, and this is the most lazy solution. Better suggestions for a default template are welcome.
* path: add resolving desktop path to platform-specific pathswm42015-05-011-0/+1
| | | | | | | | | win32 has a special function for this. I'm not sure about OSX - it seems ~/Desktop can be hardcoded, and the OSX GUI actually localizes the _displayed_ path in its UI. For Unix, there is not much to be done, or is there.
* path: expose platform-specific path resolverswm42015-05-011-1/+10
|
* screenshots: add --screenshot-directory optionwm42015-05-011-0/+11
| | | | | The plan is to use this to change the screenshot default location in pseudo-gui mode.
* screenshots: add option to prevent 16 bit outputwm42015-04-291-0/+5
| | | | That's what it's usually about (again).
* screenshots: add option to disable JPEG 4:4:4 outputwm42015-04-291-0/+4
| | | | That's what it's usually about.
* manpage: put explicit links to config file path detailswm42015-04-281-1/+4
| | | | | It seems users still have trouble finding the exact paths, especially on Windows. Maybe this helps.
* command: change the default action for rescan_external_fileswm42015-04-281-5/+5
| | | | | | | | 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 loopingwm42015-04-271-0/+3
|
* ao_null: add an option for testing channel layout selectionwm42015-04-271-0/+4
|
* manpage: update mpv IRC channelsNiklas Haas2015-04-271-2/+2
| | | | | Moved to #mpv and #mpv-devel, respectively. Travis details were also updated.
* manpage: update colormatrix property descriptionwm42015-04-272-9/+10
|
* DOCS/client-api-changes: fix release markerwm42015-04-251-1/+1
| | | | | The release was pushed back and now actually happened; the marker became incorrect.
* manpage: move --autosync descriptionwm42015-04-241-14/+14
| | | | | | 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 optionwm42015-04-241-0/+8
| | | | Requested. Works similar to the property with the same name.
* man: fix PDF buildMartin Herkt2015-04-241-2/+4
| | | | | | | | | | | | | | 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 inputrobin007bond2015-04-231-0/+2
| | | | | | | | | | 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-propertywm42015-04-231-0/+7
|
* demux_mkv: limit timestamp fixing to 1ms maxwm42015-04-231-6/+6
| | | | | And also fix the description. It didn't actually reflect what the code did.
* demux_mkv: attempt to fix rounded timestampswm42015-04-231-0/+12
| | | | | There is some potential for breakage. If it happens, this might have to be disabled by default.
* lua: add utils.format_json() functionwm42015-04-221-0/+8
| | | | Requested. Why not.
* command: demuxer-cache-time propertyxylosper2015-04-211-0/+5
| | | | | | | | 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 commandwm42015-04-201-0/+9
| | | | | | | | | 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 typewm42015-04-201-0/+1
| | | | | | | | | | | | 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 propertieswm42015-04-201-7/+22
| | | | | | | | | | | | | | 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 propertyxylosper2015-04-211-0/+4
| | | | | This property indicates whether mouse cursor is located on button or not for disc naviation.
* manpage: fix typowm42015-04-191-1/+1
|
* options: change [...] to balanced quoteswm42015-04-191-1/+3
| | | | | | | | 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 hackswm42015-04-171-0/+6
|
* options: clarify quoting for option values starting with %wm42015-04-171-8/+9
|
* vf_screenshot: remove this filterwm42015-04-162-11/+2
| | | | | | 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 fileswm42015-04-161-2/+1
| | | | | | | 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 requestedwm42015-04-161-4/+3
| | | | | | | | | | | 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 documentationMarcin Kurczewski2015-04-161-0/+13
|
* options: --hr-seek=always is the same as --hr-seek=yeswm42015-04-151-0/+1
| | | | | | 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=formatKevin Mitchell2015-04-151-14/+16
|
* manpage: remove extra newline at end of af.rstKevin Mitchell2015-04-151-1/+0
|
* mapage: update --hwdec=vaapi description againwm42015-04-141-2/+1
| | | | | Supposedly this is not an issue anymore after we've changed the code to use texture-from-pixmap.
* vo_opengl: change dwmflush option valueswm42015-04-141-3/+4
| | | | | 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 findMartin Herkt2015-04-131-2/+3
| | | | | | 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 requestsrobin007bond2015-04-131-0/+3
| | | | | | | 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 sentencesrobin2015-04-121-2/+3
| | | | | | | 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-subtitleswm42015-04-111-12/+5
|
* manpage: mention how pseudo-gui mode is enabled on win32wm42015-04-111-2/+7
|
* vo_opengl: add blend-subtitles-resNiklas Haas2015-04-101-0/+11
| | | | | 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 stuffwm42015-04-101-0/+28
|
* opengl: win32 - add option 'dwmflush' to sync in DWMAvi Halachmi (:avih)2015-04-091-0/+10
| | | | | | | 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()wm42015-04-093-6/+4
| | | | Its vp parameter made no sense anymore. Introduce a new one.
* vo_opengl_cb: add a function to report vsync timewm42015-04-093-0/+9
| | | | | | | And also let vo.c know of it. Currently, this does not help much, but will facilitate future improvements.
* manpage: lua: clarify timer usagewm42015-04-081-0/+17
| | | | | | 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 statementwm42015-04-071-2/+1
| | | | | | 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: gammaNiklas Haas2015-04-041-0/+3
|
* vf_format: add gamma override optionNiklas Haas2015-04-041-0/+22
|
* vo_opengl: make csp options consistent with vf_formatNiklas Haas2015-04-041-9/+9
|
* csputils: add some missing colorspacesNiklas Haas2015-04-042-0/+18
| | | | | 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 documentationNiklas Haas2015-04-041-4/+3
| | | | Brings it in line with changes to vo_opengl options.
* vo_opengl: make jinc presets resizableNiklas Haas2015-04-041-3/+0
| | | | No real reason this is disabled with the new configuration API.
* vo_opengl: add scale-wparam optionNiklas Haas2015-04-041-0/+13
| | | | This lets us tune the window parameter
* vo_opengl: refactor scaler configurationNiklas Haas2015-04-041-12/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This merges all of the scaler-related options into a single configuration struct, and also cleans up the way they're passed through the code. (For example, the scaler index is no longer threaded through pass_sample, just the scaler configuration itself, and there's no longer duplication of the params etc.) In addition, this commit makes scale-down more principled, and turns it into a scaler in its own right - so there's no longer an ugly separation between scale and scale-down in the code. Finally, the radius stuff has been made more proper - filters always have a radius now (there's no more radius -1), and get a new .resizable attribute instead for when it's tunable. User-visible changes: 1. scale-down has been renamed dscale and now has its own set of config options (dscale-param1, dscale-radius) etc., instead of reusing scale-param1 (which was arguably a bug). 2. The default radius is no longer fixed at 3, but instead uses that filter's preferred radius by default. (Scalers with a default radius other than 3 include sinc, gaussian, box and triangle) 3. scale-radius etc. now goes down to 0.5, rather than 1.0. 0.5 is the smallest radius that theoretically makes sense, and indeed it's used by at least one filter (nearest). Apart from that, it should just be internal changes only. Note that this sets up for the refactor discussed in #1720, which would be to merge scaler and window configurations (include parameters etc.) into a single, simplified string. In the code, this would now basically just mean getting rid of all the OPT_FLOATRANGE etc. lines related to scalers and replacing them by a single function that parses a string and updates the struct scaler_config as appropriate.
* vo_opengl: separate kernel and windowNiklas Haas2015-04-041-26/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the core much more elegant, reusable, reconfigurable and also allows us to more easily add aliases for specific configurations. Furthermore, this lets us apply a generic blur factor / window function to arbitrary filters, so we can finally "mix and match" in order to fine-tune windowing functions. A few notes are in order: 1. The current system for configuring scalers is ugly and rapidly getting unwieldy. I modified the man page to make it a bit more bearable, but long-term we have to do something about it; especially since.. 2. There's currently no way to affect the blur factor or parameters of the window functions themselves. For example, I can't actually fine-tune the kaiser window's param1, since there's simply no way to do so in the current API - even though filter_kernels.c supports it just fine! 3. This removes some lesser used filters (especially those which are purely window functions to begin with). If anybody asks, you can get eg. the old behavior of scale=hanning by using scale=box:scale-window=hanning:scale-radius=1 (and yes, the result is just as terrible as that sounds - which is why nobody should have been using them in the first place). 4. This changes the semantics of the "triangle" scaler slightly - it now has an arbitrary radius. This can possibly produce weird results for people who were previously using scale-down=triangle, especially if in combination with scale-radius (for the usual upscaling). The correct fix for this is to use scale-down=bilinear_slow instead, which is an alias for triangle at radius 1. In regards to the last point, in future I want to make it so that filters have a filter-specific "preferred radius" (for the ones that are arbitrarily tunable), once the configuration system for filters has been redesigned (in particular in a way that will let us separate scale and scale-down cleanly). That way, "triangle" can simply have the preferred radius of 1 by default, while still being tunable. (Rather than the default radius being hard-coded to 3 always)
* vf_format: allow forcing aspect ratiowm42015-04-031-0/+5
| | | | | Makes vf_dsize completely useless. Unfortunately, even our "official" encoding profiles still use it.
* vf_format: allow forcing display sizewm42015-04-031-0/+5
|
* vo_opengl: remove chroma-location suboptionwm42015-04-031-4/+0
| | | | Terribly obscure, and vf_format can do this for all VOs.
* vf_format: allow forcing rotation flagswm42015-04-031-0/+4
|
* vf_format: allow forcing stereo mode parameterswm42015-04-031-0/+8
|
* sub: add --sub-text-bold optionwm42015-04-011-0/+3
| | | | This was basically requested.
* ao_wasapi: fix device listingKevin Mitchell2015-03-311-12/+12
| | | | | remove depricated and convoluted validation. refer instead to the --audio-device option.
* manpage: correct option minchn->minch for lavcac3encKevin Mitchell2015-03-301-3/+3
|
* manpage: clarify global config file locationwm42015-03-311-1/+3
| | | | (Stupid Unix conventions.)
* options: make --video-rotate use range 0-360wm42015-03-311-1/+1
| | | | | Include 360 in the range and don't stop at 359. This makes cycling through the range in 90° steps less awkward.
* video: move colorspace overrides to vf_format, simplifywm42015-03-312-95/+91
| | | | | | | | | | | | | | | | | | | Remove the colorspace-related top-level options, add them to vf_format. They are rather obscure and not needed often, so it's better to get them out of the way. In particular, this gets rid of the semi-complicated logic in command.c (most of which was needed for OSD display and the direct feedback from the VO). It removes the duplicated color-related name mappings. This removes the ability to write the colormatrix and related properties. Since filters can be changed at runtime, there's no loss of functionality, except that you can't cycle automatically through the color constants anymore (but who needs to do this). This also changes the type of the mp_csp_names and related variables, so they can directly be used with OPT_CHOICE. This probably ended up a bit awkward, for the sake of not adding a new option type which would have used the previous format.
* vf_format: don't crash if nonsense parameters are passedwm42015-03-311-11/+2
| | | | | | | It was "by design" possible to make mpv crash if the parameters didn't make enough sense, like "format=rgb24:yuv420p". While forcing the format has some minor (rather questionable) use for debugging, allowing it to crash is just stupid.
* vf_format: by default, pass through video without changewm42015-03-311-1/+1
| | | | | | Instead of forcing a useless format (packed YUV??) by default. Also cleanup.
* csputils: unify names for colorspace/etc. nameswm42015-03-311-9/+9
|
* ad_lavc: disable AC3 DRC by defaultwm42015-03-301-2/+5
|
* RPI supportwm42015-03-292-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This requires FFmpeg git master for accelerated hardware decoding. Keep in mind that FFmpeg must be compiled with --enable-mmal. Libav will also work. Most things work. Screenshots don't work with accelerated/opaque decoding (except using full window screenshot mode). Subtitles are very slow - even simple but huge overlays can cause frame drops. This always uses fullscreen mode. It uses dispmanx and mmal directly, and there are no window managers or anything on this level. vo_opengl also kind of works, but is pretty useless and slow. It can't use opaque hardware decoding (copy back can be used by forcing the option --vd=lavc:h264_mmal). Keep in mind that the dispmanx backend is preferred over the X11 ones in case you're trying on X11; but X11 is even more useless on RPI. This doesn't correctly reject extended h264 profiles and thus doesn't fallback to software decoding. The hw supports only up to the high profile, and will e.g. return garbage for Hi10P video. This sets a precedent of enabling hw decoding by default, but only if RPI support is compiled (which most hopefully it will be disabled on desktop Linux platforms). While it's more or less required to use hw decoding on the weak RPI, it causes more problems than it solves on real platforms (Linux has the Intel GPU problem, OSX still has some cases with broken decoding.) So I can live with this compromise of having different defaults depending on the platform. Raspberry Pi 2 is required. This wasn't tested on the original RPI, though at least decoding itself seems to work (but full playback was not tested).
* ao_alsa: add an option to ignore ALSA channel map negotiationwm42015-03-281-0/+8
| | | | This was requested, more or less.
* manpage: update warning on blend-subtitlesNiklas Haas2015-03-271-2/+6
|
* manpage: vo_opengl: blend-subtitles is brokenwm42015-03-271-0/+3
|
* manpage: fix typowm42015-03-261-1/+1
|
* vo_opengl: draw subtitles directly onto the videoNiklas Haas2015-03-261-0/+11
| | | | | | | | | | | | | | | | This has a number of user-visible changes: 1. A new flag blend-subtitles (default on for opengl-hq) to control this behavior. 2. The OSD itself will not be color managed or affected by gamma controls. To get subtitle CMS/gamma, blend-subtitles must be used. 3. When enabled, this will make subtitles be cleanly interpolated by :interpolation, and also dithered etc. (just like the normal output). Signed-off-by: wm4 <wm4@nowhere>
* vo_opengl: set cscale=spline36 as default for opengl-hqNiklas Haas2015-03-251-1/+1
| | | | | | | Bilinear scaling is not a suitable default for something named "hq"; the whole reason this was done in the past was because cscale used to be obscenely slow. This is no longer the case, with cscale being nearly free.
* command: add property returning current working directorywm42015-03-241-0/+4
| | | | Requested; fixes #1717.
* input: remove Linux joystick supportwm42015-03-243-8/+1
| | | | | | | | | | | Why did this exist in the first place? Other than being completely useless, this even caused some regressions in the past. For example, there was the case of a laptop exposing its accelerometer as joystick device, which led to extremely fun things due to the default mappings of axis movement being mapped to seeking. I suppose those who really want to use their joystick to control a media player (???) can configure it as mouse device or so.
* input: remove classic LIRC supportwm42015-03-243-11/+8
| | | | It's much easier to configure remotes as X11 input devices.
* manpage: ipc: make requirements for newlines more explicitwm42015-03-231-0/+3
| | | | Clarifying because someone asked.
* manpage: remove "experimental" notice from dxva2 codewm42015-03-192-2/+2
| | | | | | | It's relatively stable now. Also fix a typo in an unrelated place (better not waste commits on typos).
* manpage: add a link to mpv.conf documentationwm42015-03-171-1/+1
| | | | Like we do it for input.conf and osc.conf.
* DOCS: fix compilation instructions for MXE crosscompilationgunmantheh2015-03-171-0/+1
| | | | | | Add bootstrap step for Linux->Windows MXE crosscompilation. Signed-off-by: wm4 <wm4@nowhere>
* man/vo: fix typoMartin Herkt2015-03-151-1/+1
|
* vo_opengl: add oversample support for tscaleNiklas Haas2015-03-151-1/+9
| | | | | This is interesting mainly because it's essentially equivalent to the old smoothmotion algorithm. As such, it is now the default for tscale.
* vo_opengl: add oversample scalerNiklas Haas2015-03-151-0/+6
| | | | | | This is like nearest neighbour, but the edges between pixels are linearly interpolating if needed, as if they had been (naively) oversampled.
* vo_opengl: refactor smoothmotion -> interpolationNiklas Haas2015-03-151-42/+30
| | | | | | | | | | | | | This replaces the old smoothmotion code by a more flexible tscale option, which essentially allows any scaler to be used for interpolating frames. (The actual "smoothmotion" scaler which behaves identical to the old code does not currently exist, but it will be re-added in a later commit) The only odd thing is that larger filters require a larger queue size offset, which is currently set dynamically as it introduces some issues when pausing or framestepping. Filters with a lower radius are not affected as much, so this is identical to the old smoothmotion if the smoothmotion interpolator is used.
* man: fix PDF buildMartin Herkt2015-03-151-3/+4
|
* manpage: update cscaleNiklas Haas2015-03-131-4/+1
| | | | Had some outdated information.
* options: introduce --cache=yes choicewm42015-03-121-2/+4
| | | | | | I think this is what I alwass missed ever since I found the MPlayer cache options: a way to enable the cache on local files with the default settings, whatever they are.
* cache: bump default size to 150MBwm42015-03-121-1/+1
| | | | (Well, almost 150MB.)
* command: display-fps is the display FPS as assumed by the VOwm42015-03-121-3/+3
| | | | | | | | | Requested change in behavior. Note that we set the assumed "infinite" display_fps to 1e6, which conveniently lets vo_get_vsync_interval() return a dummy value of 1, which can be easily checked against, and still avoids doing math with float INFs.
* vo_opengl: refactor shader generation (part 2)Niklas Haas2015-03-121-24/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | This adds stuff related to gamma, linear light, sigmoid, BT.2020-CL, etc, as well as color management. Also adds a new gamma function (gamma22). This adds new parameters to configure the CMS settings, in particular letting us target simple colorspaces without requiring usage of a 3DLUT. This adds smoothmotion. Mostly working, but it's still sensitive to timing issues. It's based on an actual queue now, but the queue size is kept small to avoid larger amounts of latency. Also makes “upscale before blending” the default strategy. This is justified because the "render after blending" thing doesn't seme to work consistently any way (introduces stutter due to the way vsync timing works, or something), so this behavior is a bit closer to master and makes pausing/unpausing less weird/jumpy. This adds the remaining scalers, including bicubic_fast, sharpen3, sharpen5, polar filters and antiringing. Apparently, sharpen3/5 also consult scale-param1, which was undocumented in master. This also implements cropping and chroma transformation, plus rotation/flipping. These are inherently part of the same logic, although it's a bit rough around the edges in some case, mainly due to the fallback code paths (for bilinear scaling without indirection).
* command: add display-fps propertywm42015-03-101-0/+7
| | | | Requested. Untested; leaving that to the users.
* manpage: document swapinterval defaultNiklas Haas2015-03-091-1/+2
|
* input.conf: add key binding to override ASS subtitle styleswm42015-03-081-0/+5
|
* DOCS: minor update to coding stylewm42015-03-081-0/+2
|
* DOCS/compile-window.md: add Lua package to MXE instructionswm42015-03-061-2/+2
| | | | The MSYS2 ones already mention Lua.
* DOCS, options: fix exampleChrisK22015-03-051-1/+1
|
* client API: mention the changes to the seek/screenshot commandswm42015-03-052-1/+3
| | | | Also fix a typo in the manpage.
* player, client API: refactor cplayer init, reduce client API differenceswm42015-03-051-0/+4
| | | | | | | | | | | | | Move the command line parsing and some other things to the common init routine shared between command line player and client API. This means they're using almost exactly the same code now. The main intended side effect is that the client API will load mpv.conf; though still only if config loading is enabled. (The cplayer still avoids creating an extra thread, passes a command line, and prints an exit status to the terminal. It also has some different defaults.)
* input: use flag option type for some input commandswm42015-03-041-16/+15
| | | | | | | | | | This gets rid of the need for a second (or more) parameters; instead it can be all in one parameter. The (now) redundant parameter is still parsed for compatibility, though. The way the flags make each other conflict is a bit tricky: they have overlapping bits, and the option parser disallows setting already set bits.
* vo_opengl: add gamma-auto optionStefano Pigozzi2015-03-041-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | This automatically sets the gamma option depending on lighting conditions measured from the computer's ambient light sensor. sRGB – arguably the “sibling” to BT.709 for still images – has a reference viewing environment defined in its specification (IEC 61966-2-1:1999, see http://www.color.org/chardata/rgb/srgb.xalter). According to this data, the assumed ambient illuminance is 64 lux. This is the illuminance where the gamma that results from ICC color management is correct. On the other hand, BT.1886 formalizes that the gamma level for dim environments to be 2.40, and Apple resources (WWDC12: 2012 Session 523: Best practices for color management) define the BT.1886 dim at 16 lux. So the logic we apply is: * >= 64lux -> 1.961 gamma * =< 16lux -> 2.400 gamma * 16lux < x < 64lux -> logaritmic rescale of lux to gamma. The human perception of illuminance roughly follows a logaritmic scale of lux [1]. [1]: https://msdn.microsoft.com/en-us/library/windows/desktop/dd319008%28v=vs.85%29.aspx
* stream_cdda: add option to enable cdtext, and disable it by defaultwm42015-03-031-0/+4
| | | | Fixes #1615.
* manpage: improve --osd-fractions descriptionwm42015-03-031-1/+2
|
* manpage: remove empty line to fix formattingwm42015-03-021-1/+0
| | | | | | The HTML rendering of this page formats the ``timeout`` section differently, and we suspect it's because of this. (Or in other words: wtf rst??)
* Revert "Revert recent vo_opengl related commits"Niklas Haas2015-02-281-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | Omitted a simple, but devastasting check. Fixed the relevant commits now. This reverts commit 8d24e9d9b8ad1b5d82139980eca148dc0f4a1eab. diff --git a/video/out/gl_video.c b/video/out/gl_video.c index 9c8a643..f1ea03e 100644 --- a/video/out/gl_video.c +++ b/video/out/gl_video.c @@ -1034,9 +1034,9 @@ static void compile_shaders(struct gl_video *p) shader_def_opt(&header_conv, "USE_CONV_GAMMA", use_conv_gamma); shader_def_opt(&header_conv, "USE_CONST_LUMA", use_const_luma); shader_def_opt(&header_conv, "USE_LINEAR_LIGHT_BT1886", - gamma_fun == MP_CSP_TRC_BT_1886); + use_linear_light && gamma_fun == MP_CSP_TRC_BT_1886); shader_def_opt(&header_conv, "USE_LINEAR_LIGHT_SRGB", - gamma_fun == MP_CSP_TRC_SRGB); + use_linear_light && gamma_fun == MP_CSP_TRC_SRGB); shader_def_opt(&header_conv, "USE_SIGMOID", use_sigmoid); if (p->opts.alpha_mode > 0 && p->has_alpha && p->plane_count > 3) shader_def(&header_conv, "USE_ALPHA_PLANE", "3");
* Revert recent vo_opengl related commitswm42015-02-281-7/+0
| | | | | | | | | | | | | | | Breaks vo_opengl by default. I'm hot able to fix this myself, because I have no clue about the overcomplicated color management logic. Also, whilethis is apparently caused by commit fbacd5, the following commits all depend on it, so revert them too. This reverts the following commits: e141caa97dade07f4d7e0d6c208bcd3493e712ed 653b0dd5295453d9661f673b4ebd02c5ceacf645 729c8b3f641e633474be612e66388c131a1b5c92 fbacd5de31de964f7cd562304ab1c9b4a0d76015 Fixes #1636.
* cocoa: remove the setNextKeyView hackStefano Pigozzi2015-02-281-2/+14
| | | | | | Just use makeFirstResponder on the mpv events view from client code if you need the built in keyboard events (this is easier for dealing with view nesting).
* examples/cocoabasic: allow to send stop commandStefano Pigozzi2015-02-281-13/+19
|
* manpage: fix typozymos2015-02-281-1/+1
| | | | Signed-off-by: wm4 <wm4@nowhere>
* screenshots: add support for csp taggingNiklas Haas2015-02-281-0/+7
| | | | | | This relies on upstream support in lavc, and will hence basically not work at all. The intent is to get support for writing this information into ffmpeg's PNG encoders etc.
* demux: bump default demuxer queue sizeswm42015-02-271-2/+2
| | | | | | | | | | Now that we have fast stream switching, we can bump these sizes, as the queues cause no delay in switching anymore. Of course, the fast stream switching works for mkv and mp4 only. Other formats will incur a quite terrible delay especially in network mode, which this commit changes to 10 seconds. Let's see if someone complains...
* manpage: update wording on speedNiklas Haas2015-02-271-2/+3
| | | | | | The way I interpreted it, it seemed like this was not default behavior and could be enabled with --audio-pitch-correction - it should be made clearer that this is actually *the default behavior*.
* vo_opengl: implement antiringing for tensor scalersNiklas Haas2015-02-271-3/+2
| | | | | | | | | | | | This is based on pretty much the same (somewhat naive) logic right now. I'm not convinced that the extra logic that eg. madVR includes is worth enough to warrant heavily confusing the logic for it. This shouldn't slow down the logic at all in any sane shader compiler, and indeed it doesn't on any shader compiler that I tested. Note that this currently doesn't affect cscale at all, due to the weird implementation details of that.
* input: allow passing FDs to --input-filewm42015-02-261-0/+3
|
* ytdl: add "--ytdl-params" optionThiago Kenji Okada2015-02-251-0/+12
| | | | | | | | | | | This option allows the user to pass non-supported options directly to youtube-dl, such as "--proxy URL", "--username USERNAME" and '--password PASSWORD". There is no sanity checking so it's possible to break things (i.e. if you pass "--version" mpv exits with random JSON error). Signed-off-by: wm4 <wm4@nowhere>
* manpage: adjust --ass-style-override descriptionwm42015-02-251-2/+1
| | | | | No "modified libass" is needed anymore. Also, it said that the "force" choice is more reliable than "force", which makes no sense.
* manpage: update documentation for smoothmotionNiklas Haas2015-02-241-8/+27
| | | | | | | | | | | Hopefully, this will really clear up how the thing is supposed to work (and that it's not SVP, nor MVTools). I also removed instances of the word "interpolation", since that's a term that's easily misleading. Finally, I expanded on smoothmotion-threshold since the purpose/meaning was a bit confusing.
* filter_kernels: add ewa_lanczossharp aliasNiklas Haas2015-02-241-2/+10
| | | | | This is essentially a preconfigured version of ewa_lanczos, with the "best" parameters for general purpose usage.
* filter_kernels: add blur parameter to jincNiklas Haas2015-02-231-0/+6
| | | | | This affects all filters that use it, eg. ewa_lanczos. Setting it to something like 0.95 can be done to make the filter a bit less blurry.
* manpage: document scale-param1 properlyNiklas Haas2015-02-231-8/+15
| | | | | Right now, nothing in the man page says what it actually affects, other than for mitchell. I added a list to make it clear.
* manpage: update for new EWA filtersNiklas Haas2015-02-231-2/+2
| | | | | | The man page was still referring to ewa_lanczos exclusively in a few places, even though new EWA filters have been introduced in the meantime.
* filter_kernels: rename ginseng to ewa_ginsengNiklas Haas2015-02-231-1/+1
| | | | | | This is done mainly for consistency, since all of the EWA filters share similar properties and it's important to distinguish them for documentation purposes.
* DOCS/client_api_examples/simple: fix optionwm42015-02-231-1/+1
| | | | | "input-x11-keyboard" still works, but is a deprecated alias with the same functionality.
* manpage: ipc: add a socat examplewm42015-02-211-3/+33
| | | | Requested, and should be quite good at giving an overview how it works.
* video: un-discourage "vaapi-copy" hwdec modewm42015-02-201-1/+2
| | | | | Maybe I don't know what I'm doing. I'm fairly certain though that Intel does not know what they're doing.
* vo_opengl: add ginseng upscalerNiklas Haas2015-02-201-1/+1
| | | | | | | | | This is a variation of ewa_lanczos that is sinc-windowed instead of jinc-windowed. Results are pretty similar, but the logic is simpler. This could potentially replace the ugly ewa_lanczos code. It's hard to tell, but from comparing stills I think this one has slightly less ringing than regular ewa_lanczos.
* manpage: fix vf_scale arnd parameterwm42015-02-191-2/+2
| | | | | | | It probably was always a flag, so the documentation became invalid as soon as mpv stopped accepting 0/1 for flags. Fixes #1608.
* DOCS/client-api-changes: mark 0.8.0 releasewm42015-02-171-2/+3
| | | | | (There was a missing version bump for the msg-level change; just move it under 1.14.)
* command: add rescan_external_fileswm42015-02-161-0/+15
| | | | | | | | | Requested. Hopefully will be useful for things that download and add external subtitles on demand. Or something. Closes #1586.
* sub: mess with styling defaults, change --ass-use-margins behaviorwm42015-02-163-7/+32
| | | | | | | | | | | | | | | | | | | Now --ass-use-margins doesn't apply to normal subtitles anymore. This is probably the inverse from the mpv behavior users expected so far, and thus a breaking change, so rename the option, that the user at least has a chance to lookup the option and decide whether the new behavior is wanted or not. The basic idea here is: - plain text subtitles should have a certain useful defalt behavior, like actually using margins - ASS subtitles should never be broken by default - ASS subtitles should look and behave like plaintext subtitles if the --ass-style-override=force option is used This also subtly changes --sub-scale-with-window and adds the --ass- scale-with-window option. Since this one isn't so important, don't bother with compatibility.
* osd: customizable subtitle and OSD positionwm42015-02-161-0/+11
| | | | | | You can set in which "corner" the OSD and subtitles are shown. I'd prefer it a bit more general (so you could set the alignment using a factor), but the libass API does not provide this.
* vf_vapoursynth: add display refresh rate propertyJulian2015-02-131-0/+3
| | | | | This value is not necessarily trustworthy (it might change) and can be 0.
* command: mark get_property as deprecatedwm42015-02-131-3/+2
| | | | | Using it just makes no sense. But we're really being nice about this and don't remove it immediately.
* player: add a --loop=force modewm42015-02-121-1/+6
| | | | | | | Requested. See manpage additions. This also makes the magical loop_times constants slightly saner, but shouldn't change the semantics of any existing --loop option values.
* audio: add device change notification for hotpluggingwm42015-02-121-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | Not very important for the command line player; but GUI applications will want to know about this. This only adds the internal API; support for specific audio outputs comes later. This reuses the ao struct as context for the hotplug event listener, similar to how the "old" device listing API did. This is probably a bit unclean and confusing. One argument got reusing it is that otherwise rewriting parts of ao_pulse would be required (because the PulseAudio API requires so damn much boilerplate). Another is that --ao-defaults is applied to the hotplug dummy ao struct, which automatically applies such defaults even to the hotplug context. Notification works through the property observation mechanism in the client API. The notification chain is a bit complicated: the AO notifies the player, which in turn notifies the clients, which in turn will actually retrieve the device list. (It still has the advantage that it's slightly cleaner, since the AO stuff doesn't need to know about client API issues.) The weird handling of atomic flags in ao.c is because we still don't require real atomics from the compiler. Otherwise we'd just use atomic bitwise operations.
* player: use af_scaletempo when slowing down audio toowm42015-02-121-1/+1
| | | | | | In my opinion the artifacts created by af_scaletempo on extreme slowdown (50% or so) are too bothersome - but users disagree. So use af_scaletempo on any speed changes, not just on speedup.
* vf_noise: remove internal implementationwm42015-02-111-4/+0
| | | | | It requires libavfilter now, just like many other filters. Not sure if it even makes sense to keep this wrapper.
* af_rubberband: make all librubberband options configurablewm42015-02-111-0/+9
| | | | | | | librubberband exports a big load of options. Normally, the default settings (whether they're librubberband defaults or our defaults) should be sufficient, but since I'm not so sure about this, making it configurable allows others to figure it out for me.
* af_rubberband: pitch correction with librubberbandwm42015-02-111-0/+5
| | | | | | | | | If "--af=rubberband" is used, librubberband will be used to speed up or slow down audio with pitch correction. This still has some problems: the audio delay is not calculated correctly, so the audio position jitters around by a few milliseconds. This will probably ruin video timing.
* manpage: fix af_scaletempo suggested commandswm42015-02-101-3/+3
|
* manpage: ipc: suggest --idlewm42015-02-091-1/+2
|
* Revert "vo_opengl: disable alpha by default"wm42015-02-061-1/+1
| | | | | | | | | | This reverts commit a33b46194c3525cb585cc78b449ec275dbfd7f83. It turns out FFmpeg really considers this a bug, and fixed it by making the decoder output the correct pixel format. Fixes #1565. Reverts the fix #1528, though it should work fine with a recent git master FFmpeg.
* options: add --network-timeoutwm42015-02-061-0/+5
| | | | | | Not quite sure if this actually works as intended. Fixes #1566.
* options: change --msg-level optionwm42015-02-062-1/+3
| | | | | | | | | | | | | | Make it accept "," as separator, instead of only ":". Do this by using the key-value-list parser. Before this, the option was stored as a string, with the option parser verifying that the option value as correct. Now it's stored pre-parsed, although the log levels still require separate verification and parsing-on-use to some degree (which is why the msg-level option type doesn't go away). Because the internal type changes, the client API "native" type also changes. This could be prevented with some more effort, but I don't think it's worth it - if MPV_FORMAT_STRING is used, it still works the same, just with a different separator on read accesses.
* vo_opengl: add support for linear scaling without CMSNiklas Haas2015-02-061-5/+10
| | | | | | | | | | This introduces a new option linear-scaling, which is now implied by srgb, icc-profile and sigmoid-upscaling. Notably, this means (sigmoidized) linear upscaling is now enabled by default in opengl-hq mode. The impact should be negligible, and there has been no observation of negative side effects of sigmoidized scaling, so it feels safe to do so.
* player: do not autoload audio with audio files, enable autoloadingwm42015-02-051-3/+3
| | | | | | | | | | | | | | Autoload external audio files only if there's at least a video track (which is not coverart pseudo-video). Enable external audio file autoloading by default. Now that we actively avoid doing stupid things like loading an external audio file for an audio-only file, this should be fine. Additionally, don't autoload subtitles if a subtitle is played. Although you currently can't play subtitles without audio or video, it's disturbing and stupid that the player might load subtitle files with different extension and then fail.
* manpage: move out the MPlayer comparison pagewm42015-02-052-440/+453
| | | | | | | | | | Giving this such a prominent place is not really appropriate anymore. Most people seeing this would probably expect a release changelog, not something about MPlayer. Since the page still could be useful for former MPlayer users (in particular to avoid confusion with renamed options etc.), still keep it in the DOCS directory.
* manpage: document hook APIwm42015-02-042-14/+64
| | | | | | | This shouldn't exist and for the most part is meant to be used by the ytdl Lua script, but let's document it anyway. Since the Lua API handles all the details, it's considered much more "stable" than the raw API, which is why the raw API wasn't documented.
* command: add on_unload hookwm42015-02-041-0/+4
| | | | Fixes #1552.
* player: remove --fixed-vowm42015-02-031-1/+2
| | | | | | | In ancient times, this was needed because it was not default, and many VOs had problems with it. But it was always default in mpv, and all VOs are required to deal with it. Also, running --fixed-vo=no is not useful and just creates weird corner cases. Get rid of it.
* cocoa: automatically fetch display-fps from the monitorStefano Pigozzi2015-02-031-2/+2
| | | | | | | | | | | | Comment explains why I have been so doubtful at adding this. The Apple docs say CGDisplayModeGetRefreshRate is supposed to work only for CRTs, but it doesn't, and actually works for LCD TVs connected over HDMI and external displays (at least that's what I'm told, I don't have the hardware to test). Maybe Apple docs are incorrect. Since AFAIK Apple doesn't want to give us a better API – maybe in the fear we might be able to actually write some useful software instead of "apps" – I decided not to care as well and commit this.
* vo_opengl: disable alpha by defaultwm42015-02-031-1/+1
| | | | | | | | | | | | | This reverts the default behavior introduced in commit 93feffad. Way too often libavcodec will return RGB data that has an alpha channel as per pixel format, but actually contains garbage. On the other hand, this will actually render garbage color values in e.g. PNG files (for pixels with alpha==0, the color value should be essentially ignored, which is what the old alpha blend mode did). This "fixes" #1528, which is probably a decoder bug (or far less likely, a broken file).
* vo_opengl: change initialization of gamma optionwm42015-02-031-7/+5
| | | | | | | | | | Make the lazy gamma initialization less weird, and make the default value of the "gamma" sub-option 1.0. This means --vo=opengl:help will list the actual default value. Also change the lower bound to 0.1 - avoids a division by zero (I don't know how shaders handle NaN, but it's probably not a good idea to give them this value).
* command: new commands audio_add/audio_remove/audio_reloadxylosper2015-02-031-0/+9
| | | | | | | | These commands are counterparts of sub_add/sub_remove/sub_reload which work for external audio file. Signed-off-by: wm4 <wm4@nowhere> (minor simplification)
* vo_opengl: change upper bound of :gamma to 2.0Niklas Haas2015-02-031-1/+1
| | | | | This allows a spread of 1.0 in either direction, which is already close to absurd. Anything higher than that is pretty pointless.
* manpage: add recommended values to :gamma suboptionNiklas Haas2015-02-031-4/+12
| | | | | | | | These were derived from dividing our assumed video gamut (1.961) by some typical screen values (2.2 for dimly lit and 2.4 for pitch black): 1.961/2.4 = 0.8170833333333334 ~= 0.8 1.961/2.2 = 0.8913636363636364 ~= 0.9
* command: add property returning detected audio deviceStefano Pigozzi2015-02-031-0/+4
| | | | | This can be useful to adjust some other audio related properties at runtime depending on the audio device being used.
* command: add property returning detected hwdec APIwm42015-02-021-0/+11
| | | | | | | | | This is somewhat imperfect, because detection of hw decoding APIs is mostly done on demand, and often avoided if not necessary. (For example, we know very well that there are no hw decoders for certain codecs.) This also requires every hwdec backend to identify itself (see hwdec.h changes).
* player: add external audio file auto-loadingwm42015-02-021-0/+10
| | | | | | Apparently some people want this. Not enabled by default. Fixes #967.
* command: add properties returning the current VO and AO driverwm42015-02-021-0/+6
| | | | This wasn't possible before.
* client API: add mpv_wait_async_requests()wm42015-02-021-0/+1
| | | | | | | | | | | | | | | | | | | | This does what it's documented to do. The implementation reuses the code in mpv_detach_destroy(). Due to the way async requests currently work, just sending a synchronous dummy request (like a "ignore" command) would be enough to ensure synchronization, but this code will continue to work even if this changes. The line "ctx->event_mask = 0;" is removed, but it shouldn't be needed. (If a client is somehow very slow to terminate, this could silence an annoying queue overflow message, but all in all it does nothing.) Calling mpv_wait_async_requests() and mpv_wait_event() concurrently is in theory allowed, so change pthread_cond_signal() to pthread_cond_broadcast() to avoid missed wakeups. As requested in issue #1542.
* ao_null: add emulation for certain broken behaviorwm42015-01-301-0/+3
| | | | | I'm not sure how common this behavior possibly is; well whatever. This option will allow reproducing such behavior, and help debugging it.
* man: expand on the smoothmotion documentationStefano Pigozzi2015-01-281-4/+13
| | | | | Hopefully this will clear up how the thing is supposed to work (and that it's not SVP, nor MVTools).
* vf_ilpack: remove this filterwm42015-01-271-13/+0
| | | | | | | | This was apparently useful for correct interlaced scaling (although I don't know anyone who used this). It was rarely used (if at all), had an inconvenient output format (packed YUV), and now has a better solution in libavfilter (using the libavfilter "scale" filter via vf_lavfi). There is no reason to keep this filter any longer.
* vf_divtc: remove this filterwm42015-01-271-62/+0
| | | | | Better solutions are available in vf_vapoursynth and vf_lavfi. The only user I know who used this is now using vf_vapoursynth.
* vf_phase: remove this filterwm42015-01-271-52/+0
| | | | If you really want it, it's in libavfilter and can be used via vf_lavfi.
* vf_swapuv: remove this filterwm42015-01-271-3/+0
| | | | | | It's entirely useless. I left it in for a while, because the analog TV code had a transitional bug that could switch chroma planes, but it was fixed long ago. It's also available in libavfilter.
* manpage: fix rst2pdf buildMartin Herkt2015-01-271-5/+5
| | | | Uhhh… What???
* command: export more details about file seekabilitywm42015-01-261-0/+8
| | | | | | | | | | If a file is unseekable (consider e.g. a http server without resume functionality), but the stream cache is active, the player will enable seeking anyway. Until know, client API user couldn't know that this happens, and it has implications on how well seeking will work. So add a property which exports whether this situation applies. Fixes #1522.
* msg: add --log-file optionwm42015-01-261-0/+5
| | | | | | | | | This allows getting the log at all with --no-terminal and without having to retrieve log messages manually with the client API. The log level is hardcoded to -v. A higher log level would lead to too much log output (huge file sizes and latency issues due to waiting on the disk), and isn't too useful in general anyway. For debugging, the terminal can be used instead.
* manpage: document 'A' keywm42015-01-261-0/+3
| | | | Of course this was forgotten in commit 189087c.
* manpage: fix typoDiogo Franco (Kovensky)2015-01-261-1/+1
|
* manpage: fix smoothmotion-threshold value rangewm42015-01-261-1/+1
|
* options: make --hls-bitrate=max the defaultwm42015-01-261-2/+2
| | | | | | | The previous default ("no") seemed to be equivalent to "min" in practice (though it might depend on the website, which is even worse). Better just select the best stream by default.
* manpage: describe some more config directory artifactswm42015-01-261-9/+27
|
* vo_opengl, x11: implement icc-profile-autowm42015-01-261-1/+1
| | | | | | | | | | | | | | | | | This queries the _ICC_PROFILE property on the root window. It also tries to reload the ICC when it changes, or if the mpv window changes the monitor. (If multiple monitors are covered, mpv will randomly select one of them.) The official spec is a dead link on freedesktop.org, so don't blame me for any bugs. Note that this assumes that Xinerama screen numbers match the way mpv enumerates the xrandr monitors. Although there is some chance that this matches, it most likely doesn't, and we actually have to do complicated things to map the screen numbers. If it turns out that this is required, I will fix it as soon as someone with a suitable setup for testing the fix reports it.
* vo_opengl: make "mitchell" the hq default filter for downscalingwm42015-01-261-1/+1
| | | | | | | | | | | | | Seems like several people agree that it's a good filter for downscaling. Setting this option by default may also prevent people from accidentally using an unsuitable filter for downscaling by setting "scale" and without being aware of the impliciations (maybe). On the other hand, this change is not strictly backwards compatible for the same reasons. Also, allow disabling this option with scale-down="" (before this, not setting it was the only way to do this - not possible anymore if it's set by default). This is what the change in handle_scaler_opt() does.
* input, player: new command for mouse eventxylosper2015-01-231-0/+17
| | | | | | | New command `mouse <x> <y> [<button> [single|double]]` is introduced. This will update mouse position with given coordinate (`<x>`, `<y>`), and additionally, send single-click or double-click event if `<button>` is given.
* vo: fix disabling/enabling smoothmotion at runtimewm42015-01-231-0/+3
| | | | | | | | | | | | | vo.c queried the VO at initialization whether it wants to be updated on every display frame, or every video frame. If the smoothmotion option was changed at runtime, the rendering mode in vo.c wasn't updated. Just let vo_opengl set the mode directly. Abuse the existing vo_set_flip_queue_offset() function for this. Also add a comment suggesting the use of --display-fps to the manpage, which doesn't have anything to do with the rest of this commit, but is important to make smoothmotion run well.
* manpage: minor changeswm42015-01-235-20/+28
| | | | | | Mostly related to vo_opengl. Fix the opengl lscale option in the qml example too.
* command: export file format as propertywm42015-01-231-0/+5
| | | | | | | | | | | | Repurpose demuxer->filetype for this. It used to be used to print a human readable format description; change it to a symbolic format name and export it as property. Unfortunately, libavformat has its own weird conventions, which are reflected through the new property, e.g. the .mp4 case mentioned in the manpage. Fixes #1504.
* build: remove bogus client API examples buildwm42015-01-233-5/+9
| | | | | | | | | | | The symlink trick made waf go crazy (deleting source files, getting tangled up in infinite recursion... I wish I was joking). This means we still can't build the client API examples in a reasonable way using the include files of the local repository (instead of globally installed headers). Not building them at all is better than deleting source files. Instead, provide some manual instructions how to build each example (except for the Qt examples, which provide qmake project files).
* vf_vavpp: add more deinterlacing algorithmswm42015-01-231-0/+4
| | | | | | These are untested due to lack of hardware. From what I've heard, the drivers are pretty buggy, so it's not clear how well this works, if at all.
* vo_opengl: add smoothmotion frame blendingStefano Pigozzi2015-01-231-0/+9
| | | | | | | | | | | | | | | | | | | SmoothMotion is a way to time and blend frames made popular by MadVR. It's intended behaviour is to remove stuttering caused by mismatches between the display refresh rate and the video fps, while preserving the video's original artistic qualities (no soap opera effect). It's supposed to make 24fps video playback on 60hz monitors as close as possible to a 24hz monitor. Instead of drawing a frame once once it's pts has passed the vsync time, we redraw at the display refresh rate, and if we detect the vsync is between two frames we interpolated them (depending on their position relative to the vsync). We actually interpolate as few frames as possible to avoid a blur effect as much as possible. For example, if we were to play back a 1fps video on a 60hz monitor, we would blend at most on 1 vsync for each frame (while the other 59 vsyncs would be rendered as is). Frame interpolation is always done before scaling and in linear light when possible (an ICC profile is used, or :srgb is used).
* manpage: vo_opengl: describe how to get lanczos2/lanczos3wm42015-01-221-0/+3
| | | | | | | These aliases were removed in commit 1ec77214. Add a notice to the manpage how to get these back. Apparently, "lanczos2" and "lanczos3" were the only interesting aliases possibly used by someone, so the description is limited to these two.
* vo_opengl: remove scale-sep and indirect optionsNiklas Haas2015-01-221-23/+1
| | | | | | | | | | | | These are now auto-detected sanely; and enabled whenever it would be a performance or quality gain (which is pretty much everything except bilinear/bilinear scaling). Perhaps notably, with the absence of scale_sep, there's no more way to use convolution filters on hardware without FBOs, but I don't think there's hardware in existence that doesn't have FBOs but is still fast enough to run the fallback (slow) 2D convolution filters, so I don't think it's a net loss.
* vo_opengl: rename all scale options to make more senseNiklas Haas2015-01-221-31/+24
| | | | | This emphasizes the fact that scale is used for *all* image upscaling, with cscale only serving a minor role for subsampled material.
* vo_opengl: always prefer indirect scalingNiklas Haas2015-01-221-9/+14
| | | | | | This is better even for non-separable. The only exception is when using bilinear for both lscale and cscale. I've fixed the documentation/comments to make more sense.
* vo_opengl: implement naive anti-ringingNiklas Haas2015-01-221-4/+13
| | | | | | | | This is not quite the same thing as madVR's antiringing algorithm, but it essentially does something similar. Porting madVR's approach to elliptic coordinates will take some amount of thought.
* vo_opengl: make the default radius 3.0 and simplify scaler documentationNiklas Haas2015-01-211-12/+14
| | | | | | | This also fixes the maximum range to 16.0, which was previously set to 32.0 and incorrectly documented as 8.0. 16 taps should be more than anybody will ever need, but it's the highest radius that's supported by all affected filters.
* manpage: vo_opengl: change scaler descriptions and recommendationswm42015-01-211-37/+13
| | | | Based on suggestions by lachs0r.
* vo_opengl_old: remove this VOwm42015-01-201-180/+1
| | | | | At this point, there is probably no hardware left that doesn't do OpenGL 2.1, and at the same time is fast enough to handle video.
* README: extend dependecy list, link Windows compilation docswm42015-01-201-1/+1
| | | | Also, fix vo.rst, don't want to waste a separate commit on this.
* vo_opengl: remove cscale-down suboptionwm42015-01-201-3/+9
| | | | For an explanation see the additions to the manpage.
* client API: notify API user on event queue overflowwm42015-01-191-0/+1
| | | | | | | | | | | | | | | Before this, we merely printed a message to the terminal. Now the API user can determine this properly. This might be important for API users which somehow maintain complex state, which all has to be invalidated if (state-changing) events are missing due to an overflow. This also forces the client API user to empty the event queue, which is good, because otherwise the event queue would reach the "filled up" state immediately again due to further asynchronous events being added to the queue. Also add some minor improvements to mpv_wait_event() documentation, and some other minor cosmetic changes.
* x11: add --on-all-workspaces option and propertywm42015-01-162-0/+7
| | | | Fixes #1469.
* player: add --autofit-smaller optionwm42015-01-161-0/+11
| | | | | | | | Fixes #1472. (Maybe these options should have been named --autofit-max and --autofit-min, but since --autofit-larger already exists, use --autofit-smaller for symmetry.)
* manpage: fix osd-ass-cc exampleswm42015-01-161-1/+4
| | | | | | | | The "\\" escape was rendered as "\" on the website. I'm hoping quoting this in ``...`` will render it correctly. Also add an example for show_text, which awkwardly does not require escaping the "\".
* vo_opengl: get rid of approx-gamma and make it the default as per BT.1886Niklas Haas2015-01-161-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | After finding out more about how video mastering is done in the real world it dawned upon me why the "hack" we figured out in #534 looks so much better. Since mastering studios have historically been using only CRTs, the practice adopted for backwards compatibility was to simulate CRT responses even on modern digital monitors, a practice so ubiquitous that the ITU-R formalized it in R-Rec BT.1886 to be precisely gamma 2.40. As such, we finally have enough proof to get rid of the option altogether and just always do that. The value 1.961 is a rounded version of my experimentally obtained approximation of the BT.709 curve, which resulted in a value of around 1.9610336. This is the closest average match to the source brightness while preserving the nonlinear response of the BT.1886 ideal monitor. For playback in dark environments, it's expected that the gamma shift should be reproduced by a user controlled setting, up to a maximum of 1.224 (2.4/1.961) for a pitch black environment. More information: https://developer.apple.com/library/mac/technotes/tn2257/_index.html
* manpage: changes.rst: document vo_opengl's placebo featuresNiklas Haas2015-01-151-1/+5
|
* vo_opengl: add ewa_lanczos upscaler (aka jinc)Niklas Haas2015-01-151-1/+7
| | | | | This is the polar (elliptic weighted average) version of lanczos. This introduces a general new form of polar filters.
* DOCS/client_api_examples: fix locale nonsense in qml exampleswm42015-01-152-0/+10
| | | | | | | The Qt example already does this. I hoped this was restricted to QApplication only, but apparently Qt repeated this mistake with QGuiApplication (QGuiApplication was specifically added for QtQuick at a much later point, even though QApplication inherits from it).
* ao_pcm: add append modewm42015-01-141-0/+4
| | | | | Pretty useful for debugging, although a bit useless or possibly misleading too (see comments in the manpage).
* manpage: fix references to vf_ppwm42015-01-132-4/+3
| | | | | | It was removed, but is still available through FFmpeg. Fixes #1468.
* manpage: improve --title descriptionwm42015-01-121-5/+6
| | | | | It might be rather surprising that --title also sets the audio stream title (for PulseAudio and wasapi), so it certainly should be mentioned.
* x11: support XEmbedwm42015-01-121-6/+9
| | | | | | | | | | | | Seems to work with GtkSocket and passing the gtk_socket_get_id() value via "wid" option to mpv. One caveat is that using <tab> to move input focus from mpv to GTK does not work. It seems we would have to interpret <tab> ourselves in this case. I'm not sure if we really should do this - it would probably require emulating some other typical conventions too. I'm not sure if an embedder could do something about this on the toolkit level, but in theory it would be possible, so leave it as is for now.
* player: change --display-tags behaviorwm42015-01-121-1/+2
| | | | | | | | | | | | | | | | | | Remove the "all" special-behavior, and instead interpret trailing "*" characters. --display-tags=all is replaced by --display-tags=* as a special-case of the new behavior. See #1404. Note that the most straight-forward value for matchlen in the normal case would be INT_MAX, because it should be using the entire string. I used keylen+1 instead, because glibc seems to handle this case incorrectly: snprintf(buf, sizeof(buf), "%.*s", INT_MAX, "hello"); The result is empty, instead of just containing the string argument. This might be a glibc bug; it works with other libcs (even MinGW-w64).
* command: fix property naming conventionwm42015-01-101-2/+2
| | | | Use "-" instead of "_" as separator.
* command: change properties added in previous commitwm42015-01-101-5/+9
| | | | | | | | | | | | | Make their meaning more exact, and don't pretend that there's a reasonable definition for "bits-per-pixel". Also make unset fields unavailable. average_depth still might be inconsistent: for example, 10 bit 4:2:0 is identified as 24 bits, but RGB 4:4:4 as 12 bits. So YUV formats seemingly drop the per-component padding, while RGB formats do not. Internally it's consistent though: 10 bit YUV components are read as 16 bit, and the padding must be 0 (it's basically like an odd fixed- point representation, rather than a bitfield).
* command.c: new subproperties for video-params: bpp and depthxylosper2015-01-101-0/+6
| | | | | | | | bpp(bits-per-pixel) and depth(bit-depth for color component) can be calculated from pixelformat technically but it requires massive informations to be implemented in client side. These subproperties are provided for convenience.
* DOCS/client_api_examples: qml_direct: QWindow::size() is not thread-safewm42015-01-092-3/+4
| | | | | | We still keep the window pointer, because we want to call QQuickWindow::resetOpenGLState() (which runs on the rendering thread only). Interesting mess...
* DOCS/client_api_examples: qml: reduce number of fileswm42015-01-094-119/+116
| | | | This is annoying.
* DOCS/compile-windows.md: fix pkg-config directoryJames Ross-Gowan2015-01-091-2/+4
|
* video: Add sigmoidal upscaling to avoid ringing artifactsNiklas Haas2015-01-091-1/+13
| | | | | | | | | This avoids issues when upscaling directly in linear light, and is the recommended way to upscale images according to imagemagick. The default slope of 6.5 offers a reasonable compromise between ringing artifacts eliminated and ringing artifacts introduced by sigmoid-upscaling. Same goes for the default center of 0.75.
* vo_opengl_cb: introduce frame queuexylosper2015-01-081-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | The previous implementation of opengl-cb kept only latest flipped frame. This can cause massive frame drops because rendering is done asynchronously and only the latest frame can be rendered. This commit introduces frame queue and releated options to opengl-cb. frame-queue-size: the maximum size of frame queue (1-100, default: 1) frame-drop-mode: behavior when frame queue is full (pop, clear, default: pop) The frame queue holds delayed frames and drops frames if the frame queue is overflowed with next method: 'pop' mode: drops all the oldest frames overflown. 'clear' mode: drops all frames in queue and clear it. With default options(frame-queue-size=1:frame-drop-mode=pop), opengl-cb behaves in the same way as previous implementation effectively. For frame-queue-size > 1, opengl-cb tries to calls update() without waiting next flip_page() in order to consume queued frames. Signed-off-by: wm4 <wm4@nowhere>
* DOCS: add instructions for building with MSYS2James Ross-Gowan2015-01-082-91/+209
| | | | | | mpv can be built natively on a Windows machine using MSYS2. Add detailed instructions on how to build and merge them with the existing instructions for cross-compilation.
* DOCS/client_api_examples: add an alternative qml examplewm42015-01-086-0/+293
| | | | | | | | | | | This one avoids use of a FBO. It's less flexible, because it uses works around the whole QML rendering API. It seems to be the only way to get OpenGL rendering without any indirections, though. Parts of this example were insipired by Qt's "Squircle" example. Also add a README file with a short description of each example, to reduce the initial confusing.
* ao_pulse: disable latency calculation hacks by defaultwm42015-01-071-2/+7
| | | | | | | | | | | | | | This used to be required to workaround PulseAudio bugs. Even later, when the bugs were (partially?) fixed in PulseAudio, I had the feeling the hacks gave better behavior. On the other hand, I couldn't actually reproduce any bad behavior without the hacks lately. On top of this, it seems our hacks sometimes perform much worse than PulseAudio's native implementation (see #1430). So disable the hacks by default, but still leave the code and the option in case it still helps somewhere. Also, being able to blame PulseAudio's code by using its native API is much easier than trying to debug our own (mplayer2-derived) hacks.
* stream_dvb: Add possibility to dump a full transponder.Oliver Freyermuth2015-01-061-0/+11
| | | | | | | | | | | | Was already possible before by injecting the magic PID 8192 into channels.conf, the flag makes this much more useable and we also have it documented. Useful not only for debugging, but also for incomplete channels.conf (mplayer format...), multi-channel recording, or channels which do dynamic PID switchng. full-transponder is also useful for channels which switch PIDs on-the-fly. ffmpeg can handle this, but it needs the full stream with all PIDs.
* manpage: dvb: Add some information on VDR channel list support.Oliver Freyermuth2015-01-061-0/+6
| | | | Only really helpful for DVB-S for now.
* DOCS/client_api_examples: qml: add test for gamma controlwm42015-01-063-11/+29
| | | | Provides a dumb test for the functionality added in the previous commit.
* DOCS/client_api_examples: qtexample: demonstrate multiple mpv instanceswm42015-01-062-0/+10
| | | | Multiple client API contexts can exist in the same process.
* sub: add option to not scale subtitles with windowwm42015-01-051-0/+11
| | | | | | | | | | | | | --sub-scale-by-window=no attempts to keep subs always at the same pixel size. The implementation is a bit all over the place, because it compensates already done scaling by an inverse scale factor, but it will probably do its job. Fixes #1424. (The semantics and name of --sub-scale-with-window are kept, and this adds a new option - the name is confusingly similar, but it's actually analogue to --osd-scale-by-window.)
* DOCS/client_api_examples: qml: add test for vo_cmdlinewm42015-01-053-13/+29
|
* vo_opengl_cb: support changing options at runtimewm42015-01-051-0/+5
| | | | | Like vo_opengl, but way messier, because the already messy config handling meets threading.
* manpage: document details of option quoting and escapingwm42015-01-051-4/+56
| | | | | Makes me realize what a mess this is. I hope it can be simplified in the far future, preferably by killing the suboption parser completely.
* vf_vapoursynth: autodetect CPU countwm42015-01-051-1/+4
| | | | | | | | This adds an "auto" choice to the concurrent-frames suboption, and makes it the default. I'm not so sure about making this the default, though. It could lead to excessive buffering with large CPU counts. But we'll see.
* manpage: clarify syntax for color optionswm42015-01-051-1/+1
| | | | | | | | | Options which take colors accept two variants. The first is "r/g/b/a", the second is "#AARRGGBB". Since they put alpha at different places, it's probably better to document the second variant explicitly. (It's a bit strange that they put alpha in different places, but on the other hand, it's kind of natural. The second variant should probably be considered deprecated.)
* manpage: fix --video-unscaled descriptionwm42015-01-041-3/+2
| | | | This was changed a long time ago in commit 37319ab6.
* vf_vapoursynth: pass through container FPS valuewm42015-01-031-0/+9
| | | | | | | | This is basically a hack; but apparently a needed one, since many vapoursynth filters insist on having a FPS set. We need to apply the FPS override before creating the filters. Also change some terminal output related to the FPS value.
* manpage: vf_vapoursynth: document mpv-specific predefined variableswm42015-01-031-0/+11
|
* manpage: talk about one script, not multiple scriptsRyan Jacobs2015-01-021-2/+2
| | | | | | There aren't multiple scripts. We're just talking about one: youtube-dl. Signed-off-by: wm4 <wm4@nowhere>
* OSC: add osc-message script command (wip)ChrisK22015-01-021-0/+4
|
* vo_opengl_old: remove ancient ATI-specific YUV conversionswm42015-01-021-5/+1
| | | | | | | | | | While there's no actual need to get rid of these, I want to make sure nobody actually needs this stuff, and removing it is the best way to get to know this. We still can revert this commit if it turns out there is a significant need for this stuff. The final goal is removing vo_opengl_old entirely. Add a warning, which basically announces this intention.
* build: try to make examples build both in-tree and out-of-treewm42015-01-022-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | The examples simple.c and cocoabasic.m can be compiled without installing libmpv. But also, they didn't use the correct include path libmpv programs normally use, so they couldn't be built with a properly installed system-libmpv. That's pretty bad for examples, which are supposed to show how to use libmpv correctly. So do some bullshit that symlinks libmpv to a "mpv" include directory under the build directory. This name-mismatch is a direct consequence of the bullshit done in 499a6758 (requested in #539 for dumb reasons). (We don't want to name the client API headers directory "mpv", because that would be too unspecific, and clashes with having the mpv binary in the same directory.) If you have spaces or other "unusual" characters in your paths, the build will break, because I couldn't find out where waf hides its function to escape shell parameters (or a way to invoke programs without involving the shell). Neither does such a thing to be documented, nor do they seem to have a clear way to do this in their code. This also doesn't compile the Qt examples, because everything becomes even more terrible from there on.
* DOCS/client_api_examples: move all examples into their own subdirswm42015-01-016-13/+20
| | | | | Also get rid of shared.h; it actually doesn't have much value. Just copy the tiny function it contained into the 2 files which used it.
* DOCS/client_api_examples: don't throw char* in C++ codewm42015-01-012-6/+9
| | | | | | | C++ is the worst language ever, and allows throwing any type, even if it doesn't make sense. In this case, we were throwing char*, which the runtime typically treats as opaque, instead of printing it as message if such an exception was not caught.
* manpage: fix typowm42015-01-011-1/+1
|
* command: make the "run" command work on Windows toowm42015-01-011-1/+0
| | | | | | | | | Do so by using mp_subprocess(). Although this uses completely different code on Unix too, you shouldn't notice a difference. A less ncie thing is that this reserves an entire thread while the command is running (which wastes some memory for stack, at least). But this is probably still the simplest way, and the fork() trick is apparently not implementable with posix_subprocess().
* client API: add function to create new mpv_handles from existing oneswm42014-12-311-0/+3
| | | | | | | This may or may not be useful for client API users. Fold this API extension into the previous API bump. The previous bump was only yesterday, so it's ok.
* vo_opengl_cb: simplify API uninitializationwm42014-12-311-9/+3
| | | | | | | | | | | Until now, calling mpv_opengl_cb_uninit_gl() at a "bad moment" could make the whole thing to explode. The API user was asked to avoid such situations by calling it only in "good moments". But this was probably a bit too subtle and could easily be overlooked. Integrate the approach the qml example uses directly into the implementation. If the OpenGL context is to be unitialized, forcefully disable video, and block until this is done.
* DOCS/client_api_examples: add an explicit licensewm42014-12-302-2/+14
| | | | IANAL, but we don't give a shit what you do with this code.
* DOCS/client_api_examples: qtexample: use queued signalswm42014-12-303-20/+19
| | | | | | | | Use queued signals instead of QEvent for the wakeup notification. This is slightly nicer, and reduces the chance that the event (QEvent::User) could clash with other code using the same event. Also switch to modern connect() syntax.
* DOCS/client_api_examples: qtquick: fix destructionwm42014-12-304-38/+35
| | | | | | | | | | | | | | | | Destruction (e.g. when closing the window) was a bit broken. This commit fixes some possible crashes, and should make lifetime management relatively sane. (Still a bit complex, though. Maybe this code should be moved into a tiny library.) QtQuick runs the renderer on a separate thread. This thread is rather loosely connected to the main thread. The loose separation is enforced by the API, which also makes coordination of initialization and destruction harder. Throw refcounting at the problem, which fixes it. The refcounting wrapper introduced in the previous commit is used for this. Also contains some general cleanups.
* client API: qthelper: add a refcounting wrapper around mpv_handlewm42014-12-301-0/+1
| | | | | This is useful to deal with crazy Qt object lifetime issues (the following commit needs it).
* command: add filtered-metadata propertywm42014-12-291-0/+4
| | | | | Goes in hand with the previous commit; the main purpose is to easily show on OSD what is shown on terminal.
* player: filter tags, add --display-tags optionwm42014-12-291-0/+8
| | | | | | | | This attempts to increase user-friendliness by excluding useless tags. It should be especially helpful with mp4 files, because the FFmpeg mp4 demuxer adds tons of completely useless information to the metadata. Fixes #1403.
* player: make --shuffle/--merge-files affect runtime loaded playlistswm42014-12-291-4/+0
| | | | | | | Until now, these options took effect only at program start. This could be confusing when e.g. doing "mpv list.m3u --shuffle". Make them always take effect when a playlist is loaded either via a playlist file, or with the "loadlist" command.
* ao_portaudio: remove this audio outputwm42014-12-291-13/+0
| | | | | It's just completely useless. We have good native support for all 3 desktop platforms, and ao_sdl or ao_openal as fallbacks.
* manpage: document new --stream-dump behaviorwm42014-12-271-0/+3
| | | | That's probably a good idea.
* command: overlay_add: more flexible treatment of offset parameterwm42014-12-261-7/+9
| | | | | | | | | | | | | | Essentially, don't make it the mmap() argument, and just add it to the memory address. This hides tricky things like alignment reequirements from the user. Strictly speaking, this is not entirely backwards compatible: this adds the regression that you can't access past 2 or 4 GB of a file on 32 bit systems anymore. But I doubt anyone cared about this. In theory, we could be clever, and just align the offset manually and pass that to mmap(). This would also be transparent to the user, but minimally more effort, so this is left as exercise to the reader.
* win32: add mmap() emulationwm42014-12-261-5/+0
| | | | | | | | Makes all of overlay_add work on windows/mingw. Since we now don't explicitly check for mmap() anymore (it's always present), this also requires us to make af_export.c compile, but I haven't tested it.
* manpage: lua: fix a linkwm42014-12-261-1/+1
|
* manpage: fix typowm42014-12-251-2/+2
| | | | Fixes #1384.
* manpage: lua: fixes and improvementswm42014-12-251-20/+15
| | | | Some things were outdated, or outright wrong.
* ipc: add enable_event and disable_event commandswm42014-12-241-0/+8
| | | | This was requested.
* command: extend revert_seek commandwm42014-12-171-2/+11
| | | | | "revert_seek mark" basically forces the seekback point. It's basically a one-way bookmark.
* vo_opengl: switch default FBO format to rgba, use GL_RGBAwm42014-12-171-1/+1
| | | | | | | | | | I'm hoping this is generally more compatible, and it works with GLES. This probably has not much of an effect on desktop GL. It also switches only the default format for --vo=opengl, not --vo=opengl-hq. "-hq" already uses GL_RGBA16, though since it's a sized format, the story is a bit different, and it won't work on GLES either.
* manpage: ao_alsa: link upmix wiki entrywm42014-12-161-2/+6
| | | | | | Also clarify the statement about what we expect to happen by default. It's well possible that distros at some point will fix their ALSA configuration, and e.g. enable the upmix plugin by default.
* audio: make native channel count the default instead of stereo downmixwm42014-12-152-4/+34
| | | | | | | | | | | | | | This should work well with most audio APIs, except ALSA. A long-winded explanation is provided how to make ALSA multichannel output work. All other AOs should have no such problems. Of course it's possible that previously unknown issues arise, because I assume that enabling multichannel audio is actually relatively rare. This also disables codec downmix by default, which could change the audio output due to different mixing in the codec and libavresample. Fixes #1313.
* vo_opengl: remove quadbuffer/anaglyph stereo 3D renderingwm42014-12-151-15/+0
| | | | | | | | Obscure feature, and I've never heard of anyone using it. The anaglyph effects can be reproduced with vf_stereo3d. The only thing that can't be reproduced with it is "quadbuffer", which requires special and expensive hardware.
* options: deprecate 'lua' based options/dirs for 'script'Avi Halachmi (:avih)2014-12-154-23/+23
| | | | | | | | | | | | - --lua and --lua-opts change to --script and --script-opts - 'lua' default script dirs change to 'scripts' - DOCS updated - 'lua-settings' dir was _not_ modified The old lua-based names/dirs still work, but display a warning. Signed-off-by: wm4 <wm4@nowhere>
* command, dvd: add property which returns list of DVD titleswm42014-12-131-0/+27
| | | | | | | | | This was requested. It seems libdvdread can't get the duration for titlesets other than the currently opened title. The data structures contain dangling pointers for these, and MPlayer works this around by opening every title separately for the purpose of dumping the title list.
* DOCS: add missing close bracketBen Boeckel2014-12-121-1/+1
|
* options: add option for ignoring patch in resume mechanismwm42014-12-131-0/+3
| | | | | | Whatever. Fixes #1281.
* player: add a --keep-open=always modewm42014-12-121-9/+20
| | | | | | | | The --keep-open behavior was recently changed to act only on the last file due to user requests (see commit 735a9c39). But the old behavior was useful too, so bring it back as an additional mode. Fixes #1332 (or rather, should help with it).
* DOCS/crosscompile-mingw: updatewm42014-12-121-7/+15
| | | | Unrecommend mingw-w64-cmake, point out MXE host requirements.
* command: add properties for current bitratewm42014-12-121-0/+11
| | | | Fixes #1192.
* demux: don't always make --cache-secs override --demuxer-readahead-secswm42014-12-121-1/+4
| | | | It's confusing. Whether the new behavior is less confusing... whatever.
* DOCS/contribute.md: remove unintentional headlineselsta2014-12-111-2/+2
| | | | The # from the IRC channel made it appear as a headline.
* manpage: fix mistake in --video-zoom mentionwm42014-12-111-1/+1
| | | | Fixes #1331.
* command: add "idle" propertywm42014-12-101-0/+4
| | | | Yes, it's redundant with events.
* manpage: update the ao_alsa example (no-block was removed)wm42014-12-091-2/+2
| | | | | Also, don't use the "hw" device, but "plughw". ALSA docs say never to use "hw".
* DOCS/client_api_examples: remove nonsensewm42014-12-092-4/+3
| | | | | | | I thought setSamples() was some funky abstraction to set the number of components, but it's actually something else. Also fix the include paths.
* options: enable --ytdl by defaultwm42014-12-092-6/+3
| | | | Let's see who complains...
* vo_opengl_cb: simplify reconfigure, render transparent if unconfiguredwm42014-12-091-0/+3
| | | | | | | I think that's expected; mpv shouldn't draw anything while no video is active. This doesn't blend transparently, though. Also document the vo_opengl_cb thing.
* vo_opengl: make background color configurablewm42014-12-091-0/+4
| | | | | This mainly affects the black bars that are drawn if the window and video aspect ratios mismatch.
* client API: expose OpenGL rendererwm42014-12-097-0/+236
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds API to libmpv that lets host applications use the mpv opengl renderer. This is a more flexible (and possibly more portable) option to foreign window embedding (via --wid). This assumes that methods like context sharing and multithreaded OpenGL rendering are infeasible, and that a way is needed to integrate it with an application that uses a single thread to render everything. Add an example that does this with QtQuick/qml. The example is relatively lazy, but still shows how relatively simple the integration is. The FBO indirection could probably be avoided, but would require more work (and would probably lead to worse QtQuick integration, because it would have to ignore transformations like rotation). Because this makes mpv directly use the host application's OpenGL context, there is no platform specific code involved in mpv, except for hw decoding interop. main.qml is derived from some Qt example. The following things are still missing: - a way to do better video timing - expose GL renderer options, allow changing them at runtime - support for color equalizer controls - support for screenshots
* DOCS: Improve documentation of --ytdl-format optionChrisK22014-12-071-1/+4
| | | | As suggested in #1321
* options: add a 'once' idle modeStefano Pigozzi2014-12-071-1/+4
| | | | | This allows to make mpv wait for file open events at start but close after it is done playing the first playlist.
* DOCS, OSC: Un-document removed seektooltip optionChrisK22014-12-051-4/+0
|
* DOCS, OSC: Document layout optionChrisK22014-12-051-1/+6
|
* ao_alsa: simplify, remove no-block suboptionwm42014-12-051-2/+0
| | | | | | | | | | | If no-block was given, the device would be opened with SND_PCM_NOBLOCK. Also, after opening, blocking mode was unconditionally enabled anyway with snd_pcm_nonblock(). Further, if opening with SND_PCM_NOBLOCK failed, opening was retried without this flag. This doesn't make any sense to me, and I've never heard of someone using this suboption. I suspect it has to do with ancient ALSA bugs or API caveats. Remove it and simplify the code.
* video/filter: kill vf_pp (libpostproc)wm42014-12-031-150/+0
| | | | | | | | | This is an ancient filter, and we assume it's not useful anymore. If you really want this, it's still available in libavfilter (e.g. via --vf=lavfi=[pp...]). The disadvantage is that mpv doesn't pass through QP information to libavfilter. (This was probably the reason vf_pp still was part of mpv - it was slightly easier to pass QP internally.)
* DOCS/client-api-changes: mark release 0.7.0wm42014-12-021-0/+1
|
* cocoa: allow to black out other display when going fsStefano Pigozzi2014-12-011-0/+4
| | | fixes #1302
* manpage: rename input.conf supersectionwm42014-11-291-3/+11
| | | | | | | | By now, input.conf is actually just a small part of input handling. Rename the section to something else ("command interface" was the first reasonable thing that came to mind). Also fix a minor typo further down.
* manpage: lua: fix examplewm42014-11-291-2/+2
| | | | Oops.
* manpage: minor fixeswm42014-11-293-10/+9
| | | | | Also update the Lua example. The "pause" event was declared deprecated, so the example should use the newer API.
* vo_opengl: enable fancy-downscaling by default for opengl-hqwm42014-11-291-1/+1
|
* vo_opengl: disable fancy-downscaling for anamorphic videowm42014-11-291-0/+3
| | | | Includes some arbitrary minor refactoring.
* lua: add a function that formats Lua values as stringswm42014-11-291-0/+4
| | | | | | | | Yep, Lua is so crappy that the stdlib doesn't provide anything like this. Repurposes the undocumented mp.format_table() function and moves it to mp.utils.
* DOCS/crosscompile-mingw: updateTimothy Gu2014-11-261-8/+8
| | | | | | Add `.static` for MXE targets. Signed-off-by: wm4 <wm4@nowhere>
* manpage: lua: fix typo paramater -> parameterAlessandro Ghedini2014-11-261-1/+1
|
* player: add option not to use OSD/fontconfigwm42014-11-251-0/+10
| | | | | | | Makeshift-solution for working around certain fontconfig issues. With --use-text-osd=no, libass and fontconfig won't be initialized, and fontconfig won't block everything with scanning for fonts.
* input, lua: redo input handlingwm42014-11-233-9/+40
| | | | | Much of it is the same, but now there's the possibility to distinguish key down/up events in the Lua API.
* manpage: update utils.subprocess() for WindowsJames Ross-Gowan2014-11-221-2/+3
|
* lua: add a way to add repeatable key bindingswm42014-11-211-1/+5
| | | | For these, autorepeat is enabled.
* input: add a prefix to make any binding act on key repeatwm42014-11-201-1/+3
| | | | | | The fact that it's a generic command prefix that is parsed even when using the client API is a bit unclean (because this flag makes sense for actual key-bindings only), but it's less code this way.
* command: add drop_bufferswm42014-11-201-0/+4
| | | | | | | | | | | | | | | This command was actually requested on IRC ages ago, but I forgot about it. The main purpose is that the decoding state can be reset without issuing a seek, in particular in situations where you can't seek. This restarts decoding from the middle of the packet stream; since it discards the packet buffer intentionally, and the decoder will typically not output "incomplete" frames until it has recovered, it can skip a large amount of data. It doesn't clear the byte stream cache - I'm not sure if it should.
* options: add --ytdl-format option for youtube-dl formatJaime Marquínez Ferrándiz2014-11-201-0/+6
| | | | | | | | | It's passed with the '--format' option to youtube-dl. If it isn't set, we don't pass '--format best' so that youtube-dl can use the options from its configuration file. Signed-off-by: wm4 <wm4@nowhere>
* manpage: changes.rst: add youtube-dl scriptwm42014-11-191-0/+4
|
* input.conf: add some additional bindingswm42014-11-191-0/+7
|
* player: integrate ytdl_hook.luawm42014-11-191-0/+12
|
* manpage: fix typowm42014-11-191-1/+1
|
* demux_mkv: add an option for compatibility with Haaliwm42014-11-182-0/+8
| | | | This was requested on IRC.
* manpage: document vo_cmdline commandwm42014-11-181-1/+8
|
* command: add an ab_loop commandwm42014-11-182-2/+7
| | | | | | As suggested in #1241; to make using the feature easier. Also add better OSD-formatting for the ab-loop-a/b properties.
* vo_direct3d: fix texture-memory sub-option, extend itwm42014-11-181-11/+22
| | | | | | | | | | This sub-option was turned into a flag when the sub-option parser was changed to the generic one (probably accidentally). Turn it into a proper choice-option. Also, adjust what the options do. Though none of this probably makes much sense; the default should work, and if it doesn't, the GPU/driver is probably beyond help.
* command: implement A-B loopswm42014-11-182-0/+9
| | | | | | | | | | | | | Probably needs to be polished a bit more. Also, might require a key binding that can set/clear the loop points in a more intuitive way. For now, something like this can be put into input.conf to use it: ctrl+y set ab-loop-a ${time-pos} # set A ctrl+x set ab-loop-b ${time-pos} # set B ctrl+c set ab-loop-a no # clear (mostly) Fixes #1241.
* command: adjust previous commitwm42014-11-171-6/+7
| | | | | | | | Due to the current code structure, the "current" entry and the entry which is playing can be different. This is probably silly, but still try to mark the entries correctly. Refs #1260.
* command: playlist property: return if an entry is currently playingwm42014-11-171-0/+8
| | | | | | | | This actually doesn't even write/return the new sub-property, because I dislike the idea of dumping that field for every single playlist entry, even though it's "needed" only for one. Fixes #1260.
* input.conf: Don't make ENTER exit the playerChrisK22014-11-151-1/+1
| | | | Apparently this is confusing.
* man: document osc seekbarstyle optionahoka2014-11-151-0/+4
|
* demux_mkv: adjust subtitle preroll again (2)wm42014-11-151-0/+19
| | | | | | | | | | | | | | Make the changes started in commit c827ae5f more eloborate, and provide an option to control the amount of data read before the seek-target. To achieve this, rewrite the loop that finds the lowest still acceptable target cluster. It is now searched by time instead of file position. The behavior (both with and without preroll option) may be different from before this change, although it shouldn't be worse. The change demux_mkv_read_cues() fixes a bug: when seeking after playing normally, the code would erroneously assume that durations are set. This doesn't happen if the first operation after loading was a seek instead of playback.
* vo_opengl: allow setting different filters for downscalingwm42014-11-141-1/+6
|
* command: export some option metadatawm42014-11-131-1/+24
| | | | | | | This might be interesting for GUIs and such. It's probably still a little bit insufficient. For example, the filter and audio/video output lists are not available through this.
* command: rename "option-flags" property to "option-info"wm42014-11-131-3/+3
|
* command: export mpv configure arguments as propertywm42014-11-131-0/+4
| | | | | It seems strange that a client API user can't get this string, other than analyzing the mpv log output.
* manpage: adjust --hwdec docswm42014-11-121-6/+8
|
* client API: deprecate some eventswm42014-11-082-22/+12
| | | | | | | | | | | Following the discussion in #1253. The events won't be removed for a while, though. (Or maybe never, unless we run out of bits for the uint64_t event mask.) This is not a real change (the events still work, and the alternative mechanisms were established a few API revisions earlier), but for the sake of notifying API users, update DOCS/client-api-changes.rst.
* command: export the flag whether an option was set on commandlinewm42014-11-071-0/+12
| | | | Can be useful for certain scripts; I think someone requested this.
* audio: add --audio-client-name optionwm42014-11-071-0/+5
| | | | | | The main need I see for this is with libmpv - it would be confusing if some application showed up as "mpv" on whateverthehell PulseAudio uses it for (generally it does show up on various PA GUI tools).
* command: add display-names propertyKevin Mitchell2014-11-071-0/+4
| | | | | | | Call VOCTRL_GET_DISPLAY_NAMES it when the property is requested. The vo should return the names of the displays that the mpv window is covering. For example, with x11 vos, xrandr names LVDS1, HDMI1, etc.
* command: add window-minimized property (X11 only)wm42014-11-021-0/+3
| | | | | | More or less requested by #1237. Should be simple to extend this to other backends.
* command: expose mpv version as propertywm42014-11-021-0/+4
| | | | A client API user has no other way to know the version.
* player: add --chapters-file optionwm42014-11-021-0/+4
| | | | | | | | Note that you can't pass .cue or .edl files to it, at least not yet. Requested in context of allowing to specify custom chapters. For that to work well, we probably need to add some sort of chapter metadata pseudo-demuxer.
* manpage: update --playlist commentswm42014-11-022-9/+10
| | | | | | | | | | | | | | Using the --playlist option is no longer recommended. A while ago, mpv rewrote all playlist parsers and added some minimal security mechanisms (like not allowing local file access or unsafe protocols in remote playlists). Further, mpv can load playlists by passing them as normal file arguments, without the option. Now, --playlist is needed only in these situations: 1) loading plaintext files 2) disabling additional security mechanisms (e.g. using a remote playlist to play local files)
* ipc: make it possible to receive log messageswm42014-11-011-0/+10
| | | | | The receiving part was implemented, but since no messages are enabled by default, it couldn't be used.
* ipc: add a command to retrieve API versionwm42014-11-011-0/+4
|
* manpage: ipc: fix command name for observe_propertywm42014-11-011-1/+1
|
* player: update meaning of drop_frame_cntwm42014-11-011-3/+4
| | | | | Rename the variable, update comments, and update the documentation of the property which returns its value.
* player: change framedrop display in the status linewm42014-10-311-8/+9
| | | | | Hopefully less confusing, and hopefully doesn't exceed the terminal width in any situation.
* options: accept --audio-channels=autowm42014-10-301-2/+3
| | | | This sounds much more intuitive, while "empty" was a bit of a WTF.
* client API: qthelper: add set_option_variant()wm42014-10-301-0/+1
|
* player: add an option to abort playback on partial init failureswm42014-10-282-0/+8
| | | | | | This is probably what libmpv users want; and it also improves error reporting (or we'd have to add a way to communicate such mid-playback failures as events).
* client API: better error reportingwm42014-10-281-0/+2
| | | | Give somewhat more information on playback failure.
* client API: add an enum for mpv_event_end_file.reasonwm42014-10-281-0/+1
| | | | | | | | | Using magic integer values was an attempt to keep the API less verbose. But it was probably not a good idea. Reason 1 (restart) is not made explicit, because it is not used anymore starting with the previous commit. For ABI compatibility, the value is left as a hole in the enum.
* manpage: clarify loadfile append-play modewm42014-10-281-1/+3
| | | | Documents the behavior introduced with the previous commit.
* libmpv: cocoa: add basic menuStefano Pigozzi2014-10-271-10/+7
|
* command: add audio-device propertywm42014-10-271-0/+13
| | | | Meant for changing the --audio-device at runtime.
* audio: add command/function to reload audio outputwm42014-10-271-1/+1
| | | | | Anticipated use: simple solution for dealing with audio APIs which request configuration changes via events.
* manpage: options: various fixesAlessandro Ghedini2014-10-261-9/+9
|
* dxva2: use optimized memcpyJames Ross-Gowan2014-10-261-1/+1
| | | | | | At least on my machine, reading back the frame with system memcpy is slower than just using software rendering. Use the optimized gpu_memcpy from LAV to speed things up.
* Drop libquvi supportwm42014-10-254-39/+5
| | | | | | | | | | | No development activity (or even any sign of life) for almost a year. A replacement based on youtube-dl will probably be provided before the next mpv release. Ask on the IRC channel if you want to test. Simplify the Lua check too: libquvi linking against a different Lua version than mpv was a frequent issue, but with libquvi gone, no direct dependency uses Lua, and such a clash is rather unlikely.
* video: initial dxva2 supportwm42014-10-251-0/+1
| | | | | Shamelessly stolen from ffmpeg. It probably doesn't work - you can debug it yourself.
* manpage: use the proper environment variable for CSIDL_APPDATAwm42014-10-251-4/+8
|
* command: add vo-configured propertywm42014-10-241-0/+5
| | | | | | | | | So a client API user can know when a window is created or destroyed. Also might be useful for the OSC: it could disable itself if video is disabled. Before this commit, there were only indirect ways of detecting this.
* osd: slightly change default styleMartin Herkt2014-10-231-3/+3
| | | | | Wider vertical margins, slightly thicker border and larger font size should be an improvement.
* command: add a "cached" mode to sub_addwm42014-10-231-0/+7
| | | | | This avoids reloading a subtitle if it was already added. In all cases, the subtitle is selected.
* manpage: ipc: comment about invalid UTF-8wm42014-10-231-0/+12
| | | | | | | | | | | | | | | | | | | | Some rationale for the documented/suggested behavior: It's not really clear what to do with invalid UTF-8, since JSON simply can't transport this information. Maybe you could transfer such strings as byte arrays, but that would be very verbose and inconvenient, and would pose the problem that it's hard to distinguish between strings encoded in this way and actual arrays. There are many other ways how this could be handled. For example, you could replace invalid sequences with '?'. Or you could do it like Python, and use certain reserved unicode codepoints to "tunnel" through invalid bytes. Which of these works really depends on the application. And since this can be done entirely on the byte level (invalid UTF-8 sequences can appear only in strings in our case), it's best to leave this to the receiver.
* win32: change config path prioritieswm42014-10-231-0/+29
| | | | | | | | | | | | | | | | | Assume mpv.exe is located in $mpv_exe_dir, then config files were preferably loaded from "$mpv_exe_dir/mpv". This was mostly traditional, and inherited from MPlayer times. Reverse the config path priority order, and prefer $CSIDL_APPDATA/mpv as main config path. This also fixes behavior when writing watch_later configs, and mpv is installed in a not-writable path. It's possible that this will cause regressions for some users, if the change in preference suddenly prefers stale config files (which may happen to longer around in the appdata config dir) over the user's proper config. Also explicitly document the behavior.
* reflect recent coreaudio changes in the manualStefano Pigozzi2014-10-231-11/+4
|
* command: make reverse cycle_values match up with forward onewm42014-10-211-1/+1
| | | | | | | | | The behavior of reverse cycling (with the "!reverse" magic value) was a bit weird and acted with a "delay". This was because the command set the value the _next_ command should use. Change this and make each command invocation select and use the next command directly. This requires an "uninitialized" special index in the counter, but that is no problem at all.
* command: add cursor-autohide propertywm42014-10-211-0/+4
| | | | | | | | | | | Allows properly changing/updating the cursor state. Useful for client API window embedding, because the host application may not want the mpv window to grab mouse input, and this has to manually handle the cursor. Changing the cursor of foreign windows is usually not sane. It might make sense to allow changing the cursor icon, but that would be much more complicated, so I won't add it unless someone actually requests it.
* command: add playback-abort propertywm42014-10-211-0/+5
| | | | Now this is obscure.
* command: add video-rotate propertywm42014-10-211-0/+3
|
* player: add stream selection by ffmpeg indexwm42014-10-211-0/+9
| | | | | | | | | Apparently using the stream index is the best way to refer to the same streams across multiple FFmpeg-using programs, even if the stream index itself is rarely meaningful in any way. For Matroska, there are some possible problems, depending how FFmpeg actually adds streams. Normally they seem to match though.
* command: add field-dominance propertyKevin Mitchell2014-10-211-0/+3
|
* lua: add convenience function for hookswm42014-10-211-0/+26
| | | | So the user doesn't have to care about the awkward low-level details.
* command: extend sub_add commandwm42014-10-211-1/+17
|
* manpage: fix a typoBen Boeckel2014-10-201-1/+1
|
* manpage: ipc: mention unavailability on Windowswm42014-10-191-1/+3
| | | | | | Windows doesn't have unix domain sockets, and can't handle sockets and pipes in an uniform way. Only the libwaio fallback code is available, which doesn't do JSON.
* manpage: ipc: mention the socat toolwm42014-10-191-1/+2
| | | | | | | | This is not realy obvious, so I assume this is a helpful hint. Although the usefulness of such an approach is probably influenced by the fact that the player might send events that arrive in the short window while the socket is connected.
* ipc: skip empty and commented lineswm42014-10-191-1/+5
|
* ipc: accept both JSON and "old" commandswm42014-10-192-1/+11
| | | | Minimizes the differences between --input-file and --input-unix-socket.
* audio: quote devices in --audio-device=helpwm42014-10-191-1/+3
| | | | | The output is a bit confusing. Quoting the device name probably helps a little bit; also add minimal explanations to the manpage.
* lua: expose JSON parserwm42014-10-191-0/+14
| | | | | | | The JSON parser was introduced for the IPC protocol, but I guess it's useful here too. The motivation for this commit is the same as with 8e4fa5fc (again).
* lua: add an utility function for starting processeswm42014-10-191-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because 1) Lua is terrible, and 2) popen() is terrible. Unfortunately, since Unix is also terrible, this turned out more complicated than I hoped. As a consequence and to avoid that this code has to be maintained forever, add a disclaimer that any function in Lua's utils module can disappear any time. The complexity seems a bit ridiculous, especially for a feature so far removed from actual video playback, so if it turns out that we don't really need this function, it will be dropped again. The motivation for this commit is the same as with 8e4fa5fc. Note that there is an "#ifndef __GLIBC__". The GNU people are very special people and thought it'd be convenient to actually declare "environ", even though the POSIX people, which are also very special people, state that no header declares this and that the user has to declare this manually. Since the GNU people overtook the Unix world with their very clever "embrace, extend, extinguish" strategy, but not 100%, and trying to build without _GNU_SOURCE is hopeless; but since there might be Unix environments which support _GNU_SOURCE features partially, this means that in practice "environ" will be randomly declared or not declared by system headers. Also, gcc was written by very clever people too, and prints a warning if an external variable is declared twice (I didn't check, but I suppose redeclaring is legal C, and not even the gcc people are clever enough to only warn against a definitely not legal C construct, although sometimes they do this), ...and since we at mpv hate compiler warnings, we seek to silence them all. Adding a configure test just for a warning seems too radical, so we special-case this against __GLIBC__, which is hopefully not defined on other libcs, especially not libcs which don't implement all aspects of _GNU_SOURCE, and redefine "environ" on systems even if the headers define it already (because they support _GNU_SOURCE - as I mentioned before, the clever GNU people wrote software THAT portable that other libcs just gave up and implemented parts of _GNU_SOURCE, although probably not all), which means that compiling mpv will print a warning about "environ" being redefined, but at least this won't happen on my system, so all is fine. However, should someone complain about this warning, I will force whoever complained about this warning to read this ENTIRE commit message, and if possible, will also force them to eat a printed-out copy of the GNU Manifesto, and if that is not enough, maybe this person could even be forced to convince the very clever POSIX people of not doing crap like this: having the user to manually declare somewhat central symbols - but I doubt it's possible, because the POSIX people are too far gone and only care about maintaining compatibility with old versions of AIX and HP-UX. Oh, also, this code contains some subtle and obvious issues, but writing about this is not fun.
* manpage: ipc: explain security implicationswm42014-10-171-0/+8
| | | | | | It's kind of obvious, since the protocol by design has to allow you to read (loadfile) and write (screenshot_to) random files, but better make it explicit so that nobody accidentally does something insecure.
* DOCS/client_api_examples: qtexample: don't require Qt 5.xwm42014-10-171-0/+7
| | | | Exclude the worthless Qt 5.0-only demo code on Qt 4.x.
* manpage: add JSON IPC documentationAlessandro Ghedini2014-10-174-2/+147
|
* cocoa: allow mouse events to bubble up with no-input-cursorStefano Pigozzi2014-10-171-0/+1
| | | | | Previously we didn't report events to the core, but still prevented the events to travel on the responder chain.
* options: don't load per-file config files by defaultwm42014-10-171-1/+1
| | | | | | Generally useless feature, and might be slightly dangerous if paths can "escape" from the profile dir. (Normally this shouldn't be possible, though.)
* sub: adjustments to --ass-style-override optionwm42014-10-171-0/+1
| | | | | | | | | | Now requires newest libass git. Since this feature wasn't part of a libass release yet, I'm not bothering making the mpv code compatible with as how it was previously implemented (it will just be disabled with any older libass). CC: @mpv-player/stable (because mpv-build uses libass git, and this breaks the feature)
* DOCS/client_api_examples: qtexample: set a magic Qt flagwm42014-10-161-0/+1
| | | | | | Otherwise, other magic Qt stuff can be magically broken. (No, I don't know the real reasons for this.)
* DOCS/client_api_examples: qtexample: embedding works on Cocoawm42014-10-161-2/+1
|
* manpage: fix reference to a defunct optionshdown2014-10-161-2/+2
| | | | The change was made with faad40aad92d51290ef2fc4d94277eca89863873.
* command: allow setting per-file options at runtimewm42014-10-151-0/+10
| | | | | The intended use-case is for doing this at load time, after the load command was issued. (See following commit.)
* stream_lavf: expose concat://wm42014-10-141-0/+4
| | | | | | | Apparently there's an use for this; see #1178. I won't redocument obscure FFmpeg features, so add a hint to the manpage that some protocols are documented in FFmpeg instead.
* DOCS/client_api_examples: qtexample: remove debugging codewm42014-10-141-2/+1
| | | | Forgotten.
* DOCS/client_api_examples: qtexample: stuffwm42014-10-133-7/+31
| | | | | | Dump chapters and track list to the log for demo purposes. Compile in debug mode.
* client API: add qthelper.hppwm42014-10-131-0/+1
| | | | | | | | | | | | | | This provides some helper functions and classes for C++/Qt. As the top of qthelper.hpp says, this is built on top of the client API, and is a mere helper provided for convenience. Maybe this should be a separate library, but on the other hand I don't see much of a point in that. It's also header-only, but C++ people like such things. This makes it easier for us, because we don't need to care about ABI compatibility. The client API doesn't change, but bump it so that those who are using this header can declare a proper dependency.
* DOCS/edl-mpv: minor clarificationwm42014-10-121-1/+1
|
* vf_vapoursynth: add standalone Lua scriptingwm42014-10-121-0/+25
|
* libmpv/cocoa: allow clients to use mpv event systemStefano Pigozzi2014-10-121-11/+26
| | | | | | | | | | This allows mpv's view to take key and send events to mpv's core. To set key status correctly, clients must call -[NSWindow selectNextKeyView:] during reconfig on the main thread. All is 'documented' in the cocoabasic example. If someone knows a better way to handle giving key to the embedded view, let me know!
* lua: add command_native() functionwm42014-10-111-0/+9
| | | | This is the Lua equivalent of mpv_command_node().
* client API: add mpv_command_node[_async]wm42014-10-111-0/+1
| | | | | | | | | Allows passing native types as arguments. Also some minor doc improvements, including giving some (natural) improvements to mpv_free_node_contents(). Note: mpv_command_node_async() is completely untested.
* command: make audio device list available to the client APIwm42014-10-101-0/+21
|
* Revert "player: --save-position-on-quit should always work"wm42014-10-101-3/+4
| | | | | | | | | This reverts commit 45c8b97efbaff7a5031b008223eeed56f7b0607a. Some else complained (github issue #1163). The feature requested in #1148 will be implemented differently in the following commit.
* libmpv/cocoa: don't start the event monitorStefano Pigozzi2014-10-091-0/+5
| | | | | | The event monitor is used to get keyboard events when there is no window, but since it is a global monitor to the current process, we don't want it in a library setting.
* libmpv/cocoa: make global events work and get rid of is_cplayerStefano Pigozzi2014-10-092-4/+9
| | | | | | | After @frau's split of macosx_events from macosx_application, `is_cplayer' is not needed anymore. At the moment only global events such as Media Keys and Apple Remote work, because the VO-level ones were hardcoded to be disabled. (that will be fix in a later commit ).
* manpage: fix --audio-pitch-correction descriptionAlessandro Ghedini2014-10-091-4/+4
| | | | Add closing ">" and specify what is the default value.
* audio: add device selection & listing with --audio-devicewm42014-10-091-0/+17
| | | | | | | Not sure how good of an idea this is. This commit doesn't add support for this to any AO yet; the AO implementations will follow later.
* manpage: improve --wid descriptionwm42014-10-091-8/+19
| | | | In particular, add a basic description of how Cocoa embedding works.
* client API: rename --input-x11-keyboard to --input-vo-keyboardwm42014-10-093-4/+9
| | | | | Apparently we need this for Cocoa too. (The option was X11 specific in the hope that only X11 would need this hack.)
* cocoa: allow to embed into an arbitrary NSViewStefano Pigozzi2014-10-081-1/+1
| | | | | Basically add if guards on all the problematic features. I'm still thinking about a better way to handle this, but for the time being, this will do.
* client API: introduce numeric log levelswm42014-10-081-0/+1
| | | | | | | | | | | | | | | | Maybe using strings for log levels was a mistake (too broad and too impractical), so I'm adding numeric log level at least for the receiver side. This makes it easier to map mpv log levels to other logging systems. I'm still too stingy to add a function to set the log level by a numeric value, though. The numeric values are not directly mapped to the internal mpv values, because then almost every file in mpv would have to include the client API header. Coalesce this into API version 1.6, since 1.6 was bumped just yesterday.
* DOCS/client_api_examples: qtexample: add a log windowwm42014-10-082-0/+29
| | | | | | | | For the purpose of demonstration. Also make the windows larger. I'm not exactly sure how Qt determines the default window sizes, but here they are a bit tiny, so force them larger.
* msg, client API: buffer partial lineswm42014-10-081-0/+1
| | | | | | | | | | | | | | | The API could return partial lines, meaning the message could stop in the middle of a line, and the next message would have the rest of it (or just the next part of it). This was a pain for the user, so do the nasty task of buffering the lines ourselves. Now only complete lines are sent. To make things even easier for the API user, don't put multiple lines into a single event, but split them. The terminal output code needed something similar (inserting a prefix header on start of each line). To avoid code duplication, this commit refactors the terminal output so that lines are split in a single place.
* command: add cache-buffering-state propertywm42014-10-071-0/+4
|
* client API: clarify pause/unpause events, modify core-idle propertywm42014-10-072-0/+6
| | | | | | | | Whether you consider the semantics weird or not depends on your use case, but I suppose it's a bit confusing anyway. At this point, we keep MPV_EVENT_PAUSE/UNPAUSE for compatibility only. Make the "core-idle" property somewhat more useful in this context.
* DOCS/client_api_examples: qtexample: set the localeJames Ross-Gowan2014-10-071-0/+6
| | | | | | | QApplication sets the locale, so change the LC_NUMERIC category back to "C" for libmpv. See: http://qt-project.org/doc/qt-5/qcoreapplication.html#locale-settings
* player: --save-position-on-quit should always workwm42014-10-061-4/+3
| | | | | | | | | | | Now any action that stops playback of a file (even playlist navigation) will save the position. Normal EOF is of course excluded from this, as well as commands that just reload the current file. The option name is now slightly off, although you could argue what the word "quit" means. Fixes #1148 (or at least this is how I understood it).
* cocoa: remove --fs-missioncontrolStefano Pigozzi2014-10-051-7/+0
| | | | | | | This is the first of a series of commits that will change the Cocoa way in a way that is easily embeddable inside parent views. To reach that point common code must avoid referencing the parent NSWindow since that could be the host application's window.
* cocoa: fix some pointer casts to be 32bit safeStefano Pigozzi2014-10-051-1/+1
| | | | credits: wm4
* cocoa/libmpv: allow to embed mpv GL view in another windowStefano Pigozzi2014-10-051-2/+42
| | | | | | | | | | | | | | | | | | | This is just temporary code but is a good base for future work (and baby steps are required for these changes). The 'final destination' is embedding the video view into any NSView but that requires some more work (the mechanism will be the same: pass the view's pointer casted to int64_t through -wid). For instance we will need to remove as much usage of the window instance as possible, and use nil guards where not possible. For this reason I will remove stuff like the mission control fullscreen feature (it's a cute feature but annoying to support and quite limited, go make your GUIs), and a way to lookup the current screen directly from the NSView absolute coordinates (this is needed for ICC detection mostly, and reporting back the screen to mpv's core). Moreover the current view.m will need to be separated into 2 views: the actual video view that will be embedded, and a parent view that will not be embedded and will be responsibile for tracking events.
* examples/cocoa: never instance NSApplication with newStefano Pigozzi2014-10-051-1/+1
| | | | | Cocoa expects the you instance NSApplications only through the singleton method sharedApplication.
* examples/cocoa: set activation policy to mimic nib applicationsStefano Pigozzi2014-10-051-0/+8
|
* manpage: changes: random corrections and additionswm42014-10-041-13/+19
|
* manpage: changes: move internal changes section to the endwm42014-10-041-22/+22
|
* options: add --no-keepaspect-windowwm42014-10-041-0/+7
| | | | Seems silly, but was requested.
* manpage: refactor MPlayer -> mpv changes sectionAlessandro Ghedini2014-10-041-90/+137
| | | | Merge duplicate entries, organize entries in subsections, reword some entries.
* x11: stupid workaround for XMonadwm42014-10-041-4/+14
| | | | | | | | --x11-netwm=yes now forces NetWM fullscreen, while --x11-netwm=auto (detect whether NetWM fullsctreen support is available) is the old behavior and still the default. See #888.
* manpage: improve consistency with new ~/.config/mpv defaultKevin Mitchell2014-10-044-27/+32
| | | | Signed-off-by: wm4 <wm4@nowhere>
* man: replaced : with , in broken --lua-opts osc exampleStephen Caraher2014-10-031-1/+1
| | | | | | | --lua-opts is a key-value list, so the option parser accepts only commas. Signed-off-by: wm4 <wm4@nowhere> CC: @mpv-player/stable
* command: allow passing memory addresses to overlay_addwm42014-10-031-0/+10
| | | | | | | | | For the sake of libmpv. Might make things much easier for the user, especially on Windows. On the other hand, it's a bit sketchy that a command exists that makes the player access arbitrary memory regions. (But do note that input commands are not meant to be "secure" and never were - for example, there's the "run" command, which obviously allows running random shell commands.)
* manpage: remove non-existing ratio-pos propertywm42014-10-021-3/+0
| | | | | | | | | | Use percent-pos instead, which is exactly the same, except with the range 0.0-100.0. I'm not sure how this got there; it was probably introduced and then removed again as percent-pos got more precise. CC: @mpv-player/stable
* manpage: redocument audio delay key bindingswm42014-10-021-0/+3
| | | | | Fixes #1131. CC: @mpv-player/stable
* audio: enable pitch correction by default when playing fastwm42014-10-021-0/+8
| | | | | | | Apparently this is what users want. When playing with normal speed, nothing is done. When playing slower than normal, resampling is used instead, because scaletempo (which does the pitch correction) adds too many artifacts.
* man: fix to->too typoKevin Mitchell2014-09-301-1/+1
|
* audio: remove --audiodropwm42014-09-301-5/+0
| | | | | | | | | | | | | | | This would play some silence in case video was slower than audio. If framedropping is already enabled, there's no other way to keep A/V sync, short of changing audio playback speed (which would give worse results). The --audiodrop option inserted silence if there was more than 500ms desync. This worked somewhat, but I think it was a silly idea after all. Whether the playback experience is really bad or slightly worse doesn't really matter. There also was a subtle bug with PTS handling, that apparently caused A/V desync anyway at ridiculous playback speeds. Just remove this feature; nobody is going to use it anyway.
* lua: add mpv/lua directories to the lua pathOtto Modinos2014-09-281-3/+8
| | | | Signed-off-by: wm4 <wm4@nowhere>
* DOCS/client_api_examples: qtexample: remove broken resizingwm42014-09-281-8/+6
| | | | | | | | | The intention was to adjust the window size to video size. It never worked well; it prevented the user to make the window smaller. For unknown reason it stopped resizing properly as well. This is just a cheap example, and I don't intend to fight with Qt, so replace the "demonstration" behavior by something slightly lamer.
* client API, X11: change default keyboard input handling againwm42014-09-284-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | Commit 64b7811c tried to do the "right thing" with respect to whether keyboard input should be enabled or not. It turns out that X11 does something stupid by design. All modern toolkits work around this native X11 behavior, but embedding breaks these workarounds. The only way to handle this correctly is the XEmbed protocol. It needs to be supported by the toolkit, and probably also some mpv support. But Qt has inconsistent support for it. In Qt 4, a X11 specific embedding widget was needed. Qt 5.0 doesn't support it at all. Qt 5.1 apparently supports it via QWindow, but if it really does, I couldn't get it to work. So add a hack instead. The new --input-x11-keyboard option controls whether mpv should enable keyboard input on the X11 window or not. In the command line player, it's enabled by default, but in libmpv it's disabled. This hack has the same problem as all previous embedding had: move the mouse outside of the window, and you don't get keyboard input anymore. Likewise, mpv will steal all keyboard input from the parent application as long as the mouse is inside of the mpv window. Also see issue #1090.
* audio: decouple demux and audio decoder/filter sample formatswm42014-09-241-0/+1
| | | | | | | | | | | | | | | | | | | | For a while, we used this to transfer PCM from demuxer to the filter chain. We had a special "codec" that mapped what MPlayer used to do (MPlayer passes the AF sample format over an extra field to ad_pcm, which specially interprets it). Do this by providing a mp_set_pcm_codec() function, which describes a sample format in a generic way, and sets the appropriate demuxer header fields so that libavcodec interprets it correctly. We use the fact that libavcodec has separate PCM decoders for each format. These are systematically named, so we can easily map them. This has the advantage that we can change the audio filter chain as we like, without losing features from the "rawaudio" demuxer. In fact, this commit also gets rid of the audio filter chain formats completely. Instead have an explicit list of PCM formats. (We could even just have the user pass libavcodec PCM decoder names directly, but that would be annoying in other ways.)
* player: change --keep-open semanticswm42014-09-241-1/+8
| | | | By popular request.
* audio: drop swapped-endian audio formatswm42014-09-231-3/+2
| | | | | | | | | | | | | | | | | | | | Until now, the audio chain could handle both little endian and big endian formats. This actually doesn't make much sense, since the audio API and the HW will most likely prefer native formats. Or at the very least, it should be trivial for audio drivers to do the byte swapping themselves. From now on, the audio chain contains native-endian formats only. All AOs and some filters are adjusted. af_convertsignendian.c is now wrongly named, but the filter name is adjusted. In some cases, the audio infrastructure was reused on the demuxer side, but that is relatively easy to rectify. This is a quite intrusive and radical change. It's possible that it will break some things (especially if they're obscure or not Linux), so watch out for regressions. It's probably still better to do it the bulldozer way, since slow transition and researching foreign platforms would take a lot of time and effort.
* player: allow passing number of loops to --loop-filewm42014-09-221-5/+9
| | | | | | | | | | E.g. --loop-file=2 will play the file 3 times (one time normally, and 2 repeats). Minor syntax issue: "--loop-file 5" won't work, you have to use "--loop-file=5". This is because "--loop-file" still has to work for compatibility, so the "old" syntax with a space between option name and value can't work.
* options: remove --volstepwm42014-09-211-4/+0
| | | | | | | It's just confusing; users are encouraged to edit input.conf instead (changing the argument to the "add" command). Update input.conf to keep the old behavior.
* manpage: clarify vf_pp docswm42014-09-211-8/+14
| | | | | Make the note about quoting more prominent. Add a warning that this filter is useless for new files.
* vo_vdpau: better integration with the generic framedrop codewm42014-09-201-3/+2
| | | | | | | | | | | | | | | | | | | | vo_vdpau uses its own framedrop code, mostly for historic reasons. It has some tricky heuristics, of which I'm not sure how they work, or if they have any effect at all, but in any case, I want to keep this code for now. One day it might get fully ported to the vo.c framedrop code, or just removed. But improve its interaction with the user-visible framedrop controls. Make --framedrop actually enable and disable the vo_vdpau framedrop code, and increment the number of dropped frames correctly. The code path for other VOs should be equivalent. The vo_vdpau behavior should, except for the improvements mentioned above, be mostly equivalent as well. One minor change is that frames "shown" during preemption are always count as dropped. Remove the statement from the manpage that vo_vdpau is the default; this hasn't been the case for a while.
* manpage: document terminal status line componentswm42014-09-201-0/+45
| | | | | (The classic MPlayer documentation had this in separate files, but we deleted them ages ago.)
* player: allow overriding OSD message for all OSD levelswm42014-09-181-0/+24
| | | | | | | | | | | | | | | | | | Until now, you could override only level 3 with --osd-status-msg. Extend this, add add --osd-msg1 to --osd-msg3 (one for each OSD level). OSD level 0 always means disable OSD, so that isn't included. --osd-msg3 corresponds to --osd-status-msg, but they're not exactly the same. To allow more customization, --osd-msgN do not include the OSD symbol. The symbol can be manually added with "${osd-sym-cc}". We keep the "old" option for some short-term compatibility. --osd-msg1 should be particularly useful; for example you could do: --osd-msg1='${?pause==yes:${osd-sym-cc}}' to display a "paused" symbol when paused, and nothing during normal playback. (Although admittedly, the syntax is quite a bit of work.)
* command: allow using ASS tags on OSD messageswm42014-09-181-2/+19
| | | | | | | | | | | We don't allow this by default, because it would be silly if random external data (like filenames or file tags) could accidentally trigger them. Add a property that magically disables this ASS tag escaping. Note that malicious input could still disable ASS tag escaping by itself. This would be annoying but harmless.
* command: add osd-sym-cc propertywm42014-09-181-0/+5
| | | | This allows you to reproduce the OSD symbol.
* options: change --volstep to 2wm42014-09-161-1/+1
| | | | | | | | | | With default settings, this allows you to hit the 100% mark (with default --softvol-max in the middle) even if you've reached min or max volume before. This is because 50 is not divisible by 3 (old default) but by 2 (new default). Not really sure why there still can be issues with higher --softvol-max and --volstep=1, but this is where I stop caring.
* manpage: fix typo in input.rstAleksey Andreev2014-09-151-1/+1
| | | | Signed-off-by: wm4 <wm4@nowhere>
* input.conf: map ESC to exiting fullscreenwm42014-09-151-1/+4
| | | | | | | | | | Apparently making ESC exit fullscreen mode is the more popular convention compared to ESC quitting the program. It was also concluded that ESC should do nothing when the windows is already in normal state. See discussion in #973.
* DOCS/client_api_examples: qtexample: resize to video sizewm42014-09-151-0/+21
| | | | | | | | | | | | | This is pretty imperfect, but it's just a demo. The main purpose is clarifying how and when to get the video size. In theory, retrieving the properties this way has a race condition: after reading dwidth, the video could resize again. But the worst that can happen are mismatching dwidth/dheight values, and the MPV_EVENT_VIDEO_RECONFIG event would be immediately received again, which would fix the mismatch. You could read the full video-out-params property to absolutely avoid it, but it's not worth the trouble.
* manpage: clarify description of dwidth/dheightwm42014-09-151-2/+6
|
* input: use libwaio for pipe input on Windowswm42014-09-141-0/+9
| | | | | | | | | | | | Use libwaio to read from pipes (stdin or named pipes) on Windows. This liberates us from nasty issues, such as pipes (as created by most programs) not being possible to read in a non-blocking or event-driven way. Although it would be possible to do that in a somewhat sane way on Vista+, it's still not easy, and on XP it's especially hard. libwaio handles these things for us. Move pipe.c to pipe-unix.c, and remove Windows specific things. Also adjust the input.c code to make this work cleanly.
* input: "quit_watch_later" and "stop" are abort commandswm42014-09-131-2/+8
| | | | | | | | | This means they get special handling for asynchronously aborting playback, even if the player is "stuck". Also document "stop". It seems somewhat useful for client API users (although that will be implemented properly only in the following commits.)
* manpage: document shift+pgup/pgdwn bindingswm42014-09-131-0/+4
|
* lua: synchronously wait until scripts are loadedwm42014-09-061-0/+9
| | | | | | | | | | | | | | | | | This makes the player wait until each script is loaded. Do this to give the script a chance to setup all its event handlers. It might also be useful to allow a script to change options that matter for playback. While waiting for a script to be loaded, the player actually accepts input. This is needed because the scripts can execute player commands anyway while they are being "loaded". The player won't react to most commands though: it can't quit or navigate the playlist in this state. For deciding whether a script is finally loaded, we use a cheap hack: if mpv_wait_event() is called, it's considered loaded. Let's hope this is good enough. I think it's better than introducing explicit API for this. Although I'm sure this will turn out as too simplistic some time in the future, the same would probably happen with a more explicit API.
* vo_corevideo: remove this VOStefano Pigozzi2014-09-062-8/+1
| | | | | | | This was kept in the codebase because it is slightly faster than --vo=opengl on really old Intel cards (from the GMA era). Time to kill it, and let it rest. Fixes #1061
* win32: add tmpfile() replacementJames Ross-Gowan2014-09-051-3/+2
| | | | | | | | | | | The Windows version of tmpfile is actually pretty broken. It tries to create the file in the root directory of the current drive, which means on Vista and up, it normally fails due to insufficient permissions. Replace it with a version that uses GetTempPath. Also remove the Windows-specific note about automatic deletion of the cache file. FILE_FLAG_DELETE_ON_CLOSE is available in NT, and it should be pretty reliable.
* manpage: fix sub_add descriptionwm42014-09-051-1/+1
| | | | | It is in fact selected. The manpage wasn't updated when this was changed.
* audio: make buffer size configurablewm42014-09-051-0/+14
| | | | Really only for testing.
* player: add --media-title optionwm42014-09-021-0/+5
| | | | Requested by ChrisK2.
* player: add --osd-playing-msg optionwm42014-09-021-0/+7
|
* player: simplistic HLS bitrate selectionwm42014-09-011-2/+11
| | | | | | --hls-bitrate=min/max lets you select the min or max bitrate. That's it. Something more sophisticated might be possible, but is probably not even worth the effort.
* command: remove broken quvi-format propertywm42014-09-012-10/+0
| | | | Never really worked, and libquvi is probably a lost cause anyway.
* man: fix a whole bunch of typosMartin Herkt2014-09-0111-130/+130
|
* player: always load playlistswm42014-08-311-14/+6
| | | | | | | | | Until now, you had to use --load-unsafe-playlists or --playlist to get playlists loaded. Change this and always load playlists by default. This still attempts to reject unsafe URLs. For example, trying to invoke libavdevice pseudo-demuxer is explicitly prevented. Local paths and any http links (and some more) are always allowed.
* x11: when using --wid, inherit event flags from parent windowwm42014-08-311-0/+1
| | | | | | | | | | | | | | | | | | | When embedding a X window, it's hard to control whether it receives mouse/keyboard input or not. It seems the X protocol itself makes this hard (basically due to the outdated design mismatching with modern toolkits), and we have to take care of these things explicitly. Simply do this by manually querying and using the parent window event flags. This restores some MPlayer behavior (it doesn't add back exactly the same code, but it's very similar). This probably has some potential to interfere with libmpv embedding, so bump the client API minor. CC: @mpv-player/stable (if applied, client-api-changes.rst has to be adjusted to include the 0.5.2 release)
* lua: expose mp_getcwd through mp.utilsOtto Modinos2014-08-311-0/+4
|
* manpage: be more explicit about "estimated-..." propertieswm42014-08-311-2/+7
| | | | | | In particular, use the note markup. The issue about rounded timestamps is mostly with respect to Matroska (which usually rounds them to milliseconds), which somewhat adds to the reliability issue.
* video: initial Matroska 3D supportwm42014-08-301-0/+16
| | | | | | | | | | | | | | | | | | | | | This inserts an automatic conversion filter if a Matroska file is marked as 3D (StereoMode element). The basic idea is similar to video rotation and colorspace handling: the 3D mode is added as a property to the video params. Depending on this property, a video filter can be inserted. As of this commit, extending mp_image_params is actually completely unnecessary - but the idea is that it will make it easier to integrate with VOs supporting stereo 3D mogrification. Although vo_opengl does support some stereo rendering, it didn't support the mode my sample file used, so I'll leave that part for later. Not that most mappings from Matroska mode to vf_stereo3d mode are probably wrong, and some are missing. Assuming that Matroska modes, and vf_stereo3d in modes, and out modes are all the same might be an oversimplification - we'll see. See issue #1045.
* cache_file: add a mode that creates a temporary filewm42014-08-301-15/+36
| | | | | | | Since we have to be portable, our options for creating temporary files are somewhat limited. tmpfile() happens to be available everywhere, so use that. This function doesn't allow having a "visible" filename or location, so we use the magic string "TMP" for this.
* player: reduce default demuxer cachewm42014-08-301-1/+1
| | | | | | | A (hopefully) temporary hack to make stream switching delays tolerable. It's not clear how this should be handled (either executing a precise seek on track switching, or always enabling all streams), so get this issue out of the way for now by picking a rather low value.
* manpage: document that --cache-file doesn't work with ordered chapterswm42014-08-301-0/+2
|
* manpage: fix minor grammar issuewm42014-08-291-1/+1
|
* command: export demuxer cache info propertieswm42014-08-281-0/+9
|
* player: redo how stream caching and pausing on low cache workswm42014-08-271-14/+9
| | | | | | | | | | | | | | | | | | | Add the --cache-secs option, which literally overrides the value of --demuxer-readahead-secs if the stream cache is active. The default value is very high (10 seconds), which means it can act as network cache. Remove the old behavior of trying to pause once the byte cache runs low. Instead, do something similar wit the demuxer cache. The nice thing is that we can guess how many seconds of video it has cached, and we can make better decisions. But for now, apply a relatively naive heuristic: if the cache is below 0.5 secs, pause, and wait until at least 2 secs are available. Note that due to timestamp reordering, the estimated cached duration of video might be inaccurate, depending on the file format. If the file format has DTS, it's easy, otherwise the duration will seemingly jump back and forth.
* vo_opengl: add parameter to gaussian filterBin Jin2014-08-261-1/+9
| | | | | | | | | | Add a new parameter 'p' to gaussian filter. The new formula used a different base taken from fmtconv plugin, so that the new parameter is exactly same as the one used in Avisynth and Vapoursynth. The new default value is 2 / log(2) * 10, with the default value it conforms to the original kernel taken from vector-agg.
* vo_opengl: add radius options for filtersBin Jin2014-08-261-5/+16
| | | | | | | Add two new options, make it possible for user to set the radius for some of the filters with no fixed radius. Also add three new filters with the new radius parameter supported.
* vo_opengl: add cparam1 and cparam2 optionsBin Jin2014-08-261-0/+7
| | | | | | Although cscale is rarely used, it's possible that params of cscale are accidentally set to lparam1 and lparam2, which might cause unexpected results.
* manpage: mention that mp.commandv doesn't expand propertiesOtto Modinos2014-08-251-0/+4
| | | | | | | | The little lua snippet at #488 as well as the actual implementation seems to indicate that not expanding properties is indeed the correct behavior. Document that. Signed-off-by: wm4 <wm4@nowhere>
* options: compatibility hack for --slave-brokenwm42014-08-251-0/+2
| | | | | | | Seems some programs were still relying on it. Whatever, it's not hard to support. CC: @mpv-player/stable
* ao_dsound: raise default buffer size to 200ms, make it configurablewm42014-08-221-0/+3
|
* manpage: remove duplicated contentBin Jin2014-08-221-29/+0
| | | | | | | Probably be accidentally added in b6b8bffd. CC: @mpv-player/stable Signed-off-by: wm4 <wm4@nowhere>
* options.rst: fix warningAlexander Preisinger2014-08-201-1/+1
|
* command: add estimated-frame-count & estimated-frame-number propertiesAndrey Morozov2014-08-191-0/+7
| | | | Signed-off-by: wm4 <wm4@nowhere>
* manpage: fix opengl-hq defaultswm42014-08-181-1/+1
| | | | | | The FBO format was changed some time ago. CC: @mpv-player/stable
* DOCS/tech-overview.txt: some updateswm42014-08-181-17/+35
|
* video: enable framedropping by defaultwm42014-08-171-4/+4
|
* demux: enable thread by defaultwm42014-08-161-1/+3
| | | | And change the defaults for the other queue options to reduce latency.
* demux: add option to control the readahead buffer by a duration valuewm42014-08-161-3/+13
| | | | | | | | | | | | | --demuxer-readahead-secs now controls how much the demuxer should readahead by an amount of seconds. This is based on the raw packet timestamps. It's not always very exact. For example, h264 in Matroska does not store any linear timestamps (only PTS values which are going to be reordered by the decoder), so this heuristic is usually off by several hundred milliseconds. The decision whether to readahead is basically OR-ed with the other --demuxer-readahead-packets options. Change the manpage descriptions to subtly convey these semantics.
* video: add --display-fps switch to control framedrop FPSwm42014-08-161-0/+7
| | | | | | Since the display FPS is currently detected on X11 only (and even there it's known to be wrong on certain setups), it seems like a good idea to make this user-configurable.
* audio: add a mode to insert silence on severe A/V desyncwm42014-08-151-0/+5
| | | | | | This is probably a stupid idea, but it can't be denied that this actually allows playing video without larger desync, even if video is too slow.
* vo_opengl: optional support for using GLX_SGI_video_syncwm42014-08-151-0/+7
| | | | | | | | | I'm not sure about the merit, though it does print nice numbers if debug output is enabled. Basically, this tries to achieve similar results as the glFinish() business, but again it entirely depends on the drivers whether this does anything meaningful, or whether it's actively harmful.
* vo_opengl: if glfinish is used, also call it after swapppingwm42014-08-151-1/+3
| | | | | | It seems that at least on nvidia systems with composting disabled, we can get it to block deterministically on the actual vsync event, which should improve framedropping.
* video: add VO framedropping modewm42014-08-152-10/+39
| | | | | | | | | | | | | | | | | | | | | | | | This mostly uses the same idea as with vo_vdpau.c, but much simplified. On X11, it tries to get the display framerate with XF86VM, and limits the frequency of new video frames against it. Note that this is an old extension, and is confirmed not to work correctly with multi-monitor setups. But we're using it because it was already around (it is also used by vo_vdpau). This attempts to predict the next vsync event by using the time of the last frame and the display FPS. Even if that goes completely wrong, the results are still relatively good. On other systems, or if the X11 code doesn't return a display FPS, a framerate of 1000 is assumed. This is infinite for all practical purposes, and means that only frames which are definitely too late are dropped. This probably has worse results, but is still useful. "--framedrop=yes" is basically replaced with "--framedrop=decoder". The old framedropping mode is kept around, and should perhaps be improved. Dropping on the decoder level is still useful if decoding itself is too slow.
* sub: add option to workaround broken mkv fileswm42014-08-141-0/+7
| | | | See additions to options.rst.
* af_lavcac3enc: lower minimum channel number to 3wm42014-08-121-1/+1
| | | | It seems only stereo PCM should be passed through.
* docs: cocoa example uses wakeup callback APIFRAU KOUJIRO2014-08-121-22/+54
| | | | Also, imitate the qt example somewhat.
* docs: simple cocoa API usage exampleFRAU KOUJIRO2014-08-121-0/+85
|
* af_lavcac3enc: change default bitrate to 640wm42014-08-121-1/+3
| | | | | | | No reason to use less. Since the name "default" is misleading now, replace it with "auto" (still recognize the old name).
* video: move display and timing to a separate threadwm42014-08-121-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The VO is run inside its own thread. It also does most of video timing. The playloop hands the image data and a realtime timestamp to the VO, and the VO does the rest. In particular, this allows the playloop to do other things, instead of blocking for video redraw. But if anything accesses the VO during video timing, it will block. This also fixes vo_sdl.c event handling; but that is only a side-effect, since reimplementing the broken way would require more effort. Also drop --softsleep. In theory, this option helps if the kernel's sleeping mechanism is too inaccurate for video timing. In practice, I haven't ever encountered a situation where it helps, and it just burns CPU cycles. On the other hand it's probably actively harmful, because it prevents the libavcodec decoder threads from doing real work. Side note: Originally, I intended that multiple frames can be queued to the VO. But this is not done, due to problems with OSD and other certain features. OSD in particular is simply designed in a way that it can be neither timed nor copied, so you do have to render it into the video frame before you can draw the next frame. (Subtitles have no such restriction. sd_lavc was even updated to fix this.) It seems the right solution to queuing multiple VO frames is rendering on VO-backed framebuffers, like vo_vdpau.c does. This requires VO driver support, and is out of scope of this commit. As consequence, the VO has a queue size of 1. The existing video queue is just needed to compute frame duration, and will be moved out in the next commit.
* DOCS: mark the recent release in client-api-changes.rstwm42014-08-122-0/+3
| | | | | | | Also add instructions to release-policy.md, since this can be easily forgotten. CC: @mpv-player/stable
* input.conf: make explanatory text more readablewm42014-08-111-0/+1
| | | | | Or at leats this is the intention. It's a bit hard to tell which information is needed, and which not.
* manpage: update keybindingswm42014-08-111-1/+1
|
* Move status-line.luawm42014-08-111-69/+0
| | | | | Looks like TOOLS/lua/ is now established as dumping ground for random Lua scripts, so DOCS/lua_examples/ is not needed anymore.
* video: remove "hard" framedrop modewm42014-08-091-4/+8
| | | | | | | | | Completely useless, and could accidentally be enabled by cycling framedrop modes. Just get rid of it. But still allow triggering the old code with --vd-lavc-framedrop, in case someone asks for it. If nobody does, this new option will be removed eventually.
* manpage: update key bindingswm42014-08-081-36/+6
|
* manpage: add sections and order by usageAlexander Preisinger2014-08-081-1677/+1810
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Split the options into the following sections: * Playback Control * Program Behaviour * Video * Audio * Subtitles * Window * Disc Devices * Equalizer * Demuxer * Input * OSD * Screenshot * Software Scaler * Terminal * TV * Cache * Network * DVB * PVR * Miscellaneous Most options are sorted by usefullness and how often they're used or how important they are. This makes finding the right options easier and adds some sort of structure.
* command: add a "seeking" propertywm42014-08-081-0/+6
| | | | | | The client API exports this state via events already, but maybe it's better to explicitly provide this property in order to facilitate use on OSD and similar cases.
* client API: qtexample: don't pass deallocated strings to mpvwm42014-08-071-1/+2
| | | | | The temporary QByteArray is deallocated already at the end of the statement in C++, instead of the end of the scope (like in C).
* client API: add and use the MPV_MAKE_VERSION macrowm42014-08-051-0/+1
| | | | | | | This is probably nicer. The actual version number doesn't change (other than the minor being incremented). The "| 0UL" is to make the type unsigned long int, like it was before.
* player: some further playloop cleanupswm42014-08-032-6/+9
| | | | | | | | | | | | | Handle --term-playing-msg at a better place. Move MPV_EVENT_TICK hack into a separate function. Also add some words to the client API that you shouldn't use it. (But better leave breaking it for later.) Handle --frames and frame_step differently. Remove the mess from the playloop, and do it after frame display. Give up on the weird semantics for audio-only mode (they didn't make sense anyway), and adjust the manpage accordingly.
* manpage: be more explicit where input.conf is locatedwm42014-08-022-1/+6
|
* manpage: explain how to replace --slave-brokenwm42014-08-021-0/+10
|
* command: add a property that returns a list of all propertieswm42014-08-021-0/+2
| | | | Also remove the undocumented Lua mp.property_list() function.
* manpage: remove duplicated misplaced description of a commandwm42014-08-021-2/+0
|
* Remove the last remains of slave modewm42014-08-012-32/+10
| | | | | | | | | | | Almost nothing was left of it. The only thing this commit actually removes is support for reading input commands from stdin. But you can emulate this via: --input-file=/dev/stdin --input-terminal=no However, this won't work on Windows. Just use a named pipe.
* command: add cache-idle propertywm42014-07-311-2/+6
|
* video/filter: add vf_bufferwm42014-07-301-0/+6
| | | | Mostly useful for debugging.
* ao_alsa: disable use of non-interleaved formats by defaultwm42014-07-301-0/+4
| | | | | | | | Some ALSA plugins take non-interleaved audio, but treat it as interleaved, which results in various funny bugs. Users keep hitting this issue, and it just doesn't seem worth the trouble. CC: @mpv-player/stable
* stream_lavf: allow setting AVOptions with --stream-lavf-owm42014-07-301-0/+7
| | | | | This commit also creates a private option struct for stream_lavf.c, but since I'm lazy, I'm not moving any existing options to it.
* manpage: lua: document timer timeout and oneshot fieldswm42014-07-291-0/+14
| | | | | Might be useful for scripts, so document them. (Which means scripts are allowed to use them, without risking breakage.)
* ao_pulse: allow disabling timing bug workaroundswm42014-07-261-0/+6
| | | | | | | | | | | | | | | | Add an option that enables using native PulseAudio auto-updated timing information, instead of the manual calculations added in mplayer2 times. You can use --ao=pulse:no-latency-hacks to enable the new code. The code is almost the same as the code that was removed with commit de435ed5, but I didn't readd some bits I didn't understand. Likewise, the option will disable the code added with that commit. In my tests this seemed to work well, though the A/V sync display looks funny when seeking. The default is still the old behavior. See issue #959.
* manpage: eliminate the word "movie"wm42014-07-264-29/+29
| | | | | | | It's evil and sounds outdated. Use the words "media" and "video" instead. Closes #935.
* manpage: fix a typowm42014-07-241-1/+1
|
* command: add append-play loadfile modewm42014-07-231-0/+2
| | | | | | | | "loadfile filename append-play" will now always append the file to the playlist, and if nothing is playing yet, start playback. I don't want to change the semantics of "append" mode, so a new mode is needed. Probably fixes issue #950.
* sub: add detection via BOMwm42014-07-221-0/+3
| | | | | | | | | | | Useful for Windows stuff. Actually, ENCA support should catch this, but, well, whatever, everyone seems to hate ENCA. Detection with BOM is trivial, although it needs some hackery to integrate it with the existing autodetection support. For one, change the default value of --sub-codepage to make this easier. Probably fixes issue #937 (the second part).
* manpage: correct the --mf optionswm42014-07-211-6/+6
| | | | | | | The MPlayer style syntax ("-mf fps=10:type=png") was removed a while ago, and now only the flat variants ("--mf-fps=10" etc.) work. CC: @mpv-player/stable
* manpage: fix wording for --aidwm42014-07-201-2/+3
|
* manpage: fix documented default for --demuxer-threadwm42014-07-171-1/+1
|
* demux: add a demuxer threadwm42014-07-161-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a thread to the demuxer which reads packets asynchronously. It will do so until a configurable minimum packet queue size is reached. (See options.rst additions.) For now, the thread is disabled by default. There are some corner cases that have to be fixed, such as fixing cache behavior with webradios. Note that most interaction with the demuxer is still blocking, so if e.g. network dies, the player will still freeze. But this change will make it possible to remove most causes for freezing. Most of the new code in demux.c actually consists of weird caches to compensate for thread-safety issues (with the previously single-threaded design), or to avoid blocking by having to wait on the demuxer thread. Most of the changes in the player are due to the fact that we must not access the source stream directly. the demuxer thread already accesses it, and the stream stuff is not thread-safe. For timeline stuff (like ordered chapters), we enable the thread for the current segment only. We also clear its packet queue on seek, so that the remaining (unconsumed) readahead buffer doesn't waste memory. Keep in mind that insane subtitles (such as ASS typesetting muxed into mkv files) will practically disable the readahead, because the total queue size is considered when checking whether the minimum queue size was reached.
* DOCS/release-policy: mention the release version in the RELEASE_NOTES templateAlessandro Ghedini2014-07-131-1/+13
| | | | Also suggest adding changes in point releases to RELEASE_NOTES as well.
* DOCS/tech-overview: minor updateswm42014-07-091-12/+12
|
* Remove stream_pts stuffwm42014-07-062-5/+1
| | | | | This was used by DVD/BD, but its usage was removed with one of the previous commits.
* DOCS/client-api-changes: try to fix rst formatting againwm42014-07-061-3/+4
|
* DOCS, client API: add mpv release versionswm42014-07-051-0/+3
| | | | | | | | The intention is to make it obvious which mpv releases certain changes will apply to. Also attempt to fix RST formatting of the list. This is not very proper, but probably good enough.
* DOCS/client_api_examples: add a Qt examplewm42014-07-043-0/+177
| | | | | This is pretty dumb and extremely basic. The main purpose is demonstrating how to integrate mpv into the Qt GUI thread.
* DOCS: add a file listing API changes for the client APIwm42014-07-032-0/+36
|
* manpage: reflect new coreaudio changesStefano Pigozzi2014-07-021-1/+13
|
* command: change cache perentage to float, add cache-free and cache-usedAndrey Morozov2014-07-021-1/+7
|
* options: add --list-protocols optionAlessandro Ghedini2014-06-301-0/+3
|
* options: support setting start time relative to start PTSTsukasa OMOTO2014-06-291-3/+6
| | | | Signed-off-by: wm4 <wm4@nowhere>
* player: make the time display relative to start PTSTsukasa OMOTO2014-06-291-0/+3
| | | | | | This commit makes the playback start time always at time 0. Signed-off-by: wm4 <wm4@nowhere>
* manpage: update config file locationswm42014-06-283-12/+25
| | | | Also add some explanations how the config paths are determined.
* DOCS: add document describing the release policy and procedureAlessandro Ghedini2014-06-251-0/+57
|
* manpage: update changed defaults from previous commitwm42014-06-231-2/+2
| | | | Oops.
* video: Include better heuristics for guessing primariesNiklas Haas2014-06-221-2/+11
| | | | | | | These consult the vertical resolution, matching against 576 for PAL and 480/486 for NTSC. The documentation has also been updated. Signed-off-by: wm4 <wm4@nowhere>
* video: Refactor rendering intent for DCP XYZ and :srgbNiklas Haas2014-06-221-0/+4
| | | | | | Notably, we now conform to SMPTE 428-1-2006 when decoding XYZ12 input, and we can support rendering intents other than colorimetric when converting between BT.709 and BT.2020, like with :srgb or :icc-profile.
* video: Support BT.2020 constant luminance systemNiklas Haas2014-06-221-1/+2
| | | | Signed-off-by: wm4 <wm4@nowhere>
* options: Expose --colormatrix-primaries to the userNiklas Haas2014-06-222-0/+24
| | | | Signed-off-by: wm4 <wm4@nowhere>
* video: Add support for non-BT.709 primariesNiklas Haas2014-06-221-1/+7
| | | | | | | This add support for reading primary information from lavc, categorized into BT.601-525, BT.601-625, BT.709 and BT.2020; and passes it on to the vo. In vo_opengl, we always generate the 3dlut against the wider BT.2020 and transform our source into this colorspace in the shader.
* video: Add BT.2020-NCL colorspace and transfer functionNiklas Haas2014-06-222-2/+3
| | | | Source: http://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.2020-0-201208-I!!PDF-E.pdf
* stream: add a file cachewm42014-06-221-0/+25
| | | | | | | | | For remarks, pretty much see the manpage additions. Could help with network streams that require too much seeking (maybe), or might be extended to help with the use case of watching and downloading a file at the same time. In general, it might be a useless feature and could be removed again.
* DOCS: remove en/ sub-directorywm42014-06-2011-0/+0
| | | | | This additional sub-directory doesn't serve any purpose anymore. Get rid of it.
* manpage: explicitly document protocolswm42014-06-201-12/+79
|
* manpage: remove some trailing whitespacewm42014-06-201-1/+1
| | | | I wish I could make github run a hook to reject these.
* manpage: remove bogus significant whitespacewm42014-06-181-1/+1
| | | | Made the first line formatted differently.
* options: allow adding multiple files with --audio-filewm42014-06-181-2/+3
| | | | At least 1 person expected that this works this way.
* DOCS/contribute.md: move instructions for sending patches to the topwm42014-06-171-50/+56
| | | | Separate to not confuse git history tracking.
* DOCS: remove coding-style.md to contribute.mdwm42014-06-171-0/+0
| | | | | I wonder if this is better. The intention is to make the instructions for sending patches more visible.
* sub: add --sub-scale-with-window optionwm42014-06-141-0/+8
| | | | Implements the feature requested in #839 and #186.
* options: turn --idx, --forceidx into --indexwm42014-06-132-14/+9
| | | | | | | | | | | | Also clarify the semantics. It seems --idx didn't do anything. Possibly it used to change how the now removed legacy demuxers like demux_avi used to behave. Or maybe it was accidental. --forceidx basically becomes --index=force. It's possible that new index modes will be added in the future, so I'm keeping it extensible, instead of e.g. creating --force-index.
* input: make option struct localwm42014-06-111-11/+11
| | | | | | | | | Similar to previous commits. This also renames --doubleclick-time to --input-doubleclick-time, and --key-fifo-size to --input-key-fifo-size. We could keep the old names, but these options are very obscure, and renaming them seems better for consistency.
* options: remove global variables for swscale options; rename themwm42014-06-112-30/+21
| | | | | | Additionally to removing the global variables, this makes the options more uniform. --ssf-... becomes --sws-..., and --sws becomes --sws- scaler. For --sws-scaler, use choices instead of magic integer values.
* stream_dvb: remove global option variableswm42014-06-111-12/+11
|
* stream_cdda: remove global option variableswm42014-06-111-28/+23
|
* stream_pvr: remove global option variableswm42014-06-111-36/+35
|
* tv: remove global option variableswm42014-06-111-136/+128
| | | | | | Pretty much nothing changes, but using -tv-scan with suboptions doesn't work anymore (instead of "-tv-scan x" it's "-tv scan-x" now). Flat options ("-tv-scan-x") stay compatible.
* command: redo ancient TV/DVB/PVR commandswm42014-06-112-5/+28
| | | | | | | | | | | | | | | | | | Convert all these commands to properties. (Except tv_last_channel, not sure what to do with this.) Also, internally, don't access stream details directly, but dispatch commands with stream ctrls. Many of the new properties are a bit strange, because they're write- only. Also remove some OSD output these commands produced, because I couldn't be bothered to port these. In general, this makes everything much cleaner, and will also make it easier to e.g. move the demuxer to its own thread. Don't bother updating input.conf, but changes.rst documents how old commands map to the new ones. Mostly untested, due to lack of hardware.
* audio: add a "weak" gapless mode, and make it defaultwm42014-06-091-16/+27
| | | | | | | | | | | | | | Basically, this allows gapless playback with similar files (including the ordered chapter case), while still being robust in general. The implementation is quite simplistic on purpose, in order to avoid all the weird corner cases that can occur when creating the filter chain. The consequence is that it might do not-gapless playback in more cases when needed, but if that bothers you, you still can use the normal gapless mode. Just using "--gapless-audio" or "--gapless-audio=yes" selects the old mode.
* manpage: document new --sub-file semanticswm42014-06-081-3/+11
| | | | This was forgotten in the previous commit.
* client API: rename mpv_destroy() to mpv_detach_destroy()wm42014-06-071-1/+1
| | | | | | A bit verbose, but less misleading. In most cases, the API user probably actually wants mpv_terminate_destroy() instead, so the less-useful function shouldn't have a simnpler name anyway.
* sub: remove old style override optionwm42014-06-051-6/+1
| | | | Didn't work too well.
* sub: add --ass-style-override=force optionwm42014-06-051-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (The old "force" choice of that option is renamed to "force-default".) This allows overriding native ASS script subtitle styles with the style provided by the --sub-text-* options (like --sub-text-font etc.). This is disabled by default, and needs to be explicitly enabled with the --ass-style-override=force option and input property. This uses in fact exactly the same options (--sub-text-*) and semantics as the ones used to configure unstyled text subtitles. It's recommended to combine this with this in the mpv config file: ass-force-style="ScaledBorderAndShadow=1" # work around dumb libass behavior Also, adding a key binding to toggle this behavior should be added, because overriding can easily break: L cycle ass-style-override This would cycle override behavior on Shift+L and allows quickly disabling/enabling style overrides. Note: ASS should be considered a vector format rather than a subtitle format. There is no easy or reliable way to determine whether the style of a given subtitle event can be changed without destroying visuals or not. This patch relies on a simple heuristic, which often works and often breaks.
* player: write file name to the watch later config fileAlessandro Ghedini2014-06-011-0/+9
| | | | | | | | | This simply writes the file name as a comment to the top of the watch later config file. It can be useful to the user for determining whether a watch later config file can be manually removed (e.g. in case the corresponding media file has been deleted) or not.
* stream: remove VCD supportwm42014-06-011-1/+0
| | | | | | | | | If a single person complains, I will readd it. But I don't expect that this will happen. The main reason for removing this is that it's some of the most unclean code remaining, it's unmaintained, and I've never ever heard of someone using it.
* ao_alsa: make device the first sub optionwm42014-05-311-3/+3
| | | | This is more convenient.
* manpage: document write_watch_later_config commandwm42014-05-271-0/+3
|
* lua: fix compilation with lua 5.2wm42014-05-261-1/+1
| | | | | | | | | | | Commit e2e450f9 started making use of luaL_register(), but OF COURSE this function disappeared in Lua 5.2, and was replaced with a 5.2-only alternative, slightly different mechanism. So just NIH our own function. This is actually slightly more correct, since it forces the user to call "require" to actually make the module visible for builtin C-only modules other than "mp". Fix autoload.lua accordingly.
* command: add write_watch_later_config commandMartin2014-05-261-0/+3
| | | | | | Closes #808. Signed-off-by: wm4 <wm4@nowhere>
* DOCS/coding-style: add a hint that new features should be documentedwm42014-05-251-2/+4
|
* lua: add some filesystem utility functionswm42014-05-251-0/+42
| | | | | | | | | | | We need this only because Lua's stdlib is so scarce. Lua doesn't intend to include a complete stdlib - they confine themselves to standard C, both for portability reasons and to keep the code minimal. But standard C does not provide much either. It would be possible to use Lua POSIX wrapper libraries, but that would be a messy (and unobvious) dependency. It's better to implement the missing functions ourselves, as long as they're small in number.
* manpage: lua: cosmetic changes to mp.options sectionwm42014-05-251-4/+4
|
* osc: fix chapter list displayChrisK22014-05-241-2/+2
| | | | also fix small typo in DOCS
* video: add --video-rotate option for controlling auto-rotationwm42014-05-241-0/+7
|
* stream: kill start_pos, remove --sb optionwm42014-05-242-8/+1
| | | | | | | | | | | | | | | | | | | | stream.start_pos was needed for optical media only, and (apparently) not for very good reasons. Just get rid of it. For stream_dvd, we don't need to do anything. Byte seeking was already removed from it earlier. For stream_cdda and stream_vcd, emulate the start_pos by offsetting the stream pos as seen by the rest of mpv. The bits in discnav.c and loadfile.c were for dealing with the code seeking back to the start in demux.c. Handle this differently by assuming the demuxer is always initialized with the stream at start position, and instead seek back if initializing the demuxer fails. Remove the --sb option, which worked by modifying stream.start_pos. If someone really wants this option, it could be added back by creating a "slice" stream (actually ffmpeg already has such a thing).
* manpage: update references to renamed optionsAlessandro Ghedini2014-05-234-9/+9
|
* lua/osc: forgot some changed files in previous commitChrisK22014-05-232-20/+94
|
* player: give quit_watch_later an exit code argument like quitwm42014-05-221-3/+4
| | | | | | | | The quit command has an optional argument that is used as exit code. Extend that to the quit_watch_later command. Actually, unify the implementations of the two commands. Requested in #798.
* input: allow disabling window dragging with --no-window-draggingwm42014-05-201-0/+3
| | | | Requested in github issue #608.
* manpage: mention bdnav://wm42014-05-201-2/+2
|
* cache: redo options and default settingswm42014-05-202-16/+17
| | | | | | | | | | | | Some options change from percentages to number of kilobytes; there are no cache options using percentages anymore. Raise the default values. The cache is now 25000 kilobytes, although if your connection is slow enough, the maximum is probably never reached. (Although all the memory will still be used as seekback-cache.) Remove the separate --audio-file-cache option, and use the cache default settings for it.
* etc/input.conf: add example how to change window size by key bindingwm42014-05-181-0/+2
| | | | Also drop a vague hint how to do it in the manpage.
* manpage: fix a minor aspect of the discnav commandwm42014-05-181-2/+1
| | | | | "menu" is in fact understood by stream_bluray.c, so just drop that sentence.
* manpage: document discnav commandwm42014-05-181-0/+14
|
* command: add a disc-menu-active propertywm42014-05-181-0/+6
| | | | Returns whether a DVD/BD menu is active. As requested by #788.
* x11: implement --fs-screen properly, separate old code pathwm42014-05-171-4/+2
| | | | | | | Try to get the "new" code path (using NetWM/EWMH) free of hacks done for the sake of old WMs or the no-WM case. Implement --fs-screen using _NET_WM_FULLSCREEN_MONITORS.
* x11: replace--[x11-]fstype option with --x11-netwmwm42014-05-162-39/+13
| | | | | Simplifies the code a lot. You can still use --x11-netwm=no to disable NetWM for whatever reasons.
* manpage: changes.rst: minor fixupswm42014-05-151-5/+5
|
* vf_vapoursynth: allow parallel processingwm42014-05-141-8/+20
| | | | | | | | VapourSynth won't just filter multiple frames at once on its own. You have to request multiple frames at once manually. This is what this commit introduces: a sub-option controls how many frames will be requested at once. This also changes the semantics of the maxbuffer sub- option, now renamed to buffered-frames.
* manpage: updates changes.rstwm42014-05-141-46/+59
| | | | | | | | | | | | | The situation has changed a bit since the days of mplayer2, so we can use more/less diplomatic wording. Merge the two sections listing changes from MPlayer and mplayer2. Mention the client API and Lua scripting as alternatives to slave mode. I'm calling MPlayer code "horrible". This is not meant as an offense, but after turning around almost every line of MPlayer code, I believe I have a right to say this. Sorry. I would say that MPlayer has a surprisingly sane and simple architecture (for what it is), but much of it drowned under a load of evil hacks or not-cleaned-up-yet code.
* manpage: update --playlist entrywm42014-05-111-5/+10
|
* manpage: minor correctionswm42014-05-113-8/+10
|
* input: remove pausing command prefixeswm42014-05-111-3/+0
| | | | | | These are now equivalent to combining commands with the "cycle pause" or "set pause" commands, and thus are not needed anymore. They were also obscure and undocumented.
* man: tweak --sub-codepage for concisionKevin Mitchell2014-05-091-20/+18
| | | | | | | The many "boxes" in this entry were causing rst2pdf to fail because it couldn't figure out where to break the page. Make the boxes smaller by removing semi-redundant examples. Also try and make surrounding text a little shorter by rewording.
* command: add property that estimates current video FPSwm42014-05-081-0/+8
| | | | | | | | | | | | | | | | | | This is done after filters, so things like framerate-doubling deinterlacing is accounted for. Unfortunately, framedropping can cause inaccuracies (especially after precise seeks), and we can't really know when that happens. Even though we know that the decoder might drop a frame if we request it to do so, we don't know when the dropped frame will start or stop affecting the video filter chain. Video filters can have frames buffered, and we can't tell at which point the dropped frame would have been output. It's not even possible to mark a discontinuity after seek, because again we don't know if the filter chain still has the discontinuity within its buffers. So we have to live with the fact that the output of this property can be completely broken after seek, unless --no-hr-seek-framedrop is used.
* options: add --hr-seek-framedrop optionwm42014-05-072-1/+11
| | | | | | | | This allows disabling of decoder framedrop during hr-seek. It's basically another useless option, but it will help exploring whether this framedropping really makes seeking faster, or whether disabling it helps with precise seeking (especially frame backstepping).
* manpage: fix typo in previous commitwm42014-05-061-1/+1
|
* manpage: adjustments to file-size propertywm42014-05-061-1/+3
|
* command: rename stream-length to file-size, format file sizeAndrey Morozov2014-05-061-3/+3
| | | | Signed-off-by: wm4 <wm4@nowhere>
* manpage: fix vf_scale optionswm42014-05-041-9/+11
|
* options: merge ---sub-auto-match with --sub-autowm42014-05-042-10/+7
| | | | There's no reason why these should be separate.
* manpage: improve --input-cursor descriptionwm42014-05-041-2/+2
|
* options: remove deprecated --identifyMartin Herkt2014-05-042-15/+10
| | | | | | | Also remove MSGL_SMODE and friends. Note: The indent in options.rst was added to work around a bug in ReportLab that causes the PDF manual build to fail.
* options: remove obsolete --fsmode-dontuseMartin Herkt2014-05-042-4/+1
|
* options: rename device-specific optionsMartin Herkt2014-05-043-3/+5
| | | | | --dvdangle → --dvd-angle --tvscan → --tv-scan
* options: rename msg-related optionsMartin Herkt2014-05-045-24/+31
| | | | | | | | | --msgcolor → --msg-color --msglevel → --msg-level --msgmodule → --msg-module --msgtime → --msg-time (also document this one) --playing-msg → --term-playing-msg --status-msg → --term-status-msg
* options: rename video-related options/propertiesMartin Herkt2014-05-044-38/+43
| | | | | | | | | | | Renamed options: --aspect → --video-aspect --fstype → --x11-fstype --native-fs → --fs-missioncontrol --name → --x11-name Renamed properties: aspect → video-aspect
* options: rename audio-related options/propertiesMartin Herkt2014-05-044-53/+59
| | | | | | | | | | | | | Renamed options: --audiofile → --audio-file --audiofile-cache → --audio-file-cache --channels → --audio-channels --format → --audio-format --srate → --audio-samplerate Renamed properties: samplerate → audio-samplerate channels → audio-channels
* options: rename subtitle-related optionsMartin Herkt2014-05-043-49/+53
| | | | | | | | | --ass → --sub-ass --autosub → --sub-auto --autosub-match → --sub-auto-match --sub → --sub-file --subcp → --sub-codepage --subfps → --sub-fps
* options: rename input-related optionsMartin Herkt2014-05-043-51/+56
| | | | | | | | | | | --ar → --input-appleremote --consolecontrols → --input-terminal --media-keys → --input-media-keys --joystick → --input-joystick --lirc → --input-lirc --lircconf → --input-lirc-conf --mouse-movements → --input-cursor --right-alt-gr → --input-right-alt-gr
* DOCS: update changes.rstMartin Herkt2014-05-031-39/+47
| | | | | Better to tell users straight away that mpv should not be treated as just another MPlayer.
* manpage: adjust description of vdpau deint sub-optionwm42014-05-021-6/+8
|
* manpage: deprecated vo_vdpau postprocessing optionswm42014-05-021-0/+19
| | | | This seems a bit silly, but the way vf_vdpaupp works, this is cleaner.
* manpage: document vf_vdpauppwm42014-05-021-0/+49
|
* lua: remove "lua/" prefix from script nameswm42014-05-021-5/+5
| | | | | | | | | This affects the return value of mp.script_name, the "client name" (what's returned by mpv_client_name()) and all associated features, as well as the mpv terminal output module prefix when scripts print something. As discussed in #748.
* manpage: fix the alternative suggested for stream-pathwm42014-05-021-1/+1
| | | | | ${filename} didn't make much sense, since that doesn't include the path components, and can be otherwise mangled.
* man: grammar tweak of mp.add_timeout()Kevin Mitchell2014-04-291-3/+3
|
* vf_vapoursynth: use frame durations instead of _AbsoluteTimewm42014-04-281-2/+2
| | | | | | | | | | | | | Set _DurationNum/_DurationDen on each VS frame, instead of _AbsoluteTime. The duration is the difference between the timestamp of the frame and the next frame, and when receiving filtered VS frames, we convert them back to an absolute PTS by summing them. We pass the timestamps with microsecond resolution. mpv uses double for timestamps internally, so we don't know the "real" timebase or FPS. VS on the other hand uses fractions for frame durations. We can't pass through the numbers exactly, but microseconds ought to be enough to be even safe from accumulating rounding errors.
* client API: add chapter change eventwm42014-04-271-0/+3
| | | | Also works for mpv_observe_property() on the "chapter" property.
* manpage: fix grammarwm42014-04-261-1/+1
|
* manpage: forced->usedwm42014-04-261-1/+1
|
* manpage: improve --osd-level descriptionwm42014-04-251-4/+4
|
* af.rst: fix replaygain-track descriptionAlessandro Ghedini2014-04-251-2/+1
| | | | libav now supports reading ReplayGain values from LAME's Info/XING tag as well.
* command: allow native access to "vf" propertywm42014-04-241-0/+16
| | | | | | This allows client API users and Lua scripts to side-step the pretty horrible video filter string "language" (although it's back and can't be avoided when using libavfilter).
* video: add a "hwdec" property to enable or disable hw decoding at runtimewm42014-04-231-0/+10
|
* man: minor typo why not to use portaudioKevin Mitchell2014-04-221-1/+1
|
* command: export rotation parameterwm42014-04-221-0/+4
| | | | For completeness.
* vf_rotate: support all multiples of 90 degreeswm42014-04-211-9/+2
| | | | | | | | | | | | | This couldn't rotate by 180°. Add this, and also make the parameter in degrees, instead of magic numbers. For now, drop the flipping stuff. You can still flip with --vf=flip or --vf=mirror. Drop the landscape/portrait stuff - I think this is something almost nobody will use. If it turns out that we need some of these things, they can be readded later. Make it use libavfilter. Its vf_transpose implementation looks pretty simple, except that it uses slice threading and should be much faster.
* encode: don't apply default config optionswm42014-04-192-1/+6
| | | | | | | | | | | | Often, user configs set options that are not suitable for encoding. Usually, playback and encoding are pretty different things, so it makes sense to keep them strictly separate. There are several possible solutions. The approach taken by this commit is to basically ignore the default config settings, and switch to an [encoding] config profile section instead. This also makes it impossible to have --o in a config file, because --o enables encode mode. See github issue #727 for discussion.
* manpage: add notes when to use/not use certain AO and VO driverswm42014-04-192-1/+50
|
* lua: add example to rebuild the status lineDavid Weber2014-04-191-0/+69
| | | | | | | This can be used to easily extent the status line for one's own needs. I'm not experienced with lua so a few things could probably be done a better way.
* input: discard key history when a key is mappedwm42014-04-191-4/+4
| | | | | | This is for the sake of multi-key combinations (see github issue #718). Now a multi-key sequence isn't matched if any of the previous keys were actually mapped.
* manpage: clarify one aspect of multi-keybindingswm42014-04-181-1/+2
| | | | | The explanation is kind of obvious, but on the other it'd probably be confusing not to clarify this.
* input: close window when window close button is pressed with --input-testwm42014-04-181-3/+3
| | | | | | | | | | | The window close button is usually mapped to the CLOSE_WIN pseudo-key. Until now, --input-test treated this pseudo-key like any other key (like the rest of the input handling code), so you couldn't close the window in this mode. The manpage had silly instructions and warnings how to deal with this. Just always quit when CLOSE_WIN is received, and improve the instructions.
* input: handle multi-combinations as key sequenceswm42014-04-181-0/+10
| | | | | | | | | | | | | | | | | The input code always supported combinations of multiple keys (even in MPlayer, although there the code was active really only for mouse buttons). This was arcance and also made the code more complicated. I only know of a single person who ever made use of this feature. Remove this feature, and repurpose some of the support code (e.g. parsing, display of key combinations, etc.) to handle such multi- combinations as sequences, instead of keys to be pressed at the same time. This is much simpler and implements the feature requested in github issue #718. This commit will probably cause a bunch of regressions, since the input handling code has some weird corner cases. I couldn't find any problems when testing, though.
* manpage: document loop-file propertywm42014-04-181-0/+3
| | | | Was forgotten in commit 1b398e99.
* player: add a --loop-file optionwm42014-04-171-0/+6
| | | | Unlike --loop, loops a file instead of the playlist.
* ao_null: add simulated device latency, simulate EOF problemswm42014-04-171-0/+7
| | | | | This EOF problems happen at least with PulseAudio, but since it's hard to reproduce, let ao_null optionally simulate it.
* vo_opengl: make spline36 default with --vo=opengl-hqwm42014-04-171-2/+4
|
* player: add a --dump-stats optionwm42014-04-171-0/+8
| | | | | | | | | | | | | | | | | | | | | | | This collects statistics and other things. The option dumps raw data into a file. A script to visualize this data is included too. Litter some of the player code with calls that generate these statistics. In general, this will be helpful to debug timing dependent issues, such as A/V sync problems. Normally, one could argue that this is the task of a real profiler, but then we'd have a hard time to include extra information like audio/video PTS differences. We could also just hardcode all statistics collection and processing in the player code, but then we'd end up with something like mplayer's status line, which was cluttered and required a centralized approach (i.e. getting the data to the status line; so it was all in mplayer.c). Some players can visualize such statistics on OSD, but that sounds even more complicated. So the approach added with this commit sounds sensible. The stats-conv.py script is rather primitive at the moment and its output is semi-ugly. It uses matplotlib, so it could probably be extended to do a lot, so it's not a dead-end.
* client API: remove mpv_event_pause_reasonwm42014-04-141-21/+5
| | | | | | | | | And slightly adjust the semantics of MPV_EVENT_PAUSE/MPV_EVENT_UNPAUSE. The real pause state can now be queried with the "core-idle" property, the user pause state with the "pause" property, whether the player is paused due to cache with "paused-for-cache", and the keep open event can be guessed with the "eof-reached" property.
* command: add property to indicate when pausing due to --keep-openwm42014-04-141-0/+7
| | | | | | | This property is set to "yes" if playback was paused due to --keep-open. The change notification might not always be perfect; maybe that should be improved.
* command: add a property to indicate core pause statewm42014-04-141-0/+5
| | | | | | | | | Currently this is (probably) equivalent to "paused-for-cache", but the latter is a bit special, while this new property is a bit more general. One case where they might actually be different is dvdnav menus, but I haven't checked. Also add property change notifications for these two properties.
* New option --no-ometadata to opt out of including metadata when encoding.Rudolf Polzer2014-04-141-0/+4
| | | | | | | This re-allows the previous behaviour of being able to reencode with metadata removed, which is useful when encoding "inconsistently" tagged data for a device/player that shows file names when tags are not present.
* vf_vapoursynth: wipe vapoursynth state completely on reloadingwm42014-04-141-4/+1
| | | | | | | | Before this commit, the filter attempted to keep the vsscript state (p->se) even when the script was reloaded. Change it to destroy the script state too on reloading. Now no workaround for LoadPlugin is necessary, and this also fixes a weird theoretical race condition when destroying and recreating the mpv source filter.
* Remove radio://wm42014-04-132-56/+0
| | | | | It was disabled by default, works only for analogue radio, and I bet nobody uses it.
* command: add vf-metadata propertyKevin Mitchell2014-04-131-1/+12
| | | | | | | This is a read-only property that uses VFCTRL_GET_METADATA to retrieve mp_tags metadata from a filter specified by label Signed-off-by: wm4 <wm4@nowhere>
* command: add paused-for-cache, total-avsync-change, drop-frame-count propertiesDavid Weber2014-04-131-0/+11
| | | | | | | | | This is needed if you want to reimplement the status line in lua I could only test drop-frame-count because I didn't find an easy way to trigger paused-for-cache and total-avsync-change Signed-off-by: wm4 <wm4@nowhere>
* manpage: vf_vapoursynth: document what happens on seekingwm42014-04-131-0/+8
| | | | Unfortunately, reloading on seeking causes real problems.
* manpage: lua: separate "advanced" functions into a separate sectionwm42014-04-121-4/+10
| | | | This will be less confusing.
* lua: make it easier to integrate with foreign event loopswm42014-04-121-0/+20
| | | | We provide some "official" utility functions for this.
* lua: wrap mpv_get_wakeup_pipe()wm42014-04-121-0/+4
| | | | Pretty much experimental for issue #661.
* video: add VapourSynth filter bridgewm42014-04-121-0/+47
| | | | | | | | | | | | Mainly meant to apply simple VapourSynth filters to video at runtime. This has various restrictions, which are listed in the manpage. Additionally, this actually copies video frames when converting frame references from mpv to VapourSynth, and a second time when going from VapourSynth to mpv. This is inefficient and could probably be easily improved. But for now, this is simpler, and in fact I'm not sure if we even can references VapourSynth frames after the core has been destroyed.
* manpage: fix --vf=scale optionsJames Ross-Gowan2014-04-111-3/+3
|
* manpage: document how the client API retrieves the complicated propertieswm42014-04-111-0/+82
| | | | | "Complicated" as in they use sub-properties, and using MPV_FORMAT_NODE allows an application to retrieve all information at once.
* lua: add a minor helper functionwm42014-04-101-0/+4
|
* cache: allow resizing at runtimewm42014-04-091-0/+12
| | | | | | | | | | | The only tricky part is keeping the cache contents, which is made simple by allocating the new cache while still keeping the old cache around, and then copying the old data. To explain the "Don't use this when playing DVD or Bluray." comment: the cache also associates timestamps to blocks of bytes, but throws away the timestamps on seek. Thus you will experience strange behavior after resizing the cache until the old cached region is exhausted.
* manpage: --ad-spdif-dtshd=yes works nowwm42014-04-081-1/+2
| | | | | It was fixed a while ago. There are still some issues, as pointed out in the manpage addition.
* vd_lavc: by default, do not show corrupt frameswm42014-04-081-1/+1
| | | | This flips the default value. Use --vd-lavc-show-all=yes to revert.
* client API: avoid redundant property change events if possiblewm42014-04-081-5/+9
| | | | | This is done simply by comparing the previous and current values. Do this only if the requested format is not MPV_FORMAT_NONE.
* lua: add API for observing property changeswm42014-04-081-0/+22
| | | | | A low level API was added already earlier, but that was merely a binding for the raw C API. Add a "proper" one, and document it.
* remove redundant/outdated line from encodeing.rst:"what works"Kevin Mitchell2014-04-031-1/+0
|
* lua: give more control over timerswm42014-04-021-5/+17
| | | | | | | | | | | Now they can be paused and resumed. Since pausing and disabling the timer is essentially the same underlying operation, we also just provide one method for it. mp.cancel_timer probably still works, but I'm considering this deprecated, and it's removed from the manpage. (We didn't have a release with this function yet, so no formal deprecation.)
* lua: add mp.unregister_event() functionwm42014-04-011-0/+5
| | | | Someone requested this... I think.
* DOCS/encoding: make "What does not work yet" a proper RST sectionwm42014-04-011-0/+1
|
* vo_opengl, cocoa: allow to autoselect a color profileStefano Pigozzi2014-03-311-0/+7
| | | | | | | | | | | | | This commit adds support for automatic selection of color profiles based on the display where mpv is initialized, and automatically changes the color profile when display is changed or the profile itself is changed from System Preferences. @UliZappe was responsible with the testing and implementation of a lot of this commit, including the original implementation of `cocoa_get_icc_profile_path` (See #594). Fixes #594
* command: allow changing filters before video chain initializationwm42014-03-301-0/+6
| | | | | | | Apparently this is more intuitive. Somewhat tricky, because of the odd state after loading a file but before initializing the VO.
* command: change what the metadata property returnswm42014-03-301-3/+9
| | | | | | | Change the type of the property from a string list (alternating key/value entries) to a map. Using the client API, this will return MPV_FORMAT_NODE_MAP, while Lua mp.get_property_native returns a dictionary-like table.
* manpage: remove misleading description for --ontopStefano Pigozzi2014-03-291-2/+1
| | | | | Pretty much all the VOs and backends support this, so there is no point in listing only X11 and corevideo support.
* manpage: osc: document some recent additionswm42014-03-201-0/+27
|
* manpage: clarify what to pass to --hwdec-codecs optionwm42014-03-201-1/+3
|
* manpage: mark disc-title as writeablewm42014-03-181-2/+3
|
* changes.rst: add dvd://1 -> dvd://0 changewm42014-03-171-0/+1
| | | | Done two commits ago.
* lua: rename mp.register_script_command() to mp.register_script_message()wm42014-03-171-5/+5
| | | | More consistent naming.
* command, lua: change script_message semanticswm42014-03-172-14/+29
| | | | | | | | Change script_message to broadcast the message to all clients. Add a new script_message_to command, which does what the old script_message command did. This is intended as simplification, although it might lead to chaos too.
* manpage: remove author fieldwm42014-03-161-1/+0
| | | | | | There's already a more detailed "AUTHORS" section. Closes #647.
* vf_delogo: remove internal implementationwm42014-03-161-5/+0
| | | | See previous commit.
* command: rename dvd- properties to disc-wm42014-03-151-4/+4
| | | | Since these are not DVD-only, but can also be used with BDs.
* DOCS/coding-style: add another requirement for commit messageswm42014-03-151-0/+3
|
* command: prefix DVD title properties with "dvd-"wm42014-03-151-1/+4
| | | | | | | | | | They're strictly DVD-only, so it's better to mark them as such. This also documentes the "title" (now renamed to "dvd-title") property. This also avoids collision with the --title option. (Technically, there was no problem. But it might be confusing for users, since we have a policy of naming properties and options the same if they refer to the same underlying functionality.)
* af_volume: add detach optionwm42014-03-141-0/+6
| | | | | | Maybe this should be default. On the other hand, this filter does something even if the volume is neutral: it clips samples against the allowed range, should the decoder or a previous filter output garbage.
* manpage: af: minor syntax improvementswm42014-03-141-4/+4
|
* af_volume: remove double-negated suboptionwm42014-03-141-3/+3
| | | | | You had to use "no-replaygain-noclip" to set this option. Rename it, so that only one negation is needed.
* af_volume: add support for replaygain pre-amp and clipping preventionAlessandro Ghedini2014-03-131-0/+6
|
* af_volume: add replaygain supportAlessandro Ghedini2014-03-131-0/+6
| | | | | | | | | This adds the options replaygain-track and replaygain-album. If either is set, the replaygain track or album gain will be automatically read from the track metadata and the volume adjusted accordingly. This only supports reading REPLAYGAIN_(TRACK|ALBUM)_GAIN tags. Other formats like LAME's info header would probably require support from libav.
* DOCS/coding-style: add an example and another rulewm42014-03-131-0/+25
|
* DOCS/tech-overview: DOCS/OUTDATED-tech/ was deletedwm42014-03-121-3/+1
|
* DOCS: add coding stylewm42014-03-121-0/+111
| | | | | | I've tried not to be too detailed (because it's not a reference, just some guidelines), but it still got relatively long. Also contains conventions for sending patches.
* options.rst: correct broken URLDiogo Franco2014-03-111-1/+1
|
* vo_opengl: Simplify and clarify color correction codeNiklas Haas2014-03-101-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit: - Changes some of the #define and variable names for clarification and adds comments where appropriate. - Unifies :srgb and :icc-profile, making them fit into the same step of the decoding process and removing the weird interactions between both of them. - Makes :icc-profile take precedence over :srgb (to significantly reduce the number of confusing and useless special cases) - Moves BT709 decompanding (approximate or actual) to the shader in all cases, making it happen before upscaling (instead of the old 0.45 gamma function). This is the simpler and more proper way to do it. - Enables the approx gamma function to work with :srgb as well due to this (since they now share the gamma expansion code). - Renames :icc-approx-gamma to :approx-gamma since it is no longer tied to the ICC options or LittleCMS. - Uses gamma 2.4 as input space for the actual 3DLUT, this is now a pretty arbitrary factor but I picked 2.4 mainly because a higher pure power value here seems to produce visually better results with wide gamut profiles, rather then the previous 1.95 or BT.709. - Adds the input gamma space to the 3dlut cache header in case we change it more in the future, or even make it user customizable (though I don't see why the latter would really be necessary). - Fixes the OSD's gamma when using :srgb, which was previously still using the old (0.45) approximation in all cases. - Updates documentation on :srgb, it was still mentioning the old behavior from circa a year ago. This commit should serve to both open up and make the CMS/shader code much more accessible and less confusing/error-prone and simultaneously also improve the performance of 3DLUTs with wide gamut color spaces. I would liked to have made it more modular but almost all of these changes are interdependent, save for the documentation updates. Note: Right now, the "3DLUT takes precedence over SRGB" logic is just coded into gl_lcms.c's compile_shaders function. Ideally, this should be done earlier, when parsing the options (by overriding the actual opts.srgb flag) and output a warning to the user. Note: I'm not sure how well this works together with real-world subtitles that may need to be color corrected as well. I'm not sure whether :approx-gamma needs to apply to subtitles as well. I'll need to test this on proper files later. Note: As of now, linear light scaling is still intrinsically tied to either :srgb or :icc-profile. It would be thinkable to have this as an extra option, :linear-scaling or similar, that could be used with or without the two color management options.
* audio: make --channels option always force the output layoutwm42014-03-102-11/+15
| | | | | | Use the --channels value directly on the AO, instead of doing it only in the --channels=stereo (default) case and if the decoder output is not stereo.
* DOCS: fix an external linkwm42014-03-091-3/+3
| | | | This got lost in commit b980884f.
* ao_jack: use new pull API helperswm42014-03-091-3/+0
| | | | | | | | | | | This removes the ringbuffer management from the code, and uses the generic code added with the previous commit. The result should be pretty much the same. The "estimate" sub-option goes away. This estimation is now always active. The new code for delay estimation is slightly different, and follows the claim of the jack framework that callbacks are timed exactly.
* ao_null: add option for simulated device speedwm42014-03-091-0/+5
| | | | Helps with testing and debugging.
* sd_ass: add a very simple and evil way to override ASS subtitle styleswm42014-03-011-5/+10
| | | | | | --ass-style-override=force now attempts to override the 'Default' style. May or may not work. In some situations it will work, but also mess up seemingly unrelated things like signs typeset with ASS.
* lua: add option to disable auto-loading of lua scriptswm42014-02-282-1/+6
|
* manpage: document properties added in previous commitwm42014-02-281-0/+7
|
* manpage: lua: fix typowm42014-02-281-1/+1
|
* manpage: lua: update from previous commitwm42014-02-281-1/+7
| | | | I forgot about this.
* DOCS: kill the rest of the old mplayer tech documentationwm42014-02-288-949/+0
| | | | Not really useful anymore, other than confusing everyone.
* vo_opengl: change gamma suboption to take a valuewm42014-02-271-2/+7
| | | | | | | | | | | | The previous version of the gamma suboption was pretty useless. It could be used to disable delayed gamma enabling, which is a mechanism to avoid having to adjust gamma in the shader by default. Repurpose the suboption and allow setting an exact gamma value with it. You can already override gamma with the --gamma option as well as the gamma input property, but these use a weird curve to create the impression of a linear perceived brightness change when changing the value. This suboption now allows setting an exact gamma value.
* vo_opengl: Change the default icc-intent to relative colorimetricNiklas Haas2014-02-261-2/+2
| | | | | | | | | | | | | | | | This used to be absolute colorimetric, but relative colorimetric is a saner default due to the arguments presented in issue #595. A short summary: In general it doesn't affect much because our eyes adapt to the white point either way, but if running in windowed mode it would make the whites seem inconsistent/tinted. For fullscreen projection it's also undesirable since it reduces the dynamic range without much benefit (again, since our eyes adapt either way) and it also breaks calibration against ambient lighting. This shouldn't change much, since most profile types that aren't 3DLUTs aren't capable of either of those transforms, and most displays are calibrated against D65 (same as BT.709 source) either way.
* lua: add set_property_native functionwm42014-02-261-2/+12
| | | | | | Probably completely useless, at least for now. Also not very well tested, but initial test seems successful.
* options: allow changing options at runtimewm42014-02-251-2/+4
| | | | | Allow changing all options at runtime, except some cherry-picked options, which are disabled with M_OPT_FIXED.
* manpage: remove unused environment variablewm42014-02-251-3/+0
| | | | We removed gettext (which was disabled by default) a while ago.
* config: add a --config-dir option to force config directorywm42014-02-251-0/+11
| | | | Useful for slave-mode like uses, and not as radical as --no-config.
* manpage: Improve wording on icc-approx-gammaNiklas Haas2014-02-251-5/+5
| | | | | This version is clearer on its origin, prevalence and use case and offers some advice to the user.
* manpage: document the new loadfile argumentwm42014-02-251-1/+6
| | | | I forgot about this.
* client api examples: set an option with MPV_FORMAT_FLAGwm42014-02-241-1/+2
|
* client API: report pause/unpause reasonwm42014-02-241-0/+19
| | | | | | | | | Not sure about this... might redo. At least this provides a case of a broadcasted event, which requires per-event data allocation. See github issue #576.
* lua: add a bunch of functions to get/set properties by their native typewm42014-02-241-2/+40
| | | | | | There are some complications because the client API distinguishes between integers and floats, while Lua has only "numbers" (which are usually floats). But I think this should work now.
* vo_opengl: Add :icc-approx-gamma suboption to approximate BT.709 gammaNiklas Haas2014-02-241-0/+8
| | | | | | This uses the value of 1.95 as an approximation for the exact gamma curve, which replicates the behavior of popular video software including anything in the Apple ecosystem, as per issue #534.
* command: use DVD volume ID for media-title propertyxylosper2014-02-231-0/+2
| | | | | | Signed-off-by: wm4 <wm4@nowhere> Closes #582.
* manpage: fix a metadata property namewm42014-02-231-1/+1
|
* manpage: fix yadif example in one casewm42014-02-231-1/+1
|
* input: check for abort cmd in multi-commandswm42014-02-201-5/+0
| | | | | | | | | MP_CMD_COMMAND_LIST commands (used to implement key bindings with multiple commands) were not checked for abort commands. Implement it. Remove the remarks about multi-commands being special from the manpage. Seek coalescing is handled differently now, and the issue with abort commands is fixed with this commit.
* manpage: input: clarify chapter-metadata propertywm42014-02-191-2/+8
|
* command: allow accessing metadata entries as listwm42014-02-191-0/+12
| | | | | | Not sure about these deep path-names. Maybe "metadata/0" should work instead of "metadata/list/0". I'm so unsure about it, that I'm leaving it open.
* command: move metadata entry access to metadata/by-key/wm42014-02-191-2/+8
| | | | | | The old way still works, and is fine to use. Still discourage it, because it might conflict with other ways to access this property, such as the one added in the next commit.
* manpage: lua: improve explanation of tracks-changed and tracks-switchedwm42014-02-191-4/+4
|
* client API: add event for metadata changeswm42014-02-191-0/+3
|
* command: export list of editions as propertieswm42014-02-191-0/+22
|
* command: export codec for each trackwm42014-02-191-0/+4
|
* edl: extend with chapter timestampswm42014-02-191-1/+17
| | | | | | Example see edl-mpv.rst. What is this useful for? No clue...
* manpage: lua: shorten description of register_script_command()wm42014-02-171-37/+12
| | | | | | | | | This is simply not important enough to warrant so much space, and it's perhaps also very confusing. Although I'm not fully sure, since this is about the only way that allows a user to interact with a script, besides key bindings and static options.
* manpage: lua: attempt to improve add_key_binding() descriptionwm42014-02-171-18/+23
|
* manpage: lua: improve introduction, add simplistic examplewm42014-02-171-15/+26
|
* manpage: lua: fix typowm42014-02-171-1/+1
|
* manpage: input: document script_message commandwm42014-02-171-0/+8
|
* client API: add events for video and audio reconfigwm42014-02-171-0/+6
|
* lua: add mechanism for script provided key bindingswm42014-02-171-1/+99
| | | | | | | | | | | | | There was already an undocumented mechanism provided by mp.set_key_bindings and other functions, but this was relatively verbose, and also weird. It was mainly to make the OSC happy (including being efficient and supporting weird corner cases), while the new functions try to be a bit simpler. This also provides a way to let users rebind script-provided commands. (This mechanism is less efficient, because it's O(n^2) for n added key bindings, but it shouldn't matter.)
* client API: add a client message eventwm42014-02-171-0/+6
| | | | | This comes with a "script_message" input command, which sends these messages. Used by the following commits.
* lua: allow giving fallback values in get_property() callswm42014-02-171-6/+8
| | | | | E.g. ``mp.get_property("foo", "value")`` will return ``value`` if the property can't be read.
* DOCS/crosscompile-mingw: use settings.mk instead of make variablesTimothy Gu2014-02-171-9/+20
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* DOCS/crosscompile-mingw: update disk space statsTimothy Gu2014-02-171-1/+1
|
* DOCS/crosscompile-mingw: updateTimothy Gu2014-02-171-16/+24
| | | | | - Adds description of and uses $JOBS envvar in MXE instructions - Adds MXE_TARGETS to command line instead of echoing it to settings.mk - Prettify and sentence usage
* command: export chapter list as propertieswm42014-02-161-0/+12
|
* command: export playlist as propertieswm42014-02-161-0/+9
|
* command: expose track list as propertieswm42014-02-161-0/+42
|
* command: export more video params as propertieswm42014-02-161-3/+40
| | | | | This uses the previously added sub-property mechanism to export a bunch of stuff. For example, "video-params/w" now contains the video width.
* crosscompile-mingw: improve instructions for MXEwm42014-02-141-0/+2
|
* options: make --no-config block all auto-loaded configuration fileswm42014-02-141-4/+2
| | | | | | | | | | | | Until now, the --no-config was explicitly checked in multiple places to suppress loading of config files. Add such a check to the config path code itself, and refuse to resolve _any_ configuration file locations if the option is set. osc.lua needs a small fixup, because it didn't handle the situation when no path was returned. There may some of such cases in the C code too, but I didn't find any on a quick look.
* lua: auto-load scripts from ~/.mpv/lua/wm42014-02-141-0/+5
| | | | This is like passing them to --lua.
* lua: make register_event() not overwrite previous event handlerwm42014-02-141-0/+4
| | | | | | | | Instead, chain them. Note that there's no logic to prevent the other event handlers to be run from an event handler (like it's popular in GUI toolkits), because I think that's not very useful for this purpose.
* manpage: reformat property listwm42014-02-121-113/+344
| | | | | | | | Use a list instead of a table. This makes it easier to provide extended information about a property, and doesn't require you to fiddle with rhe RST ASCII-art tables. Also, extend some property descriptions.
* manpage: lua: move less important events to the end of the listwm42014-02-121-36/+35
|
* manpage: lua: document receiving of terminal messageswm42014-02-121-2/+36
|
* manpage: lua: rewrite event descriptionwm42014-02-121-30/+86
| | | | | Using such a small table is not such a great idea, because you can't put much information in it, even if you need to.
* manpage: lua: minor fixeswm42014-02-121-4/+4
|
* man: update wayland optionsAlexander Preisinger2014-02-111-3/+8
|
* manpage: fix Lua script shutdown description againwm42014-02-111-6/+6
| | | | | | It was split at the wrong sentence. Also, sneak in a reference to mp.suspend.
* manpage: document --aspect special valueswm42014-02-111-0/+7
| | | | | | | Use of these is "discouraged", but they're there to select these special cases with the "aspect" property. They really should use some sort of choice option type, but since it would be some work to make these work with float values, the simple and dumb alternative was picked.
* manpage: use Lua for Lua examplewm42014-02-111-1/+1
|
* manpage: document mp.commandv Lua commandwm42014-02-111-0/+15
|
* manpage: move description of script shutdown to a separate paragraphwm42014-02-111-4/+6
| | | | No other changes, just adding a paragraph break and reflowing the text.
* manpage: fix formatting of example codewm42014-02-111-6/+7
|
* manpage: document some Lua scripting functionswm42014-02-111-2/+160
|
* Add a client API examplewm42014-02-102-0/+53
|
* options: add --no-terminal switchwm42014-02-101-0/+7
| | | | | Mostly useful for internal reasons. This code will be enabled by default if mpv is started via the client API.
* DOCS/waf-buildsystem: add link to the Waf bookTimothy Gu2014-02-061-1/+1
|
* DOCS/crosscompile-mingw: use MarkdownTimothy Gu2014-02-061-1/+6
|
* DOCS/crosscompile-mingw: updateTimothy Gu2014-02-061-4/+0
| | | | MXE's ffmpeg is not old anymore.
* quvi: disable subtitle fetching by defaultwm42014-01-311-4/+6
| | | | This is slow and unreliable, basically unusable.
* options: alternative way to specify color optionswm42014-01-311-10/+22
| | | | | | | | | | | | | | | | Try to make it more intuitive by not requiring hex values. The new way uses float values in the range 0.0-1.0, separated by '/' (':' was suggested, but that wouldn't allow color options in sub-options). Example: --osd-color=1.0/0.0/0.0/0.75 Using the range 0.0-1.0 has the advantage that it could be easily extended to colors beyond 8 bit. Details see manpage. Suggestions for alternative syntax or value ranges are welcome, but be quick with it.
* manpage: fix af_equalizer syntaxwm42014-01-191-1/+1
| | | | This doesn't need quoting, for some reason.
* lua: add a --lua-opts option, which can be queried by scriptswm42014-01-161-0/+5
| | | | | | | The values set by this new option can be queried by Lua scripts using the mp.getopt() function. The function takes a string parameter, and returns the value of the first key that matches. If no key matches, nil is returned.
* player: add --term-osd-bar, which shows a status bar on the terminalwm42014-01-151-0/+12
| | | | | Feature request from github issue #451. Disabled by default, will probably stay this way.
* manpage: document --term-osd=forcewm42014-01-131-1/+3
| | | | | Apparently this was forgotten when it was first added, or maybe it's an arrifact from the rst conversion.
* player: redo terminal OSD and status line handlingwm42014-01-131-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The terminal OSD code includes the handling of the terminal status line, showing player OSD messages on the terminal, and showing subtitles on terminal (the latter two only if there is no video window, or if terminal OSD is forced). This didn't handle some corner cases correctly. For example, showing an OSD message on the terminal always cleared the previous line, even if the line was an important message (or even just the command prompt, if most other messages were silenced). Attempt to handle this correctly by keeping track of how many lines the terminal OSD currently consists of. Since there could be race conditions with other messages being printed, implement this in msg.c. Now msg.c expects that MSGL_STATUS messages rewrite the status line, so the caller is forced to use a single mp_msg() call to set the status line. Instead of littering print_status() all over the place, update the status only once per playloop iteration in update_osd_msg(). In audio- only mode, the status line might now be a little bit off, but it's perhaps ok. Print the status line only if it has changed, or if another message was printed. This might help with extremely slow terminals, although in audio+video mode, it'll still be updated very often (A-V sync display changes on every frame). Instead of hardcoding the terminal sequences, use terminfo/termcap to get the sequences. Remove the --term-osd-esc option, which allowed to override the hardcoded escapes - it's useless now. The fallback for terminals with no escape sequences for moving the cursor and clearing a line is removed. This somewhat breaks status line display on these terminals, including the MS Windows console: instead of querying the terminal size and clearing the line manually by padding the output with spaces, the line is simply not cleared. I don't expect this to be a problem on UNIX, and on MS Windows we could emulate escape sequences. Note that terminal OSD (other than the status line) was broken anyway on these terminals. In osd.c, the function get_term_width() is not used anymore, so remove it. To remind us that the MS Windows console apparently adds a line break when writint the last column, adjust screen_width in terminal- win.c accordingly.
* options: remove --screenw and --screenhwm42014-01-111-8/+0
| | | | | | | | | Doesn't make any sense anymore. X11 (which was mentioned in the manpage) autodetects it, and everything else ignored the option values. Since for incomprehensible reasons the backends and vo.c still need to exchange information about the screensize using the option fields, they're not removed yet.
* options: don't reset pause mode when switching to next filewm42014-01-091-3/+3
| | | | | | This basically reverts the default as set by commit 812798c5. This seems to be a matter of taste, but personally I think keeping the pause setting is better.
* screenshot: add format specifiers to get file directory pathwm42014-01-081-0/+6
| | | | | Useful if you want to put the screenshot into the same directory as the file that is being played.
* Switch PDF manual generation to rst2pdfMartin Herkt2014-01-082-24/+0
| | | | | | | This finally gets rid of the LaTeX dependency. We should actually be using docultils directly here, but I didn't do this because of all the potential Python 2/3 breakage.
* ao_pulse: lower default buffer size from 1000ms to 250mswm42014-01-071-1/+1
| | | | | | | | | | 1000ms is a bit insane. It makes behavior on playback speed changes worse (because the player has to catch up the dropped audio due to audio-chain reset), and perhaps makes seeking slower. Note that the problem of playback speed changes misbehaving will be fixed in the future, but even then we don't want to have a buffer that large.
* ao_pulse: add suboption to control buffer sizewm42014-01-071-0/+6
|
* manpage: mention how to get a list of codecs for use with --hwdec-codecswm42014-01-071-0/+3
|
* Fix audio delay inversionMartin Herkt2014-01-061-2/+2
|
* quvi: add option to not fetch subtitlesAndre D2014-01-051-0/+7
| | | | Signed-off-by: wm4 <wm4@nowhere>
* manpage: fix typowm42014-01-051-1/+1
|
* manpage: mention --pauseMartin Herkt2014-01-031-0/+3
|
* manpage: clarifications about bitmap subtitles and --secondary-sidwm42014-01-011-2/+4
|
* manpage: fix description on the slave mode msglevelwm42014-01-011-2/+1
|
* manpage: fix vf_noise parameter namewm42013-12-301-2/+2
|
* vd_lavc: by default, output all frames, even corrupted oneswm42013-12-291-0/+5
| | | | | | | | | | | | | | | | Set the flag CODEC_FLAG_OUTPUT_CORRUPT by default. Note that there is also CODEC_FLAG2_SHOW_ALL, which is older, but this seems to be ffmpeg only. Note that whether you want this enabled depends on the user. Some might prefer that only good frames are output, while others want the decoder to try as hard as possible to output _anything_. Since mplayer/mpv is rather the kind of player that tries hard instead of being "clever", set the new default to override libavcodec's default. A nice way to test this is switching video tracks. Since mpv doesn't wait for the next key frame, it'll start feeding the decoder with a packet from the middle of the stream.
* Install encoding-profiles.conf by defaultwm42013-12-281-6/+5
| | | | | | | | | | | | This is probably useful. Note that this includes a small, stupid hack to prevent loading of the config file if vf_lavfi is not available. The profile by default uses vf_lavfi, and the config parser will output errors if vf_lavfi is not available. As another caveat, we install the example profile even if encoding is disabled (though we don't load it, since this would print errors).
* player: add --secondary-sid for displaying a second subtitle streamwm42013-12-242-0/+23
| | | | | | | This is relatively hacky, but it's Christmas, so it's ok. This does two things: 1. allow selecting two subtitle tracks, and 2. include a hack that renders the second subtitle always as toptitle. See manpage additions how to use this.
* changes.rst: add entry for dvdnav menuwm42013-12-231-1/+1
|
* manpage: mention video-unscaled propertywm42013-12-231-0/+1
|
* options: disable joystick by defaultwm42013-12-231-1/+1
|
* af_export: require filename argumentwm42013-12-211-2/+2
| | | | | | Since mp_find_user_config_file() is going to get a context argument, which would be annoying to do in the audio chain (actually I'm just lazy).
* msg: change --msglevel, reduce legacy gluewm42013-12-202-12/+17
| | | | | | | | | | | | Basically, reimplement --msglevel. Instead of making the new msg code use the legacy code, make the legacy code use the reimplemented functionality. The handling of the deprecated --identify switch changes. It temporarily stops working; this will be fixed in later commits. The actual sub-options syntax (like --msglevel-vo=...) goes away, but I bet nobody knew about this or used this anyway.
* crosscompile-mingw.txt: fix instructionswm42013-12-191-1/+1
| | | | | The instructions hardcode some paths, so it sure would be better if the listed commands actually use this path.
* command: remove radio commandswm42013-12-191-2/+1
| | | | | | | Remove these because I'm too lazy to convert them to proper STREAM_CTRLs. Considering that probably nobody uses radio://, caring about this is a complete waste of time. I will add these commands back if someone asks for them, but I don't expect this to happen.
* Fix OSX build; remove all remaining mpvcore references11rcombs2013-12-171-7/+7
|
* command: scale osd’s time remaining by the current speedVivek Jain2013-12-161-0/+1
| | | | Signed-off-by: wm4 <wm4@nowhere>
* manpage: fix --vf=expand aspect ratio exampleAlessandro Ghedini2013-12-161-1/+1
|
* manpage: undocument syntax for skipping optional arguments in input commandswm42013-12-161-2/+0
| | | | | | | | "-" could skip optional arguments. I think this was a pretty bad idea, because it introduced a weird special case. I'll remove the special syntax, but keep compatibility for the "seek" and "screenshot" commands.
* matroska: add --ordered-chapters-files optionwm42013-12-141-0/+12
| | | | | This option takes a playlist. The playlist will then be used as list of potential segment files for use with ordered chapters.
* manpage: mention that the "run" does not wait for the commandwm42013-12-141-0/+3
|
* Allow some options taking filenames to refer to mpv config dirwm42013-12-141-0/+22
| | | | | | | | | | Add the mp_get_user_path() function, and make it expand special path prefixes. Use it for some things in mpv which take filenames (--input-config, --screenshot-template, opengl icc-profile suboption). This allows accessing files in the mpv config dir without hardcoding the config path by prefixing the path with ~~/. Details see manpage additions.
* dvdnav: select longest title by defaultwm42013-12-141-0/+1
| | | | This way we probably do the right thing, and avoid all the menu shit.
* video: change --video-zoom behaviorwm42013-12-131-3/+8
| | | | | | | | | | | Use the scaled video size (i.e. as shown on the window) as reference for zoom. This is the easiest way to fix different width/height scale factors as they happen when zooming video with a pixel aspect ratio other than 1:1. Also fix the unscaled mode, so that it 1. doesn't scale even with --video-zoom, and 2. doesn't scale by small amounts when the video is cropped by making the window smaller than the video.
* osd: add option for "unscaled" OSDwm42013-12-101-0/+6
|
* demux: set fps for mf:// to 1wm42013-12-101-1/+1
|
* manpage: remove some --flip leftoverswm42013-12-072-2/+2
|
* manpage: mark "run" command as Unix-onlywm42013-12-071-0/+1
|
* video: remove --flipwm42013-12-051-3/+0
| | | | | | | | | | | | | | | | The --flip option flipped the image upside-down, by trying to use VO support, or if not available, by inserting a video filter. I'm not sure why it existed. Maybe it was important in ancient times when VfW based decoders output an image this way (but even then, flipping an image is a free operation by negating the stride). One nice thing about this is that it provided a possible path for implementing video orientation, which is a feature we should probably support eventually. The important part is that it would be for free for VOs that support it, and would work even with hardware decoding. But for now get rid of it. It's useless, trivial, stands in the way, and supporting video orientation would require solving other problems first.
* video: allow hardware decoding only for certain codecswm42013-12-051-4/+12
| | | | | | | | | | In particular, this disables mpeg4. There are some files out there that use GMC, a usually rarely used and ineffective feature, which is not supported by most hardware decoders. In these cases the hw decoder outputs garbage, while software decoding works perfectly fine. We can't really fallback to software decoding in these cases, because we don't know that something is wrong in the first place. I can't see any advantages of hw decoding of mpeg4, so it's better to disable it.
* docs: edl: minor correctionswm42013-12-051-4/+5
|
* af_pan: change options, use option parserwm42013-12-041-9/+13
| | | | Similar to af_channels etc...
* af_ladspa: change options, use option parserwm42013-12-041-4/+13
|
* af_delay: change option parsing, fix bugs, use option parserwm42013-12-041-3/+3
| | | | Similar situation to af_channels.
* af_channels: change options, fix bugs, use option parserwm42013-12-041-8/+15
| | | | | | | Apparently this stopped working after some planar changes (broken format negotiation). Radically change option parsing in an incompatible way. Suggest alternatives to this filter, since it barely has any importance anymore.
* ad_lavc: expose an option to enable threadingwm42013-12-041-0/+6
|
* manpage: use different quoting in examplewm42013-12-041-1/+1
| | | | | Using "" quotes often tricks people into using this on the command line, while shell still expands $ inside of these.
* manpage: remove unhelpful paragraph about video filter paramswm42013-12-041-5/+0
| | | | | | This makes it sound like -1 would work to set the default for any parameter. But this is just a (crappy) convention, which doesn't work always.
* manpage: update af_format entrywm42013-12-041-10/+3
| | | | | | Don't bother explaining the sample format naming schema. The "ne" bit is outdated anyway, and anyone who has to use this option will be able to understand the naming schema just by looking at the names too.
* manpage: fix examplewm42013-12-041-1/+1
|
* manpage: remove two stray video fitler deprecation noteswm42013-12-041-10/+0
| | | | | | | | vf_stereo3d now uses vf_lavfi, if mpv was compiled with libavfilter. vf_swapuv is hereby undeprecated. It's too trivial to wrap it with libavfilter, and it's also too useless that even typing this commit message is not really worth the time to spend on it.
* manpage: generic notice about changed sub-option parsingwm42013-12-041-0/+9
| | | | | | Just in case someone expects these are unchanged just because they're not mentioned in changes.rst anywhere. Documenting all of these changes would be too much work and not helpful either.
* vf_pp: use option parserwm42013-12-042-4/+9
|
* vf_dsize: use option parserwm42013-12-041-1/+4
| | | | | | | Mostly backwards compatible, we don't change much because we just want to get rid of the legacy option string handling. You can't pass an aspect as first argument anymore.
* video/filter: remove vf_down3drightwm42013-12-041-8/+0
| | | | | | | | Apparently you can get this with: stereo3d=ab[2]{l,r}:sbs[2]{l,r} So it seems the filter is redundant and can be removed. Also see FFmpeg commit 2f11aa141a01.
* vf_pullup: change options, reroute to vf_lavfiwm42013-12-041-1/+1
| | | | The options are probably mostly backwards compatible.
* vf_unsharp: change options, reroute to vf_lavfiwm42013-12-041-14/+6
|
* vf_phase: change options, reroute to vf_lavfiwm42013-12-041-1/+1
| | | | The option change is probably backwards compatible.
* vf_noise: reroute to vf_lavfiwm42013-12-041-11/+20
| | | | | | | | Unfortunately, this forces filtering both luma and chroma, because otherwise we'd have to deal with libavfilter's vf_noise weird handling of YUV vs. RGB formats. Would we e.g. filter luma only, it would filter red in RGB mode only, because it goes by component and there's no way to distinguish YUV and RGB by just using the filter's options.
* vf_hqdn3d: change options, reroute to vf_lavfiwm42013-12-041-5/+0
|
* vf_gradfun: reroute to vf_lavfiwm42013-12-041-6/+6
| | | | | Also update the manpage. We changed defaults and added a suboption quite some time ago, and we forgot to update the manpage at all.
* vf_delogo: reroute to vf_lavfiwm42013-12-041-6/+4
| | | | The ``file`` suboption is unsupported on lavfi.
* vf_yadif: change options, reroute to vf_lavfiwm42013-12-041-11/+14
| | | | | | Also remove the ability to disable deinterlacing at runtime. You can still disable deinterlacing at runtime by using the ``D`` key and its automatical filter insertion/removal.
* vf_lavfi: export a wrapper functionwm42013-12-041-2/+2
| | | | | | | | | | | This will allow old filter to run libavfilter instead by calling vf_lw_set_graph(), which turns the filter into a wrapper, using a given libavfilter graph. Later commits use that to automatically "reroute" a bunch of filters to libavfilter. We want to get rid of the old MPlayer filter code, because it's bad an unmaintained, but we still don't want to force everyone to use vf_lavfi, so this solution will do for a while.
* manpage: mention that vda can work with vo_openglwm42013-12-022-1/+2
| | | | | Also, with the addition of VDA, all hardware decoding backends work with vo_opengl now.
* options: add option to disable using right Alt key as Alt GrVivek Jain2013-12-022-0/+9
| | | | | | | | | mpv was hardcoded to always consider the right Alt key as Alt Gr, but there are parituclar combinations of platforms and keyboard layouts where it's more convenient to treat the right Alt as a keyboard modifier just like the left one. Fixes #388
* vo_opengl: add support for rectangle textureswm42013-12-011-0/+5
| | | | | | | | | This allows vo_opengl to use GL_TEXTURE_RECTANGLE textures, either by enabling it with the 'rectangle-textures' sub-option, or by having a hwdec backend force it. By default it's off. The _only_ reason we're adding this is because VDA can export rectangle textures only.
* command: add a revert_seek commandwm42013-12-011-0/+6
| | | | As discussed on IRC.
* options: add options that set defaults for af/vf/ao/vowm42013-12-014-3/+27
| | | | | | | | There are some use cases for this. For example, you can use it to set defaults of automatically inserted filters (like af_lavrresample). It's also useful if you have a non-trivial VO configuration, and want to use --vo to quickly change between the drivers without repeating the whole configuration in the --vo argument.
* command: add a cycle_values input commandwm42013-11-301-0/+18
|
* command: change the syntax and semantics of the "run" commandwm42013-11-301-3/+18
| | | | | | | See the changes in input.rst for explanations. Technically speaking, this also gets rid of some undefined behavior: passing NULL as a vararg (execl()) is always a bug.
* ao_alsa: disable ALSA resampling by default againwm42013-11-291-1/+4
| | | | | | | | | | | | | | | | | | | | | This partially reverts commit 7d152965. It turns out that at least some ALSA drivers (at least snd-hda-intel) report incorrect audio delay with non-native sample rates, even if the sample rate is only very slightly different from the native one. For example, 48000Hz is fine on my hda-intel system, while both 8000Hz and 47999Hz lead to a delay off by 40ms (according to mpv's A/V difference display), which suggests that something in ALSA is calculating the delay using the wrong sample rate. As an additional problem, with ALSA resampling enabled, using 48001Hz/float/2ch fails, while 49000Hz/float/2ch or 48001Hz/s16/2ch work. With resampling disabled, all these cases work obviously, because our own resampler doesn't just refuse any of these formats. Since some people want to use the ALSA resampler (because it's highly configurable, supports multiple backends, etc.), we still allow enabling ALSA resampling with an ao_alsa suboption.
* command: allow "current" as argument to playlist_remove commandwm42013-11-281-2/+4
| | | | Feature request from github issue #376.
* build: make --disable-gl disable all the gl backendsStefano Pigozzi2013-11-281-0/+5
| | | | Fixes #369
* video: disable PTS sorting fallback by defaultwm42013-11-251-4/+7
| | | | | | | | | | | | | | | | It appears PTS sorting was useful only for avi files (and VfW-muxed mkv). Maybe it was historically also important for decoders with broken or non-existent PTS reordering (win32 codecs?). But now that we handle demuxers which outputs DTS only correctly, it just seems dead weight. Disable it by default. The --pts-association-mode option is now forced to always use the decoder's PTS value. You can still enable the old default (auto) or force sorting. But we will probably remove this option entirely at some point. Make demux_mkv export timestamps at DTS when it's in VfW mode. This is needed to get correct timestamps with the new default mode. demux_lavf already does that.
* demux_lavf: disable genpts by default, remove the builtin genpts hackwm42013-11-251-8/+4
| | | | | | | | | This was needed to determine PTS from DTS, but the previous commits make it unnecessary. The builtin genpts hack was used for DVD, because libavformat's genpts essentially went amok on DVD timestamp resets. See commit 65d87091 for details.
* options: implement --pphelp differentlywm42013-11-233-4/+2
| | | | Make it work via --vf=pp:help instead.
* video: remove vf_pp auto-insertionwm42013-11-232-3/+1
| | | | | | | | | | This drops the --pp option, which was probably broken for a while. The option automatically inserted the "pp" filter. The value passed to it was ignored (which is probably broken, it always selected maximal quality). Inserting this filter can be done simply with --vf=pp, so this is not needed anymore.
* manpage: document , mapping (frame_back_step)enkore2013-11-221-0/+4
| | | | See #356
* Fixing list of vo's that vavpp works with, in man page.Josh Driver2013-11-221-4/+4
|
* switch the build system to wafStefano Pigozzi2013-11-213-4/+154
| | | | | | | | | | | | | | | | | | | | | | | This commit adds a new build system based on waf. configure and Makefile are deprecated effective immediately and someday in the future they will be removed (they are still available by running ./old-configure). You can find how the choice for waf came to be in `DOCS/waf-buildsystem.rst`. TL;DR: we couldn't get the same level of abstraction and customization with other build systems we tried (CMake and autotools). For guidance on how to build the software now, take a look at README.md and the cross compilation guide. CREDITS: This is a squash of ~250 commits. Some of them are not by me, so here is the deserved attribution: - @wm4 contributed some Windows fixes, renamed configure to old-configure and contributed to the bootstrap script. Also, GNU/Linux testing. - @lachs0r contributed some Windows fixes and the bootstrap script. - @Nikoli contributed a lot of testing and discovered many bugs. - @CrimsonVoid contributed changes to the bootstrap script.
* timeline: reject mplayer2 EDL files, change EDL headerwm42013-11-211-3/+4
| | | | | | | | | | | This was forgotten when the parser for mplayer2 EDL files was removed. Change the header of the mpv EDL format to include a '#', so a naive parser could skip the header as comment. (Maybe this is questionable; on the other hand, if it can be simpler, why not.) Also, strip the header in demux_edl.c before passing on the data, so the header check doesn't need to be duplicated in tl_mpv_edl.c.
* tech-overview.txt: minor updatewm42013-11-201-2/+2
|
* timeline: remove support for the mplayer2 EDL formatwm42013-11-191-139/+0
| | | | | It was a bit too complicated and inconvenient, and I doubt anyone actively used it. The mpv EDL format should cover all use cases.
* player: add --merge-files optionwm42013-11-191-0/+9
|
* timeline: add edl:// URIswm42013-11-192-0/+10
| | | | | Questionable change from user perspective, but internally needed to implement the next commit. Also useful for testing timeline stuff.
* timeline: add new EDL formatwm42013-11-191-0/+94
| | | | | | | | | | Edit Decision Lists (EDL) allow combining parts from multiple source files into one virtual file. MPlayer had an EDL format (which sucked), which mplayer2 tried to improve with its own format (which sucked). As logic demands, mpv introduces its very own format (which sucks). The new format should actually be much simpler and easier to use, and its implementation is simpler and smaller too.
* manpage: fix typo in --video-align-y descriptionwm42013-11-191-1/+1
|
* ao_null: properly simulate final chunk, add buffer optionswm42013-11-171-0/+6
| | | | | | | | | | Simulate proper handling of AOPLAY_FINAL_CHUNK. Print when underruns occur (i.e. running out of data). Add some options that control simulated buffer and outburst sizes. All this is useful for debugging and self-documentation. (Note that ao_null always was supposed to simulate an ideal AO, which is the reason why it fools people who try to use it for benchmarking video.)
* audio: drop "_NE"/"ne" suffix from audio formatswm42013-11-151-6/+6
| | | | | | You get the native format by not appending any suffix to the format. This change includes user-facing names, e.g. for the --format option.
* manpage: mark DTS-HD passthough as brokenwm42013-11-151-0/+2
|
* af_lavcac3enc: use option parserwm42013-11-151-8/+9
| | | | | | | This changes option parsing as well as filter defaults slightly. The default is now to encode to spdif (this is way more useful than writing raw AC3 - what was this even useful for, other than writing broken ac3 -in-wav files?). The bitrate parameter is now always in kbps.
* ao_null: add untimed sub-optionwm42013-11-131-1/+6
|
* sd_lavc, sd_spu: make dvdsub stretching conditional on --stretch-dvd-subs.Rudolf Polzer2013-11-071-0/+13
| | | | | | | | | | | | We found that the stretching - although it usually improves the looks of the fonts - is incorrect. On DVD, subtitles can cover the full area of the picture, and they have the same pixel aspect as the movie itself. Too bad many commercially released DVDs use bitmap fonts made with the wrong pixel aspect (i.e. assuming 1:1) - --stretch-dvd-subs will make these more pretty then.
* vd_lavc: remove explicit crystalhd supportwm42013-11-061-1/+0
| | | | | | | | | | | | | | | | This removes "--hwdec=crystalhd". I doubt anyone even tried to use this. But even if someone wants to use it, the decoders can still be explicitly invoked with e.g.: --vd=lavc:h264_crystalhd The only advantage our special code provided was fallback to software decoding. (But I'm not sure how the ffmpeg crystalhd pseudo-decoder actually behaves.) Removing this will allow some simplifications as soon as we don't need vdpau_old.c anymore.
* vo_opengl: support for vdpau hardware decodingwm42013-11-051-1/+1
| | | | | | | | | | | | This uses vdpau OpenGL interop to convert a vdpau surface to a texture. Note that this is a bit weak and primitive. Deinterlacing (or any other form of vdpau postprocessing) is not supported. vo_opengl chroma scaling and chroma sample position are not supported. Internally, the vdpau video surfaces are converted to a RGBA surface first, because using the video surfaces directly is too complicated. (These surfaces are always split into separate fields, and the vo_opengl core expects progressive frames or frames with weaved fields.)
* manpage: fix incorrect default for --oscwm42013-11-051-1/+1
|
* vo_opengl: add support for VA-API OpenGL interopwm42013-11-041-1/+1
| | | | | | | | VA-API's OpenGL/GLX interop is pretty bad and perhaps slow (renders a X11 pixmap into a FBO, and has to go over X11, probably involves one or more copies), and this code serves more as an example, rather than for serious use. On the other hand, this might be work much better than vo_vaapi, even if slightly slower.
* vo_opengl: add infrastructure for hardware decoding OpenGL interopwm42013-11-041-0/+5
| | | | | | | | | | | | Most hardware decoding APIs provide some OpenGL interop. This allows using vo_opengl, without having to read the video data back from GPU. This requires adding a backend for each hardware decoding API. (Each backend is an entry in gl_hwdec_vaglx[].) The backends expose video data as a set of OpenGL textures. Add infrastructure to support this. The next commit will add support for VA-API.
* video: check profiles with hardware decodingwm42013-11-011-0/+7
| | | | | | | | | | | | | | | We had some code for checking profiles earlier, which was removed in commits 2508f38 and adfb71b. These commits mentioned that (working) hw decoding was sometimes prevented due to profile checking, but I can't find the samples anymore that showed this behavior. Also, I changed my opinion, and I think checking the profiles is something that should be done for better fallback to software decoding behavior. The checks roughly follow VLC's vdpau profile checks, although we do not check codec levels. (VLC's profile checks aren't necessarily completely correct, but they're a welcome help anyway.) Add a --vd-lavc-check-hw-profile option, which skips the profile check.
* command: replace speed_mult with multiply commandwm42013-10-311-3/+0
| | | | The compatibility layer still takes care of the old speed_mult command.
* command: add generic "multiply" commandwm42013-10-311-0/+3
| | | | Essentially works like "add".
* command: add property to scale window sizewm42013-10-311-0/+1
|
* tech-overview.txt: reflect recent updateswm42013-10-301-21/+32
| | | | mplayer.c split, and some other things.
* af_volume: switch to new option parsingwm42013-10-261-7/+7
|
* af_volume: remove unused featureswm42013-10-261-4/+0
| | | | | | Roughly follows MPlayer svn commits 36492 and 36493. We also remove the volume peak reporting. (There are much better libavfilter filters for this, I think.)
* docs: osc: update cache display percentage.ChrisK22013-10-261-1/+1
|
* manpage: clarify --heartbeat-interval operationwm42013-10-251-0/+5
|
* manpage: use the new name for af_force in one placewm42013-10-231-2/+2
|
* vo_opengl: don't enable PBOs with opengl-hqwm42013-10-231-3/+5
| | | | | The speed advantages are marginal (at least with the way it's currently used), and it might actually be slower on some drivers, like Mesa.
* gl_video: add RGB10_A2 FBO formatwm42013-10-231-2/+2
| | | | Maybe this can be the default in the future, but I'm not sure yet.
* audio/filter: split af_format into separate filters, rename af_forcewm42013-10-231-18/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | af_format is the old audio conversion filter. It could do all possible conversions supported by the audio chain. However, ever since the addition of af_lavrresample, most conversions are done by libav/swresample, and af_format is used as fallback. Separate out the fallback cases and remove af_format. af_convert24 does 24 bit <-> 32 bit conversions, while af_convertsignendian does sign and endian conversions. Maybe the way the conversions are split sounds a bit odd. But the former changes the size of the audio data, while the latter is fully in-place, so there's at least different buffer management. This requires a quite complicated algorithm to make sure all these "partial" conversion filters can actually get from one format to another. E.g. s24le->s32be always requires convertsignendian and convert24, but af.c has no idea what the intermediate format should be. So I added a graph search (trying every possible format and filter) to determine required format and filter. When I wrote this, it seemed this was still better than messing everything into af_lavrresample, but maybe this is overkill and I'll change my opinion. For now, it seems nice to get rid of af_format though. The AC3->IEC61937 conversion isn't supported anymore, but I don't think this is needed anywhere. Most AOs test all formats explicitly, or use the AF_FORMAT_IS_IEC61937() macro (which includes AC3). One positive consequence of this change is that conversions always include dithering (done by libav/swresample), instead of possibly going through af_format, which doesn't do anything fancy. Rename af_force to af_format. It's essentially compatible with command line uses of af_format. We retain a compatibility alias for af_force.
* osc: make transparency of background-box configurableChrisK22013-10-181-1/+5
| | | | see boxalpha option
* spelling fixesAlessandro Ghedini2013-10-162-2/+2
|
* docs: osc: add short info about lua and how to disable itChrisK22013-10-151-0/+3
|
* changes.rst: add some replaced options, follow conventions betterwm42013-10-151-4/+6
|
* docs: osc: fix table and other errorsChrisK22013-10-151-11/+18
|
* docs: Add osc.rst to mpv.rstChrisK22013-10-152-3/+5
| | | | Also moved OPTIONS headline into options.rst
* osc docs: Add documentation for OSC and rename some optionsChrisK22013-10-151-0/+188
| | | | camelCase from some of the option names removed. If you were using those, you'll have to update them in your config.
* tech-overview.txt: reflect talloc/TA changeswm42013-10-151-0/+6
|
* Copyright, LICENSE: switch to GPL version 2 or laterwm42013-10-132-1/+2
| | | | | | | | | | | | | | | Now that talloc has been removed, the license can be switched back to GPLv2+. Actually, there never was a GPLv2+ licensed MPlayer (fork or not) until now, but removal of some GPLv2-only code makes this possible now. Rewrite the Copyright file to explain the reasons for the licenses MPlayer and forks use. The old Copyright file didn't contain anything interesting anymore, and all information it contained is available at other places in the source tree. The reason for the license change itself is that it should improve interoperability with differently licensed code in general. This essentially reverts commit 1752808.
* options: --loop=N means playback N times, not N+1 timesPhilip Sequeira2013-10-121-4/+5
| | | | | | | | | | The argument or this change is that --loop should set how often the file is played, not the number of additional repeats. Based on pull request 277, with additions to the manpage and removal of "--loop=0". Signed-off-by: wm4 <wm4@nowhere>
* ao_sndio: add documentationChristian Neukirchen2013-10-051-0/+9
|
* command: add commands for displaying overlayswm42013-10-051-0/+71
| | | | | | Requested by github issue #255. Does not work where mmap is not available (i.e. Windows).
* command: add properties for retrieving OSD dimensionswm42013-10-051-0/+3
|
* command: add sub_seek input commandwm42013-10-021-0/+9
| | | | | | | Essentially reuses the sub_step command, and is subject to the same restrictions. Seems to behave a bit strange sometimes, but generally works.
* core: add --force-windowwm42013-10-021-0/+14
| | | | | | | | | | | | | | | | | This commit adds the --force-window option, which will cause mpv always to create a window when started. This can be useful when pretending that mpv is a GUI application (which it isn't, but users pretend anyway), and playing audio files would run mpv in the background without giving a window to control it. This doesn't actually create the window immediately: it only does so only after initializing playback and when it is clear that there won't be any actual video. This could be a problem when starting slow or completely stuck network streams (mpv would remain frozen in the background), or if video initialization somehow is stuck forever in an in-between state (like when the decoder doesn't output a video frame, but doesn't return an error either). Well, we can pretend only so much that mpv is a GUI application.
* network: add options to control TLS verificationwm42013-09-271-0/+8
|
* Add the on-screen-controllerChrisK22013-09-261-0/+3
| | | | Signed-off-by: wm4 <wm4@nowhere>
* Add initial Lua scripting supportwm42013-09-263-0/+24
| | | | | | | | | | | | | | | | | | | | | | This is preliminary. There are still tons of issues, and any aspect of scripting may change in the future. I decided to merge this (preliminary) work now because it makes it easier to develop it, not because it's done. lua.rst is clear enough about it (plus some sarcasm). This requires linking to Lua. Lua has no official pkg-config file, but there are distribution specific .pc files, all with different names. Adding a non-pkg-config based configure test was considered, but we'd rather not. One major complication is that libquvi links against Lua too, and if the Lua version is different from mpv's, you will get a crash as soon as libquvi uses Lua. (libquvi by design always runs when a file is opened.) I would consider this the problem of distros and whoever builds mpv, but to make things easier for users, we add a terrible runtime test to the configure script, which probes whether libquvi will crash. This is disabled when cross-compiling, but in that case we hope the user knows what he is doing.
* options: allow selecting the libass shaperwm42013-09-251-0/+9
| | | | | | I'm using the word "languages" instead of "scripts" in the manpage, but I think that's easier to understand with a smaller amount of descriptions.
* options: make --ass-hinting a choice, instead of using magic numberswm42013-09-251-6/+11
| | | | | options.c still doesn't use the constants defined by the libass headers, but it's still better than exposing those to the user directly.
* vaapi: allow GPU read-back with --hwdec=vaapi-copywm42013-09-251-0/+4
| | | | | | | | | | | | | | This code is actually quite inefficient: it reuses the (slow, simple) screenshot code. It uses an inefficient method to read the image (vaGetImage() instead of vaDeriveImage()), allocates new memory for each frame that is read, and it tries all image formats again each time. Also, in my tests it always picked NV12 as image format, which is not ideal if you actually want to filter the video, and vo_xv can't handle this format without conversion either. However, a user confirmed that it worked for him, so everything is fine.
* vaapi: add vf_vavpp and use it for deinterlacingxylosper2013-09-252-2/+26
| | | | | | | | Merged from pull request #246 by xylosper. Minor cosmetic changes, some adjustments (compatibility with older libva versions), and manpage additions by wm4. Signed-off-by: wm4 <wm4@nowhere>
* network: fix rtsp playbackwm42013-09-221-0/+5
| | | | | | | | | | | | | | By default, libavformat uses UDP for rtsp playback. This doesn't work very well. Apparently the reason is that the buffer sizes libavformat chooses for UDP are way too small, and switching to TCP gets rid of this issue entirely (thanks go to Reimar Döffinger for figuring this out). In theory, you can set buffer sizes as libavformat options, but that doesn't seem to help. Add an option to select the rtsp transport, and make TCP the default. Also remove an outdated comment from stream.c.
* m_property: add a way to switch on property values in property expansionwm42013-09-201-3/+15
| | | | | | | | | | Allows for example: --status-msg='${?pause==yes:(Paused) } ...' to emulate the normal terminal status line. It's useful in other situations too. I'm a bit worried about extending this mini-DSL, and sure hope nobody will implement a generic formula evaluator at some point in the future. But for now we're probably safe.
* Merge branch 'volume_restore'wm42013-09-203-1/+14
|\
| * manpage: af_volnorm was renamedwm42013-09-202-1/+2
| |
| * mixer: restore volume with playback resumewm42013-09-201-0/+12
| | | | | | | | | | | | | | | | | | Note that this is intentionally never done if the AO or softvolume is different, or if the current volume control method is thought to control system wide volume (such as ALSA) or otherwise user controllable (such as PulseAudio). The intention is to keep things robust and to avoid messing with the user's audio settings as far as possible, while still providing the ability to resume volume if it makes sense.
* | Revert "osxbundle: fonts.conf: only look for fonts in ~/.mpv/fonts"Stefano Pigozzi2013-09-191-7/+0
| | | | | | | | | | | | | | Commit broke text subtitles without embedded fonts. Will look for a better solution later. Revert it for now, since I'm starting to get bug reports. This reverts commit 4a9f618d9f3b2d964bcc819426cc3042b8e447f7.
* | vo_opengl: blend alpha components by defaultwm42013-09-191-7/+14
|/ | | | | | Improves display of images and video with alpha channel, especially if the transparent regions contain (supposed to be invisible) garbage color values.
* osxbundle: fonts.conf: only look for fonts in ~/.mpv/fontsStefano Pigozzi2013-09-181-0/+7
| | | | | | | | This is to avoid the 30s hang while mpv caches fonts. In practice all the fonts an average user is going to use are embedded in mkv files so there is no reason to build fontconfig's cache on all of OS X system directories. I might add something similar for terminal usage, but I am highly undecided.
* manpage: remove bogus space in example usagewm42013-09-151-1/+1
|
* manpage: remove version and date fieldswm42013-09-151-2/+0
| | | | | | | | These would have to be updated manually all the time. Replacing them automatically would be possible, but additional work, and would force regeneration of the manpage way too often. We decided that we don't need these fields.
* screenshot: change %w format to be more like %twm42013-09-151-14/+13
| | | | | | Instead of containing a format string within %w{...}, simply allow %w to specify one item of a time format string. This is simpler, more like other format specifiers (%t), and probably easier to use too.
* screenshot: make it possible to format playback time in various wayswm42013-09-151-0/+23
|
* mplayer: don't run heartbeat command while pausedwm42013-09-151-2/+4
| | | | | | | | This is commonly used to disable the screensaver with broken/non- standard X screensavers. During pause, the screensaver should not be disabled, so not calling this command while paused seems sensible. See github issue #236.
* core: add --deinterlace option, restore it with resume functionalitywm42013-09-132-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The --deinterlace option does on playback start what the "deinterlace" property normally does at runtime. You could do this before by using the --vf option or by messing with the vo_vdpau default options, but this new option is supposed to be a "foolproof" way. The main motivation for adding this is so that the deinterlace property can be restored when using the video resume functionality (quit_watch_later command). Implementation-wise, this is a bit messy. The video chain is rebuilt in mpcodecs_reconfig_vo(), where we don't have access to MPContext, so the usual mechanism for enabling deinterlacing can't be used. Further, mpcodecs_reconfig_vo() is called by the video decoder, which doesn't have access to MPContext either. Moving this call to mplayer.c isn't currently possible either (see below). So we just do this before frames are filtered, which potentially means setting the deinterlacing every frame. Fortunately, setting deinterlacing is stable and idempotent, so this is hopefully not a problem. We also add a counter that is incremented on each reconfig to reduce the amount of additional work per frame to nearly zero. The reason we can't move mpcodecs_reconfig_vo() to mplayer.c is because of hardware decoding: we need to check whether the video chain works before we decide that we can use hardware decoding. Changing it so that this can be decided in advance without building a filter chain sounds like a good idea and should be done, but we aren't there yet.
* quvi: restore playback position when switching formatswm42013-09-101-3/+4
| | | | This simply issues a seek after reloading.
* manpage: various improvementswm42013-09-106-106/+87
| | | | Took a superficial look at the manpage, and fixed whatever I spotted.
* Add PDF manual targetMartin Herkt2013-09-092-6/+25
| | | | | | This builds a PDF version of the manpage using rst2latex and pdflatex, and installs it to PREFIX/share/doc/mpv by default.
* DOCS/crosscompile-mingw.txt: UpdateMartin Herkt2013-09-081-17/+9
|
* Manpage: Fix formatting (mostly for PDF output)Martin Herkt2013-09-084-13/+19
|
* demux: retrieve per-chapter metadatawm42013-09-081-0/+1
| | | | | | | | | | Retrieve per-chapter metadata, but don't do much with it. We just make the metadata of the _current_ chapter available as chapter-metadata property. Returning the full chapter list with metadata would be no problem, except that the property interface isn't really good with structured data, so it's not available for now. Not sure if it's worth it, but it was requested via github issue #201.
* mplayer: add --cursor-autohide-fs-only optionwm42013-09-081-0/+5
| | | | | | | | This option makes the cursor always visible in windowed mode. Apparently, this is what (some?) Windows and OSX users expect. It's disabled by default for now. Restructure the cursor hide logic a bit for this purpose.
* options: remove --(no-)mouseinput optionwm42013-09-081-4/+1
| | | | I have no idea why it exists, as it's redundant to --(no-)mouse-movements.
* options: fix --volume option range, add some explanations to manpagewm42013-09-071-0/+6
| | | | | | | | The --volume option accepted values up to 10000, but internally, the value is always clipped to 0-100 range. What makes this even worse is that --softvol-max suggests that it extends the range of --volume, which is not the case. (And passing a volume larger than 100 to --volume didn't even print a warning.)
* mplayer: make --save-position-on-quit save only on quitwm42013-09-041-2/+4
| | | | | | | | | | | | When enabling --save-position-on-quit, playback position stored not only on quit, but in any case playback of a file was stopped. This includes going to the next file with playlist navigation commands. After some discussion on IRC, it turned out that nobody thought this was good behavior. Disable it, and really make it save only on quit. Maybe the option is useless now, as the user could remap the CLOSE_WIN key binding. On the other hand, CLOSE_WIN sounds and _is_ a bit obscure.
* video: add unscaled mode with --video-unscaledwm42013-09-011-0/+12
|
* core: add a playlist demuxerwm42013-08-261-0/+16
| | | | | | | | | Modeled after the old playlist_parser.c, but actually new code, and it works a bit differently. Demuxers (and sometimes streams) are the component that should be used to open files and to determine the file format. This was already done for subtitles, but playlists still use a separate code path.
* wayland: shm based software renderingAlexander Preisinger2013-08-251-0/+10
| | | | | | | | | | | | | | | | | | | | A wayland output based on shared memory. This video output is useful for x11 free systems, because the current libGL in mesa provides GLX symbols. It is also useful for embedded systems where the wayland backend for EGL is not implemented like the raspberry pi. At the moment only rgb formats are supported, because there is still no compositor which supports planar formats like yuv420p. The most used compositor at the moment, weston, supports only BGR0, BGRA and BGR16 (565). The BGR16 format is the fastest to convert and render without any noticeable differences to the BGR32 formats. For this reason the current (very basic) auto-detection code will prefer the BGR16 format. Also the weston source code indicates that the preferred format is BGR16 (RGB565). There are 2 options: * default-format (yes|no) Which uses the BGR32 format * alpha (yes|no) For outputting images and videos with transparencies
* video: add vda decode support (with hwaccel) and direct renderingStefano Pigozzi2013-08-222-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Decoding H264 using Video Decode Acceleration used the custom 'vda_h264_dec' decoder in FFmpeg. The Good: This new implementation has some advantages over the previous one: - It works with Libav: vda_h264_dec never got into Libav since they prefer client applications to use the hwaccel API. - It is way more efficient: in my tests this implementation yields a reduction of CPU usage of roughly ~50% compared to using `vda_h264_dec` and ~65-75% compared to h264 software decoding. This is mainly because `vo_corevideo` was adapted to perform direct rendering of the `CVPixelBufferRefs` created by the Video Decode Acceleration API Framework. The Bad: - `vo_corevideo` is required to use VDA decoding acceleration. - only works with versions of ffmpeg/libav new enough (needs reference refcounting). That is FFmpeg 2.0+ and Libav's git master currently. The Ugly: VDA was hardcoded to use UYVY (2vuy) for the uploaded video texture. One one end this makes the code simple since Apple's OpenGL implementation actually supports this out of the box. It would be nice to support other output image formats and choose the best format depending on the input, or at least making it configurable. My tests indicate that CPU usage actually increases with a 420p IMGFMT output which is not what I would have expected. NOTE: There is a small memory leak with old versions of FFmpeg and with Libav since the CVPixelBufferRef is not automatically released when the AVFrame is deallocated. This can cause leaks inside libavcodec for decoded frames that are discarded before mpv wraps them inside a refcounted mp_image (this only happens on seeks). For frames that enter mpv's refcounting facilities, this is not a problem since we rewrap the CVPixelBufferRef in our mp_image that properly forwards CVPixelBufferRetain/CvPixelBufferRelease calls to the underying CVPixelBufferRef. So, for FFmpeg use something more recent than `b3d63995` for Libav the patch was posted to the dev ML in July and in review since, apparently, the proposed fix is rather hacky.
* options: replace --edition=-1 with --edition=autowm42013-08-211-2/+2
| | | | | | Originally, the objective of this commit was changing --edition to be 1-based, but this was cancelled. I'm still leaving the change to demux_mkv.c though, which is now only of cosmetic nature.
* mplayer: start track IDs from 1 rather than 0wm42013-08-211-1/+1
| | | | | | Completely pointless, but makes ChrisK happy for some reason. Track ID 0 is now rejected by the option parser itself.
* manpage: fix (again) incorrect ao_alsa exampleCheng Sun2013-08-201-1/+1
| | | One example in ao.rst used the old syntax with misspelling of "no-block".
* video: make it possible to scale/pan the video by arbitrary amountswm42013-08-192-0/+38
| | | | | | | | | | | Add --video-align-x/y, --video-pan-x/y, --video-scale options and properties. See the additions to the manpage for description and semantics. These transformations are intentionally done on top of panscan. Unlike the (now removed) --panscanrange option, this doesn't affect the default panscan behavior. (Although panscan itself becomes kind of useless if the new options are used.)
* options: remove --panscanrange optionwm42013-08-191-8/+0
| | | | | | This option allowed you to extend the range of the panscan controls, so that you could essentially use it to scale the video. This will be replaced by a separate option to set the zoom factor directly.
* changes: add some things for completenesswm42013-08-191-3/+31
|
* vo_vdpau: add RGB supportwm42013-08-181-0/+4
| | | | | | | | | | | | | | | | | | | | | Apparently this was dropped some years ago, but judging from MPlayer's handling of this, the original code wasn't so great anyway. The new code handling clearing of panscan borders correctly, and integrates better with the YUV path. (Although the VDPAU API sure makes this annoying with its separate surface types for RGB.) Note that we create 5 surfaces for some reason - I don't think this makes too much sense (because we can't use the deinterlacer with RGB surfaces), but at least it reduces the amount of differences with the YUV code path. Clearing the borders is done by drawing a single black pixel over the window. This sounds pretty dumb, but it appears to work well, and there is no other API for that. (One could try to use the video mixer for this purpose, since it has all kinds of features, including compositing multiple RGBA surfaces and clearing the window background. But it would require an invisible dummy video surface to make the video mixer happy, and that's getting too messy.)
* command: more intuitive chapter seek behaviorPhilip Sequeira2013-08-172-1/+10
| | | | | | | | | If close to chapter start, skipping back goes to previous chapter (no change). If more than <threshold> seconds in, skipping back will now go to the beginning of the current chapter instead. The threshold is set by the new option --chapter-seek-threshold and defaults to 5 seconds. A negative value disables the new functionality.
* vo_vdpau: use color close to black as default colorkey (instead of green)wm42013-08-171-3/+3
| | | | | | | | | | | | | | | | | | The VDPAU default colorkey, although it seems to be driver specific, is usually green. This is a pretty annoying color, and you usually see it briefly (as flashes) if the VDPAU window resizes. Change it to some shade of black. The new default color is close to what MPlayer picks as colorkey (and apparently it worked well for them): VdpColor vdp_bg = {0.01, 0.02, 0.03, 0}; Since our OPT_COLOR can set 8 bit colors only, we use '#020507' instead, which should be the same assuming 8 bit colors. Obviously, you can't use black, because black is a way too common color, and would make it too easy to observe the colorkey effect when e.g. moving a terminal with black background over the video window.
* vo_vdpau: allow setting colorkeywm42013-08-171-0/+6
| | | | | | | Formally, this sets the "background color" of the presentation queue. But in practice, this color is also used as colorkey. This commit doesn't change the VDPAU default yet.
* manpage: fix incorrect ao_alsa example, extend changes.rstwm42013-08-152-2/+7
| | | | | | | One example in ao.rst used the old syntax with mangled device names. Fix it. Mention some shell related caveats. Explicitly mention the change of device name syntax in changes.rst, because it seems to be a common issue.
* sub: make --subcp=enca the default.wm42013-08-151-5/+14
|
* sub: allow specifying a fallback codepage if input is not UTF-8wm42013-08-151-2/+8
| | | | | | | | | | | | | | | Normally, --subcp always forces conversion. This really always forces conversion, even if the UTF-8 check on the input succeeds. Extend the --subcp to allow codepages as fallback if UTF-8 doesn't work. So, for example --subcp=utf8:cp1250 will use UTF-8 if the input looks like UTF-8, and will fall back to use cp1250 if the UTF-8 check fails. I think this should actually be the default, but on the other hand, this changes the semantics of the option, and a user would actually expect --subcp to force conversion, rather than silently using UTF-8 if that happens to work.
* changes.rst: document some OSX and windows changesStefano Pigozzi2013-08-131-0/+5
|
* manpage: actually document --hwdec=autowm42013-08-121-0/+7
|
* video: add vaapi decode and output supportwm42013-08-122-1/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is based on the MPlayer VA API patches. To be exact it's based on a very stripped down version of commit f1ad459a263f8537f6c from git://gitorious.org/vaapi/mplayer.git. This doesn't contain useless things like benchmarking hacks and the demo code for GLX interop. Also, unlike in the original patch, decoding and video output are split into separate source files (the separation between decoding and display also makes pixel format hacks unnecessary). On the other hand, some features not present in the original patch were added, like screenshot support. VA API is rather bad for actual video output. Dealing with older libva versions or the completely broken vdpau backend doesn't help. OSD is low quality and should be rather slow. In some cases, only either OSD or subtitles can be shown at the same time (because OSD is drawn first, OSD is prefered). Also, libva can't decide whether it accepts straight or premultiplied alpha for OSD sub-pictures: the vdpau backend seems to assume premultiplied, while a native vaapi driver uses straight. So I picked straight alpha. It doesn't matter much, because the blending code for straight alpha I added to img_convert.c is probably buggy, and ASS subtitles might be blended incorrectly. Really good video output with VA API would probably use OpenGL and the GL interop features, but at this point you might just use vo_opengl. (Patches for making HW decoding with vo_opengl have a chance of being accepted.) Despite these issues, decoding seems to work ok. I still got tearing on the Intel system I tested (Intel(R) Core(TM) i3-2350M). It was also tested with the vdpau vaapi wrapper on a nvidia system; however this was rather broken. (Fortunately, there is no reason to use mpv's VAAPI support over native VDPAU.)
* changes.rst: add precise scrolling supportAlexander Preisinger2013-08-071-0/+2
|
* core: move contents to mpvcore (2/2)Stefano Pigozzi2013-08-061-6/+6
| | | | Followup commit. Fixes all the files references.
* changes.rst: mention wayland supportAlexander Preisinger2013-08-051-0/+1
| | | | In case website copy&paste outdated information again.
* demux_lavf: make avio buffer configurablewm42013-08-041-0/+6
| | | | | | Perhaps not very useful, but reserved for situations when a user reports awful latency and experimentation/debugging might be required to find out why or to fix it (happens often).
* command: make vf and af commands more verbosewm42013-08-031-0/+5
| | | | | | On success, print the filter chain on the OSD. Otherwise, show an error message on the OSD (just enough so that the user knows whether the command worked).
* command: add vf/af propertieswm42013-08-031-0/+2
|
* stream: redo URL parsing, replace m_struct usage with m_configwm42013-08-021-1/+1
| | | | | | | | | | | | | Move the URL parsing code from m_option.c to stream.c, and simplify it dramatically. This code originates from times when http code used this, but now it's just relict from other stream implementations reusing this code. Remove the unused bits and simplify the rest. stream_vcd is insane, and the priv struct is different on every platform, so drop the URL parsing. This means you can't specify a track anymore, only the device. (Does anyone use stream_vcd? Not like this couldn't be fixed, but it doesn't seem worth the effort, especially because it'd require potentially touching platform specific code.)
* manpage: clean up environment variables sectionwm42013-08-021-54/+32
|
* manpage: document exit codeswm42013-08-021-0/+18
|
* manpage: move screenshot section above option listwm42013-08-021-17/+17
| | | | | Seems more logical, because general usage instructions are before the option list as well.
* crosscompile-mingw.txt: it's "MinGW" not "MingGW"wm42013-07-301-3/+3
|
* crosscompile-mingw.txt: mingw-w64 now has modern OpenGL headers in trunkwm42013-07-301-1/+1
|
* options: simplify --correct-pts handlingwm42013-07-261-7/+6
| | | | | | Remove the (now unused) code for determining correct-pts mode based on the demuxer in use. Change its description in the manpage to reflect what this option does now.
* command: add pseudo-property that allows you to read global optionswm42013-07-261-0/+1
| | | | | | | | | | | | The "options" pseudo-property allows reading global like this: show_text ${options/name} Where "name" maps to the option "--name". This allows retrieving option values that are not properties. Write-access is not possible: this is reserved for normal properties. Note: it is possible that we'll change this again, and don't require the "options/" prefix to access options.
* af_lavfi: switch to new option APIwm42013-07-221-2/+6
| | | | | This makes it actually possible to use the filter with more complicated filter graphs (such as graphs containing the "," character).
* af_lavrresample: switch to new option APIwm42013-07-221-4/+5
| | | | | Also add a "o" suboption, which should allow fine control over libavresample.
* audio/filter: use new option APIwm42013-07-222-14/+10
| | | | | | | | | | | | | Make the VF/VO/AO option parser available to audio filters. No audio filter uses this yet, but it's still a quite intrusive change. In particular, the commands for manipulating filters at runtime completely change. We delete the old code, and use the same infrastructure as for video filters. (This forces complete reinitialization of the filter chain, which hopefully isn't a problem for any use cases. The old code forced reinitialization too, but it could potentially allow a filter to cache things; e.g. consider loaded ladspa plugins and such.)
* DOCS/man/en/ao.rst: Update wasapi:device=<id> documentationDiogo Franco (Kovensky)2013-07-221-1/+6
|
* ao_wasapi0: Rename to ao_wasapiDiogo Franco (Kovensky)2013-07-221-1/+1
| | | | | Nobody knows what the 0 was for. There's no "WASAPI version 0". Just take it out.
* DOCS/man/en/ao.rst: Document ao_wasapi0Diogo Franco (Kovensky)2013-07-221-0/+15
|
* vo_opengl: some option changeswm42013-07-221-29/+12
| | | | | | Doing "mpv --vo=opengl:lscale=help" now lists possible scalers and exits. The "backend" suboption behaves similar. Make the "stereo" suboption a choice, instead of using magic integer values.
* options: move --colorkey option to vo_xvwm42013-07-222-9/+7
|
* ao_jack: use new option APIwm42013-07-221-1/+1
|
* options: remove --mixer and --mixer-channel, turn them into alsa/oss suboptswm42013-07-213-19/+14
| | | | | | These two options were supported by ALSA and OSS only. Further, their values were specific to the respective audio systems, so it doesn't make sense to keep them as top-level options.
* ao_alsa: use new option API (changes syntax)wm42013-07-211-3/+10
| | | | | | | | | | | | This changes how device names are handled. Before this commit, device names were mangled in strange ways to avoid clashing with the option parser syntax. "." was replaced with ",", and "=" with ":" (the user had to do the inverse to get the correct device name). The "new" option parser has multiple ways to escape option strings, so we don't need this confusing hack anymore. Add an explicit note to the manpage as well.
* manpage: fix typowm42013-07-211-1/+1
|
* input.rst: update examplewm42013-07-211-1/+1
| | | | Option was renamed.
* vf_scale: use new swscale wrapperwm42013-07-181-6/+0
|
* sd_ass: scale blur by original video size if requestedwm42013-07-151-1/+10
|
* sd_add: add terrible hack for (xy-)vsfilter compatibilitywm42013-07-151-0/+25
| | | | | | Much has been said about this topic, we don't need to say even more. See additions to options.rst.
* demux_lavf: add terrible hack to make DVD playback just workwm42013-07-141-0/+10
| | | | | | | | | | | | | | | | | | DVD playback had some trouble with PTS resets: libavformat's genpts feature would try reading until EOF (worst case) to find a new usable PTS in case a packet's PTS is not set correctly. Especially with slow DVD access, this would make the player to appear frozen. Reimplement it partially in demux_lavf.c, and use that code in the DVD case. This is heavily "inspired" by the code in av_read_frame from libavformat/utils.c. The difference is that we stop reading if no PTS has been found after 50 packets (consider this a heuristic). Also, we don't bother with the PTS wrapping and last-frame-before-EOF handling. Even with normal PTS wraps, the player frontend will go to hell for the duration of a frame anyway, and should recover quickly after that. The terribleness of this commit is mostly that we duplicate libavformat functionality, and that we suddenly need a packet queue.
* Merge branch 'remove_old_demuxers'wm42013-07-143-49/+38
|\ | | | | | | | | | | | | | | The merged branch doesn't actually just remove old demuxers, but also includes a branch of cleanups and some refactoring. Conflicts: stream/stream.c
| * tech-overview.txt: minor changes and additionswm42013-07-141-27/+38
| |
| * demux: rewrite probing and demuxer initializationwm42013-07-121-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Get rid of the strange and messy reliance on DEMUXER_TYPE_ constants. Instead of having two open functions for the demuxer callbacks (which somehow are both optional, but you can also decide to implement both...), just have one function. This function takes a parameter that tells the demuxer how strictly it should check for the file headers. This is a nice simplification and allows more flexibility. Remove the file extension code. This literally did nothing (anymore). Change demux_lavf so that we check our other builtin demuxers first before libavformat tries to guess by file extension.
| * options: remove --ignore-startwm42013-07-081-5/+0
| | | | | | | | This was used only with demux_avi.
| * Merge branch 'master' into remove_old_demuxerswm42013-07-089-2121/+2265
| |\ | | | | | | | | | | | | | | | Conflicts: DOCS/man/en/changes.rst DOCS/man/en/options.rst
| * | Remove old demuxerswm42013-07-072-11/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Delete demux_avi, demux_asf, demux_mpg, demux_ts. libavformat does better than them (except in rare corner cases), and the demuxers have a bad influence on the rest of the code. Often they don't output proper packets, and require additional audio and video parsing. Most work only in --no-correct-pts mode. Remove them to facilitate further cleanups.
* | | options: add --cache-default optionwm42013-07-101-1/+6
| |/ |/| | | | | | | | | | | | | | | | | | | | | Add this option, which lets users set the cache size without forcing it even when playing from the local filesystem. Also document the default value explicitly. The Matroska linked segments case is slightly simplified: they can never come from network (mostly because it'd be insane, and we can't even list files from network sources), so the cache will never be enabled automatically.
* | command: add screenshot_to_file commandwm42013-07-081-0/+13
| |
* | input: allow binding multiple commands to a keywm42013-07-081-1/+10
| | | | | | | | Separate the commands with ';'.
* | manpage: proofread and fix formattingMartin Herkt2013-07-089-2124/+2246
|/
* Remove some leftovers from network removalwm42013-07-072-3/+3
| | | | | | | | stream_vstream.c in particular was actually dependent on the network code, and didn't compile anymore. Cleanup the protocol list in mpv.rst, and add some missing ones supported by libavformat to stream_lavf.c.
* manpage: fix section headingsMartin Herkt2013-07-073-26/+27
|
* Remove internal network supportwm42013-07-071-28/+0
| | | | | | | | | | | This commit removes the "old" networking code in favor of libavformat's code. The code was still used for mp_http, udp, ftp, cddb. http has been mapped to libavformat's http support since approximately 6 months ago. udp and ftp have support in ffmpeg (though ftp was added only last month). cddb support is removed with this commit - it's probably not important and rarely used if at all, so we don't care about it.
* ao_jack: allow more control about channel layoutswm42013-07-071-0/+15
|
* command: add some playlist manipulation commandswm42013-07-021-0/+11
| | | | playlist_remove and playlist_move.
* command: add commands to enable/disable input sectionswm42013-06-291-0/+15
| | | | | For now, it's mostly for testing. It also might allow to create key binding state machines, but this sounds questionable.
* manpage: document input sectionswm42013-06-291-1/+21
|
* command: make raw percent-pos property return fractionswm42013-06-291-0/+1
| | | | | | | | | percent-pos was an integer (0-100). Sometimes higher precision is wanted, but the property is this way because fractional parts would look silly with normal OSD usage. As a compromise, make percent-pos double (i.e. includes fractional parts), but print it as integer. So ${percent-pos} is like an integer, but not ${=percent-pos}.
* command: add properties for playlist positionwm42013-06-291-1/+3
| | | | | playlist-pos can set/get the current playlist index. playlist-count returns the number of entries in the playlist.
* vo_opengl: handle chroma locationwm42013-06-281-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the video decoder chroma location flags and render chroma locations other than centered. Until now, we've always used the intuitive and obvious centered chroma location, but H.264 uses something else. FFmpeg provides a small overview in libavcodec/avcodec.h: ----------- /** * X X 3 4 X X are luma samples, * 1 2 1-6 are possible chroma positions * X X 5 6 X 0 is undefined/unknown position */ enum AVChromaLocation{ AVCHROMA_LOC_UNSPECIFIED = 0, AVCHROMA_LOC_LEFT = 1, ///< mpeg2/4, h264 default AVCHROMA_LOC_CENTER = 2, ///< mpeg1, jpeg, h263 AVCHROMA_LOC_TOPLEFT = 3, ///< DV AVCHROMA_LOC_TOP = 4, AVCHROMA_LOC_BOTTOMLEFT = 5, AVCHROMA_LOC_BOTTOM = 6, AVCHROMA_LOC_NB , ///< Not part of ABI }; ----------- The visual difference is literally minimal, but since videophiles apparently consider this detail as quality mark of a video renderer, support it anyway. We don't bother with chroma locations other than centered and left, though. Not sure about correctness, but it's probably ok.
* core: add libquvi 0.9 supportwm42013-06-282-1/+15
| | | | | | | | | | | | | This adds support for libquvi 0.9.x, and these features: - start time (part of youtube URL) - youtube subtitles - alternative source switching ('l' and 'L' keys) - youtube playlists Note that libquvi 0.9 is still in development. Although this seems to be API stable now, it looks like there will be a 1.0 release, which is supposed to be the next stable release and the actual successor of libquvi 0.4.x.
* options: rename --mkv-subtitle-preroll, --dtshdwm42013-06-281-30/+35
| | | | We still keep the old names as alias for short-time compatibility.
* options: rename --rawvideo to --demuxer-rawvideo, same with --rawaudiowm42013-06-282-34/+39
|
* options: rename -lavdopts to -vd-lavc, -lavfdopts to -demuxer-lavfwm42013-06-282-101/+94
| | | | | Also change manpage so that top-level options are documented instead of suboptions. Suboptions still work, but might go away eventually.
* options: remove -lavdopts debug suboptionwm42013-06-281-26/+1
| | | | This can be set as avopt instead.
* DOCS: update tech-overview.txt to reflect some subtitle related changeswm42013-06-251-13/+19
|
* options: add -sub-speed optionwm42013-06-251-0/+12
| | | | | | | | Should we actually get into trouble for unproper handling of frame-based subtitle formats, this might be the simplest way to work this around. Also is a bit more intuitive than -subfps, which might use an unknown, misdetected, or non-sense video FPS. Still pretty silly, though.
* sub: libguess support for -subcpwm42013-06-251-0/+9
| | | | Actually this is rather disappointing.
* sub: add subtitle charset conversionwm42013-06-251-3/+5
| | | | | | | | | | | | | | | | | | | | | | This code was once part of subreader.c, then traveled to libass, and now made its way back to the fork of the fork of the original code, MPlayer. It works pretty much the same as subreader.c, except that we have to concatenate some packets to do auto-detection. This is rather annoying, but for all we know the actual source file could be a binary format. Unlike subreader.c, the iconv context is reopened on each packet. This is simpler, and with respect to multibyte encodings, more robust. Reopening is probably not a very fast, but I suspect subtitle charset conversion is not an operation that happens often or has to be fast. Also, this auto-detection is disabled for microdvd - this is the only format we know that has binary data in its packets, but is actually decoded to text. FFmpeg doesn't really allow us to solve this properly, because a) the input packets can be binary, and b) the output will be checked whether it's UTF-8, and if it's not, the output is thrown away and an error message is printed. We could just recode the decoded subtitles before sd_ass if it weren't for that.
* sub: add demux_libass wrapper, drop old hackswm42013-06-252-10/+2
| | | | | | | | | | | | demux_libass.c allows us to make subtitle format detection part of the normal file loading process. libass has no probe function, but trying to load the start of a file (the first 4 KB) is good enough. Hope that libass can even handle random binary input gracefully without printing stupid log messages, and that the libass parser doesn't accept too many non-ASS files as input. This doesn't handle the -subcp option correctly yet. This will be fixed later.
* sub: do some timing postprocessing on preloaded subswm42013-06-231-9/+6
| | | | | | | | | | | | | This fixes the -subfps option (which unfortunately is still useful), and fixes minor annoying timing errors (which unfortunately still happen). Note that none of these affect ASS or image subtitles. ASS is specially handled: libass loads subtitles as ASS_Track. There are no actual packets passed around, and sd_ass just uses the ASS_Track. Disable the --sub-no-text-pp option. It's misleading now and always was completely useless.
* configure: make check for stream cache verbosewm42013-06-161-2/+3
| | | | | Also add a minor comment about the stream cache needing pthreads now to DOCS/crosscompile-mingw.txt.
* Merge branch 'cache_new'wm42013-06-161-6/+15
|\
| * cache: use threads instead of fork()wm42013-06-161-6/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Basically rewrite all the code supporting the cache (i.e. anything other than the ringbuffer logic). The underlying design is untouched. Note that the old cache2.c (on which this code is based) already had a threading implementation. This was mostly unused on Linux, and had some problems, such as using shared volatile variables for communication and uninterruptible timeouts, instead of using locks for synchronization. This commit does use proper locking, while still retaining the way the old cache worked. It's basically a big refactor. Simplify the code too. Since we don't need to copy stream ctrl args anymore (we're always guaranteed a shared address space now), lots of annoying code just goes away. Likewise, we don't need to care about sector sizes. The cache uses the high-level stream API to read from other streams, and sector sizes are handled transparently.
* | audio/out: remove ao->outburst/buffersize fieldswm42013-06-161-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The core didn't use these fields, and use of them was inconsistent accross AOs. Some didn't use them at all. Some only set them; the values were completely unused by the core. Some made full use of them. Remove these fields. In places where they are still needed, make them private AO state. Remove the --abs option. It set the buffer size for ao_oss and ao_dsound (being ignored by all other AOs), and was already marked as obsolete. If it turns out that it's still needed for ao_oss or ao_dsound, their default buffer sizes could be adjusted, and if even that doesn't help, AO suboptions could be added in these cases.
* | mplayer: update window title if its properties changeJohn Hawthorn2013-06-161-0/+3
| | | | | | | | | | | | This allows having properties like time-pos in the window title update properly. There is a danger of this causing significant CPU usage, depending on the properties used and the window manager.
* | image_writer: Add PNG filter option (default "mixed")Martin Herkt2013-06-152-0/+9
| | | | | | | | | | | | The use of filters prior to PNG compression can greatly improve compression ratio, with "mixed" (ImageMagick calls it "adaptive") typically achieving the best results.
* | x11: enable screensaver when paused, rename/change --stop-xscreensaverwm42013-06-142-6/+9
| | | | | | | | | | | | | | | | | | | | | | Use the recently introduced screensaver VOCTRLs to control the screensaver in the X11 backend. This means the behavior when paused changes: the old code always kept the screensaver disabled, but now the screensaver is reenabled on pausing. Rename the --stop-xscreensaver option to --stop-screensaver and make it more generic. Now it affects all backends that respond to the screensaver VOCTRLs.
* | options: remove --stereowm42013-06-131-7/+0
| | | | | | | | | | | | | | Whatever this was supposed to be originally, it doesn't have much value anymore. It just forced ad_mpg123 to upmix mono to stereo by default (the audio chain can do that). As an option, it was mostly useless and misleading, so get rid of it.
* | manpage: adjust y4m output examplewm42013-06-131-1/+1
| | | | | | | | | | | | The additional flags are needed to get the muxer to write the source video frame rate (instead of a fallback) for 100% equivalence to the replaced MPlayer/mplayer2 y4m writer.
* | Option -omaxfps: limit fps when encodingRudolf Polzer2013-06-091-0/+5
|/ | | | | Lower-fps content is left alone (NOT aligned to this fps); higher fps content is decimated to this frame rate.
* manpage: improve documentation of property expansionwm42013-06-082-45/+90
|
* command: replace some show_ commands with propertieswm42013-06-072-9/+9
| | | | | | | | | | | show_chapters, show_tracks, and show_playlist are killed and replaced with the properties chapter-list, track-list, and playlist. The code and the output of these stays the same, this is just moving a lot of code around and reducing the number of properties. The "old" commands will still be supported for a while (to avoid making everyone angry), so handle them with the legacy layer. Add something to suppress printing the legacy warnings for these commands.
* core: reset pause state by default when going to next filewm42013-06-071-0/+3
| | | | Apparently this behavior is more intuitive/better to users.
* docs: update tech-overview.txtwm42013-06-051-9/+19
|
* osx: improve Media Keys supportStefano Pigozzi2013-06-041-0/+3
| | | | | | | | | | | | | | | | | | | | | | | This commit addresses some issues with the users had with the previous implementation in commit c39efb9. Here's the changes: * Use Quartz Event Taps to remove Media Key events mpv handles from the global OS X queue. This prevents conflicts with iTunes. I did this on the main thread since it is mostly idling. It's the playloop thread that actually does all the work so there is no danger of blocking the event tap callback. * Introduce `--no-media-keys` switch so that users can disable all of mpv's media key handling at runtime (some prefer iTunes for example). * Use mpv's bindings so that users can customize what the media keys do via input.conf. Current bindings are: MK_PLAY cycle pause MK_PREV playlist_prev MK_NEXT playlist_next An additional benefit of this implementation is that it is completly handled by the `macosx_events` file instead of `macosx_application` making the project organization more straightforward.
* ao_jack: add (no-)connect suboptionreimar2013-06-041-0/+4
| | | | | | | | | | | | | Add (no)connect option to ao_jack. Patch by Markus Appel [masolomaster3000 googlemail com]. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@36297 b3059339-0415-0410-9bf9-f77b7e298cf2 Conflicts: DOCS/man/de/mplayer.1 DOCS/man/en/mplayer.1 audio/out/ao_jack.c
* Merge branch 'sub_mess'wm42013-06-041-7/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | This branch heavily refactors the subtitle code (both loading and rendering), and adds support for a few new formats through FFmpeg. We don't remove any of the old code yet. There are still some subtleties related to subreader.c to be resolved: code page detection & conversion, timing post-processing, UTF-16 subtitle support, support for the -subfps option. Also, SRT reading and loading ASS via libass should be turned into proper demuxers. (SRT is needed because Libav's is gravely broken, and we want ASS loading via libass to cover full libass format support. Both should be demuxers which are probed _before_ libavformat, so that all subtitles can be loaded through the demuxer infrastructure, and libavformat subtitles don't need to be treated in a special way.)
| * sub: use libass even if -no-ass is usedwm42013-06-031-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The -no-ass option used to disable all use of libass completely. This doesn't work this way anymore, and the text subtitle path has an inherent dependency on libass. Currently -no-ass does 3 things: 1. Strip tags and formatting on display, and use a separate renderer for the result. (Which might be the terminal, or libass via OSD code.) 2. Not loading attached fonts from Matroska files. 3. Use subreader.c instead of libass for reading .ass files. 1. and 2. are ok and what the user (probably wants), but 3. doesn't really make sense anymore. subreader.c reads .ass files just fine, but then does some strange things to them (something about coalescing and re-adding newlines?), leading to even more broken display with -no-ass. Instead of fighting with subreader.c, just use libass as loader.
| * options: add --no-sub-visibility for symmetrywm42013-05-301-1/+4
| | | | | | | | | | Not really useful, but for symmetry with the sub-visibility property (mapped to the 'v' key by default).
* | osx: add Apple Remote supportStefano Pigozzi2013-06-031-0/+3
|/ | | | | | | | | | | | | | | | | After killing the non functional AR support in c8fd9e5 I got much complaints so this adds AR support back in (and it works). I am using the HIDRemote class by Felix Schwarz and that part of the code is under the BSD license. I slightly modified it replacing [NSApplication sharedApplication] with NSApp. The code of the class is quite complex (probably because it had to deal with all the edge cases with IOKit) but it works nicely as a black box. In a later commit I'll remove the deprecation warnings caused by HIDRemote's usage of Gestalt. Check out `etc/input.conf` for the default bindings. Apple Remote functionality is automatically compiled in when cocoa is enabled. It can be disabled at runtime with the `--no-ar` option.
* options: remove some questionable -lavdopts suboptionswm42013-05-291-43/+4
| | | | | | Most of these are rather questionable, the rest you rarely need to set manually. You still can set all of them with -lavdopts-o (because libavcodec has AVOptions for them).
* manpage: fix typowm42013-05-271-1/+1
|
* options: add allow-mimetype suboption for demux_lavfwm42013-05-271-0/+6
| | | | | | | This can control whether demux_lavf should use the HTTP mime type to determine the format, instead of probing the data with the libavformat API. Do this to allow easier debugging in case the mimetype is incorrect. (This is done only for AAC streams right now.)
* manpage: fix typowm42013-05-261-2/+2
|
* manpage: mark some filters as deprecated in favor of libavfilterwm42013-05-261-0/+29
| | | | | | | | This is basically a "do not use" label. We don't remove them yet, because we still support FFmpeg releases where we can not use libavfilter for various reasons. Also, Libav causes pain as usual due to the lack of ported mplayer filters in its codebase, so not all filters will be available there.
* gl_video: improve ditheringwm42013-05-261-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | Use a different algorithm to generate the dithering matrix. This looks much better than the previous ordered dither matrix with its cross-hatch artifacts. The matrix generation algorithm as well as its implementation was contributed by Wessel Dankers aka Fruit. The code in dither.c is his implementation, reformatted and with static global variables removed by me. The new matrix is uploaded as float texture - before this commit, it was a normal integer fixed point matrix. This means dithering will be disabled on systems without float textures. The size of the dithering matrix can be configured, as the matrix is generated at runtime. The generation of the matrix can take rather long, and is already unacceptable with size 8. The default is at 6, which takes about 100 ms on a Core2 Duo system with dither.c compiled at -O2, which I consider just about acceptable. The old ordered dithering is still available and can be selected by putting the dither=ordered sub-option. The ordered dither matrix generation code was moved to dither.c. This function was originally written by Uoti Urpala.
* gl_video: add scaler-resizes-only sub-optionwm42013-05-261-0/+8
| | | | | This option disables the scaler set with lscale if the video image is not resized.
* vf_lavfi: allow setting avoptswm42013-05-261-1/+9
|
* af_lavfi: add libavfilter bridgewm42013-05-231-0/+10
| | | | | | | | | | | | | | | | | | | | | Mostly copied from vf_lavfi. The parts that could be shared are minor, because most code is about setting up audio and video, which are too different. This won't work with Libav. I used ffplay.c as guide, and noticed too late that their setup methods are incompatible with Libav's. Trying to make it work with both would be too much effort. The configure test for av_opt_set_int_list() should disable af_lavfi gracefully when compiling with Libav. Due to option parser chaos, you currently can't have a "," as part of the filter graph string - not even with quoting or escaping. This will probably be fixed later. The audio filter chain is not PTS aware. So we have to do some hacks to make up a fake PTS, and we have to map the output PTS back to the filter chain's method of tracking PTS changes and buffering, by adjusting af->delay.
* m_option, vf: add label supportwm42013-05-231-0/+5
| | | | | | | | | | | | | | | | | Can be used to refer to filters by name. Intended to be used when the filter chain is changed at runtime. A label can be assigned to a filter by prefixing it with '@name:', where 'name' is an user-chosen identifier. For example, a filter added with '-vf-add @label1:gradfun=123' can be removed with '-vf-del @label1'. If a filter with an already existing label is added, the existing filter is replaced with the new filter (this happens for both -vf-add and -vf-pre). If a filter is replaced, the new filter takes the position of the old filter, instead of being appended/prepended to the filter chain as usual. For -vf-toggle, labels are compared if at least one of the filters has a label; otherwise they are compared by filter name and arguments (like before). This means two filters are never considered equal if one has a label and the other one does not.
* input: do property expansion for all input command string argumentswm42013-05-181-2/+6
| | | | | | Also add a "raw" prefix for commands, which prevents property expansion. The idea is that if the commands are generated by a program, it doesn't have to know whether the command expands properties or not.
* core: allow changing filter filters at runtimewm42013-05-181-0/+31
| | | | | | | | | | | | | | | | Add the "vf" command, which allows changing the video filter chain at runtime. For example, the 'y' key could be bound to toggle deinterlacing by adding 'y vf toggle yadif' to the input.conf. Reconfiguring the video filter chain normally resets the VO, so that it will be "stuck" until a new video frame is rendered. To mitigate this, a seek to the current position is issued when the filter chain is changed. This is done only if playback is paused, because normal playback will show an actual new frame quickly enough. If vdpau hardware decoding is used, filter insertion (whether it fails or not) will break the video for a while. This is because vo_vdpau resets decoding related things on vo_config().
* manpage: document af_* commandswm42013-05-181-2/+16
| | | | Except af_cmdline, which is too questionable.
* options: add -V as alias for --versionwm42013-05-151-1/+1
| | | | This is a common convention.
* options: add --versionwm42013-05-151-0/+3
|
* add osd-scale commandPaul B Mahol2013-05-142-0/+4
| | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Modified to add docs for --osd-scale option, and adjusted to the previous commit by wm4.
* core: re-add -dumpstream as --stream-dumpwm42013-05-122-0/+6
| | | | | | | Apparently useful for dumping DVD. Could also be used to rip streams with libquvi and such, but for that there are better tools. Actually I doubt there aren't better tools to dump DVDs, but whatever, this was a feature request, so I don't need a good reason.
* core: add --stream-capturewm42013-05-122-0/+10
| | | | | | This is a partial revert of commit 7059c15, and basically re-adds --capture, just with different option names and slightly different semantics.
* Merge branch 'audio_changes'wm42013-05-123-65/+81
|\ | | | | | | | | Conflicts: audio/out/ao_lavc.c
| * manpage: update --channelswm42013-05-121-11/+10
| |
| * audio/filters: add af_forcewm42013-05-121-0/+33
| | | | | | | | | | Its main purpose is for testing in case channel layout stuff breaks, in particular in connection with old audio filters.
| * options: add option to prevent decoder audio downmixingwm42013-04-132-8/+20
| | | | | | | | Also rename --a52drc to --ad-lavc-ac3drc, and add --ad-lavc-o.
| * manpage: update af_lavrresample entrywm42013-04-131-6/+6
| | | | | | | | Reflects the changes over the last few commits.
| * af_lavrresample: add no-detach suboptionwm42013-04-131-0/+5
| | | | | | | | | | Normally, af_lavrresample detaches itself immediately if the input and output audio parameters are the same. no-detach prevents this.
| * options: remove --af-advwm42013-04-132-39/+3
| | | | | | | | | | | | | | Anything this option did has been removed in the preceding 3 commits. Note that even though these options sounded like a good idea (like setting accuracy vs. speed tradeoffs), they were not really properly implemented.
| * audio: remove float processing optionwm42013-04-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The only thing this option did was changing the behavior of af_volume. The option decided what sample format af_volume would use, but only if the sample format was not already float. If the option was set, it would default to float, otherwise to S16. Remove use of the option and all associated code, and make af_volume always use float (unless a af_volume specific sub-option is set). Silence maximum value tracking. This message is printed when the filter is destroyed, and it's slightly annoying. Was enabled due to enabling float by default.
* | man: fix spelling errorStefano Pigozzi2013-05-121-1/+1
| | | | | | | | Thanks @kastaren for spotting this.
* | cocoa_common: add native OSX fullscreen supportStefano Pigozzi2013-05-121-0/+7
| | | | | | | | | | | | | | | | This adds Mission Control fullscreen functionality to mpv. Since this doesn't play well with many of mpv's features disable it by default. Users can activate this feature by using `--native-fs` when starting mpv. Fixes #34
* | command: add time-remaining propertywm42013-05-101-0/+1
| |
* | core: add playback resume feature (manual/opt-in)wm42013-05-053-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A "watch later" command is now mapped to Shift+Q. This quits the player and stores the playback state in a config file in ~/.mpv/watch_later/. When calling the player with the same file again, playback is resumed at that time position. It's also possible to make mpv save playback state always on quit with the --save-position-on-quit option. Likewise, resuming can be disabled with the --no-resume-playback option. This also attempts to save some playback parameters, like fullscreen state or track selection. This will unconditionally override config settings and command line options (which is probably not what you would expect, but in general nobody will really care about this). Some things are not backed up, because that would cause various problems. Additional subtitle files, video filters, etc. are not stored because that would be too hard and fragile. Volume/mute state are not stored because it would mess up if the system mixer is used, or if the system mixer was readjusted in the meantime. Basically, the tradeoff between perfect state restoration and complexity/fragility makes it not worth to attempt to implement it perfectly, even if the result is a little bit inconsistent.
* | manpage: fix option descriptionwm42013-05-051-1/+1
| |
* | video: add --hwdec-codecs option to whitelist codecs for hw decodingwm42013-05-041-0/+12
| |
* | stream_bluray: remove the broken -bluray-chapter optionreimar2013-04-271-5/+0
| | | | | | | | | | | | | | | | | | | | Remove the broken -bluray-chapter option. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@36175 b3059339-0415-0410-9bf9-f77b7e298cf2 Conflicts: DOCS/man/en/mplayer.1 cfg-common.h
* | manpage: fix references to --slavewm42013-04-261-2/+2
| |
* | options: allow using [ ] for quoting in sub-optionswm42013-04-261-6/+13
| | | | | | | | | | | | This is an attempt to make quoting of sub-option values less awkward, even if it works only with some shells. This is needed mainly for vf_lavfi. Also update the vf_lavfi manpage section.
* | manpage: remove broken examplewm42013-04-241-3/+0
| | | | | | | | Weird video size presets have been removed.
* | manpage: document --native-keyrepeatwm42013-04-241-0/+6
| | | | | | | | Forgotten in commit d853aba.
* | core: add backstep supportwm42013-04-241-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows stepping back one frame via the frame_back_step inout command, bound to "," by default. This uses the precise seeking facility, and a perfect frame index built on the fly. The index is built during playback and precise seeking, and contains (as of this commit) the last 100 displayed or skipped frames. This index is used to find the PTS of the previous frame, which is then used as target for a precise seek. If no PTS is found, the core attempts to do a seek before the current frame, and skip decoded frames until the current frame is reached; this will create a sufficient index and the normal backstep algorithm can be applied. This can be rather slow. The worst case for backstepping is about the same as the worst case for precise seeking if the previous frame can be deduced from the index. If not, the worst case will be twice as slow. There's also some minor danger that the index is incorrect in case framedropping is involved. For framedropping due to --framedrop, this problem is ignored (use of --framedrop is discouraged anyway). For framedropping during precise seeking (done to make it faster), we try to not add frames to the index that are produced when this can happen. I'm not sure how well that works (or if the logic is sane), and it's sure to break with some video filters. In the worst case, backstepping might silently skip frames if you backstep after a user-initiated precise seek. (Precise seeks to do indexing are not affected.) Likewise, video filters that somehow change timing of frames and do not do this in a deterministic way (i.e. if you seek to a position, frames with different timings are produced than when the position is reached during normal playback) will make backstepping silently jump to the wrong frame. Enabling/disabling filters during playback (like for example deinterlacing) will have similar bad effects.
* | manpage: remove references to --no-sliceswm42013-04-231-7/+1
| | | | | | | | | | | | Background: slice support has been completely removed, because it doesn't work with multithreading, and provides a rather bad complexity to performance tradeoff otherwise.
* | m_option: allow quoted positional parameters for -vfwm42013-04-231-1/+2
| | | | | | | | | | | | | | | | | | This allows things like: '--vf=lavfi="gradfun=20:30"' Adjust the documentation for vf_lavfi to make the example less verbose. As an unrelated change, add a general description to vf_lavfi.
* | vf_lavfi: add libavfilter bridgewm42013-04-211-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Requires recent FFmpeg/Libav git versions. Earlier versions will not be supported, as the API is different. (A libavfilter version that uses AVFrame instead of AVFilterBuffer is needed.) Note that this is sort of useless, because the option parser prevents you from making use of the full libavfilter graph syntax. This has to be fixed later. Most of the filter creation code (half of the config() function) has been taken from avplay.c. This code is not based on MPlayer's vf_lavfi. The MPlayer code doesn't compile as it hasn't been updated through multiple libavfilter API changes, making it completely useless as a starting point.
* | manpage: clarify --cache behaviorwm42013-04-201-0/+6
| |
* | Fix typo for opengl dither-depth defaultEllis Berner2013-04-181-1/+1
| |
* | sub: add --osd-blur and --sub-text-blur optionswm42013-04-131-0/+3
|/ | | | | | | | | These require bleeding edge libass (latest git version), and will be ignored otherwise. I'm not sure about the blur factor and scaling. The ASS/VSFilter semantics for blur scaling are a bad mess. Might require further investigation.
* core: remove dead --vsync leftoverswm42013-04-121-1/+0
|
* core: add --reset-on-next-file optionwm42013-04-101-0/+24
| | | | | | | This option can be used to selectively reset settings when playing the next file in the playlist (i.e. restore mplayer and mplayer2 behavior). Might remove this option again should it turn out that nobody uses it.
* Remove some apple remote leftoverswm42013-04-051-4/+0
| | | | The options and key names don't do anything anymore.
* demux_mkv: try to show current subtitle when seekingwm42013-04-041-0/+23
| | | | | | | | | | | | | | | | | Makes sure that seeking to a given time position shows the subtitle at that position. This can fail if the subtitle packet is not close enough to the seek target. Always enabled for hr-seeks, and can be manually enabled for normal seeks with --mkv-subtitle-preroll. This helps displaying subtitles correctly with ordered chapters. When switching ordered chapter segments, a seek is performed. If the subtitle is timed slightly before the start of the segment, it normally won't be demuxed. This is a problem with all seeks, but in this case normal playback is affected. Since switching segments always uses hr-seeks, the code added by this commit is always active in this situation. If no subtitles are selected or the subtitles come from an external file, the demuxer should behave exactly as before this commit.
* core: add --heartbeat-interval optionwm42013-04-041-1/+5
| | | | | | This closely follows MPlayer commit 36099, with some changes. Move a mutable static variable into MPContext.
* manpage: fix a typowm42013-03-311-1/+1
|
* encoding-example-profiles and manpage: prefer libvorbis over vorbisRudolf Polzer2013-03-311-1/+1
| | | | | vorbis is the builtin bad vorbis encoder; whenever possible, one should rather use the "libvorbis" codec name.
* remove Apple Remote related codeStefano Pigozzi2013-03-311-3/+0
| | | | | | | | | | | | | | | | The OSX part of the Apple Remote was unmaintained for a long time and was not working anymore. I tried to update the cookies to what the current versions of OS X expect without much luck. I decided to remove it since Apple is not including the IR receiver anymore in new hardware and it's clear that wifi based remotes are the way to go. A third party iOS app should be used in it's place. In the future we could look into having a dedicated iOS Remote Control app like VLC and XBMC do. The Linux side (`appleir.c`) was relatively tidy but it looks like LIRC can be configured to work with any version of Apple Remote [1] and is more maintained. [1] LIRC Apple Remote configs: http://lirc.sourceforge.net/remotes/apple/
* changes.rst: mention -afm hwac3 replacementwm42013-03-301-0/+1
|
* osd: draw the OSD bar with ASS vector drawingswm42013-03-301-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | Drawing the bar with vector drawings (instead with characters from the OSD font) offers more flexibility and looks better. This also adds chapter marks to the OSD bar, which are visible as small triangles on the top and bottom inner border of the bar. Change the default position of the OSD bar below the center of the screen. This is less annoying than putting the bar directly into the center of the view, where it obscures the video. The new position is not quite on the bottom of the screen to avoid collisions with subtitles. The old centered position can be forced with ``--osd-bar-align-y=0``. Also make it possible to change the OSD bar width/height with the new --osd-bar-w and --osd-bar-h options. It's possible that the new OSD bar renders much slower than the old one. There are two reasons for this: 1. the character based bar allowed libass to cache each character, while the vector drawing forces it to redraw every time the bar position changes. 2., the bar position is updated at a much higher granularity (the bar position is passed along as float instead of as integer in the range 0-100, so the bar will be updated on every single video frame).
* gl_video: use choice option type for dither-depth suboptionwm42013-03-281-6/+6
| | | | | Replaces the numeric magic values -1 and 0 with "no" and "auto". The numeric values are still allowed for compatibility.
* gl_video: add some alpha FBO formatswm42013-03-281-1/+2
|
* vo_opengl: add alpha outputwm42013-03-281-0/+8
| | | | | | | | | | | | | | | | | | | Allows playing video with alpha information on X11, as long as the video contains alpha and the window manager does compositing. See vo.rst. Whether a window can be transparent is decided by the choice of the X Visual used for window creation. Unfortunately, there's no direct way to request such a Visual through the GLX or the X API, and use of the XRender extension is required to find out whether a Visual implies a framebuffer with alpha used by XRender (see for example [1]). Instead of depending on the XRender wrapper library (which would require annoying configure checks, even though XRender is virtually always supported), use a simple heuristics to find out whether a Visual has alpha. Since getting it wrong just means an optional feature will not work as expected, we consider this ok. [1] http://stackoverflow.com/questions/4052940/how-to-make-an-opengl- rendering-context-with-transparent-background/9215724#9215724
* core: output --playing-msg message only after at least one frame is shownwm42013-03-261-1/+1
| | | | | | | | | | | | | | | | This way it's possible to retrieve correct information about video, like actual width/height, which in general are available only after at least one frame has been sent to the video output, such as dwidth/dheight. mpv_identify.sh becomes a bit slower, because we let it decode enough audio and video to fill the audio buffers and to send one frame to the video output. Also, --playing-msg isn't shown anymore with --frames=0 (could be fixed by special-casing it, should this break any use cases). Note that in some corner cases, like when the demuxer for some reason returns lots of audio packets but no video packets at the start, but video actually starts later, the --playing-msg will still be output before video starts.
* mplayer: make --frames=1 work for audiowm42013-03-261-1/+4
| | | | | | | This has the same (useless) definition as frame stepping in audio-only mode: one frame means one playloop iteration. (It's relatively useless, because one playloop iteration has a random duration. But it makes --frames=1 work, which is useful again.)
* command: export VO video width/height as propertieswm42013-03-261-2/+4
| | | | | | Add new properties "dwidth" and "dheight", which contain the video size as known by the VO (not necessarily what the VO makes out of them, i.e. without window scaling and panscan).
* af_lavrresample: add new resampling filter to replace the old onesStefano Pigozzi2013-03-131-42/+14
| | | | | | | | | | Remove `af_resample` and `af_lavcresample`. The former is a mess while the latter uses an API that was long deprecated in libavcodec and is now removed. `af_lavrresample` rougly has the same features and structure of `af_lavcresample`. libswresample fallback by wm4.
* options: remove --no-vsyncwm42013-03-061-3/+0
| | | | | | Latest nvidia drivers ignore the application setting, so this switch makes even less sense than before. It's still possible to control this with VO specific suboptions.
* manpage: fix --no-dts typowm42013-03-041-1/+1
|
* Add a --dtshd optionWessel Dankers2013-03-041-0/+7
| | | | | | | | | | The spdif decoder was hardcoded to assume that the spdif output is capable of accepting high (>1.5Mbps) bitrates. While this is true for modern HDMI spdif interfaces, the original coax/toslink system cannot deal with this and will fail to work. This patch adds an option --dtshd which can be enabled if you use a DTS-capable receiver behind a HDMI link.
* wayland: fix typo in manpageAlexander Preisinger2013-03-021-1/+1
|
* input.conf: change default bindings of 5/6 from hue to gammawm42013-03-011-1/+1
| | | | | | | | I doubt anyone needs to adjust hue on a frequent basis, and gamma is much more useful. Suggestions for more radical changes of key bindings are welcome (there's a lot of useless crap mapped).
* manpage: remove reference to subtitle alignmentwm42013-03-011-3/+0
|
* core: simplify OSD capability handling, remove VFCAP_OSDwm42013-03-011-10/+0
| | | | | | | | | | | | | | | | | | | VFCAP_OSD was used to determine at runtime whether the VO supports OSD rendering. This was mostly unused. vo_direct3d had an option to disable OSD (was supposed to allow to force auto-insertion of vf_ass, but we removed that anyway). vo_opengl_old could disable OSD rendering when a very old OpenGL version was detected, and had an option to explicitly disable it as well. Remove VFCAP_OSD from everything (and some associated logic). Now the vo_driver.draw_osd callback can be set to NULL to indicate missing OSD support (important so that vo_null etc. don't single-step on OSD redraw), and if OSD support depends on runtime support, the VO's draw_osd should just do nothing if OSD is not available. Also, do not access vo->want_redraw directly. Change the want_redraw reset logic for this purpose, too. (Probably unneeded, vo_flip_page resets it already.)
* wayland: add wayland supportAlexander Preisinger2013-02-281-0/+4
| | | | | | | | | | | | | | | | | | | | | All wayland only specific routines are placed in wayland_common. This makes it easier to write other video outputs. The EGL specific parts, as well as opengl context creation, are in gl_common. This backend works for: * opengl-old * opengl * opengl-hq To use it just specify the opengl backend --vo=opengl:backend=wayland or disable the x11 build. Don't forget to set EGL_PLATFORM to wayland. Co-Author: Scott Moreau (Sorry I lost the old commit history due to the file structure changes)
* video/out: remove video mode switching (--vm)wm42013-02-262-4/+3
| | | | | | | | | | | | | | | | | | | | This allowed making the player switch the monitor video mode when creating the video window. This was a questionable feature, and with today's LCD screens certainly not useful anymore. Switching to a random video mode (going by video width/height) doesn't sound too useful either. I'm not sure about the win32 implementation, but the X part had several bugs. Even in mplayer-svn (where x11_common.c hasn't been receiving any larger changes for a long time), this code is buggy and doesn't do the right thing anyway. (And what the hell _did_ it do when using multiple physical monitors?) If you really want this, write a shell script that calls xrandr before and after calling mpv. vo_sdl still can do mode switching, because SDL has native support for it, and using it is trivial. Add a new sub-option for this.
* x11_common: always create a window, even with --widwm42013-02-261-7/+13
| | | | | | | | | | | | | | | | | The --wid switch (for embedding the player into other applications) didn't create a new window, and instead tried to use the window that was passed via --wid directly. This made the code more complex, caused strange X errors (mpv and host application fighting for exclusive X resources), and actually could cause issues if the --wid window wasn't created with the X Visual needed for OpenGL. Always create a window instead. This makes it always possible to embed the player into foreign windows. --geometry doesn't work anymore - the controlling application should always create a new window to place the player inside it, and can control the video window by moving and resizing this window. w32_common.c actually did this right, and always creates a new window.
* Remove --rootwin option and rootwin propertywm42013-02-242-6/+0
| | | | | | | | You can just use --wid=0 if you really want this. This only worked/works for X11, and even then it might interact badly with most desktop environments. All the option did was setting --wid to 0, and the property did nothing.
* demux_rawvideo: allow setting video codecwm42013-02-241-0/+2
| | | | Can be used to decode some obscure image formats and similar stuff.
* vf_yadif: switch to option parser, allow disabling by defaultwm42013-02-231-6/+5
| | | | | | | | | Use the option parser instead of sscanf. Remove the parameter changing the field dominance (it has been marked deprecated for ages). Add a new suboption "enabled", which can be used to disable the filter by default, until it's enabled at runtime: mpv -vf yadif=enabled=no
* vf_scale: remove video dimension presets ("presize" suboption)wm42013-02-231-11/+1
| | | | | This wasn't really useful, and the option preset mechanism is awfully complex.
* demux_rawvideo: remove ancient video dimension presetswm42013-02-231-1/+0
| | | | I can't see much value in them. Just specify the size manually.
* options: drop --opt:subopt option nameswm42013-02-234-45/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For all suboptions, "flat" options were available by separating the parent option and the sub option with ":", e.g. "--rawvideo:w=123". Drop this syntax and use "-" as separator. This means even suboptions are available as normal options now, e.g. "--rawvideo-w=123". The old syntax doesn't work anymore. Note that this is completely separate from actual suboptions. For example, "-rawvideo w=123:h=123" still works. (Not that this syntax is worth supporting, but it's needed anyway, for for other things like vf and vo suboptions.) As a consequence of this change, we also have to add new "no-" prefixed options for flag suboptions, so that "--no-input-default-bindings" works. ("--input-no-default-bindings" also works as a consequence of allowing "-input no-default-bindings" - they are handled by the same underlying option.) For --input, always use the full syntax in the manpage. There exist suboptions other than --input (like --tv, --rawvideo, etc.), but since they might be handled differently in the future, don't touch these yet. M_OPT_PREFIXED becomes the default, so remove it. As a minor unrelated cleanup, get rid of M_OPT_MERGE too and use the OPT_SUBSTRUCT() macro in some places. Unrelated: remove the duplicated --tv:buffersize option, fix a typo in changes.rst.
* core: add fs-screen option for fullscreen display selectionStefano Pigozzi2013-02-211-12/+29
| | | | | | | | | | | | `--fs-screen` allows to decide what display to go fullscreen into. The semantics of `--screen` changed and now it is only used to select the windowed display when starting the application. This is useful for people using mpv with an external TV. They will start windowed on their laptop's screen and switch to fullscreen on the TV. @wm4 worked on the x11 and w32 parts of the code. All is squashed in one commit for history clarity.
* options: parse C-style escapes for some optionswm42013-02-201-4/+9
| | | | | | | | | | Being able to insert newline characters ("\n") is useful for --osd-status-msg, and possibly also for anything that prints to the terminal. Espcially --term-osd-esc looks relatively useless without being able to specify escapes. Maybe parsing escapes should happen during command line / config parsing instead (for all options).
* manpage: improve configuration file section a bitwm42013-02-171-14/+37
|
* command: add "cache" read-only propertywm42013-02-171-0/+1
|
* osd: add --osd-status-msg option for custom OSD statuswm42013-02-161-0/+6
|
* osd: add --no-osd-bar option to disable the OSD barwm42013-02-161-0/+8
| | | | | In addition to disabling the OSD bar physically, also add some fallbacks to OSD text in places the OSD bar would have been used.
* osd: add --osd-bar-align-x/y options to control OSD bar positionwm42013-02-141-0/+6
|
* Rename af_volnorm to af_drcMartin2013-02-121-2/+6
| | | | | | The previous name of this filter was misleading, because it doesn’t actually normalize volume levels. What it does is closer to performing low-quality dynamic range compression, hence it is now called af_drc.
* core: redo how codecs are mapped, remove codecs.confwm42013-02-105-256/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use codec names instead of FourCCs to identify codecs. Rewrite how codecs are selected and initialized. Now each decoder exports a list of decoders (and the codec it supports) via add_decoders(). The order matters, and the first decoder for a given decoder is preferred over the other decoders. E.g. all ad_mpg123 decoders are preferred over ad_lavc, because it comes first in the mpcodecs_ad_drivers array. Likewise, decoders within ad_lavc that are enumerated first by libavcodec (using av_codec_next()) are preferred. (This is actually critical to select h264 software decoding by default instead of vdpau. libavcodec and ffmpeg/avconv use the same method to select decoders by default, so we hope this is sane.) The codec names follow libavcodec's codec names as defined by AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders have names different from the canonical codec name. The AVCodecDescriptor API is relatively new, so we need a compatibility layer for older libavcodec versions for codec names that are referenced internally, and which are different from the decoder name. (Add a configure check for that, because checking versions is getting way too messy.) demux/codec_tags.c is generated from the former codecs.conf (minus "special" decoders like vdpau, and excluding the mappings that are the same as the mappings libavformat's exported RIFF tables). It contains all the mappings from FourCCs to codec name. This is needed for demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the codec as determined by libavformat, while the other demuxers have to do this on their own, using the mp_set_audio/video_codec_from_tag() functions. Note that the sh_audio/video->format members don't uniquely identify the codec anymore, and sh->codec takes over this role. Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which provide cover the functionality of the removed switched. Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure container/video combinations (e.g. the sample Film_200_zygo_pro.mov) are played flipped. ffplay/avplay doesn't handle this properly either, so we don't care and blame ffmeg/libav instead.
* options: change --no-config option, make it apply to input.conf as wellwm42013-02-091-11/+9
| | | | | | | | | | | | | Simplify --no-config and make it a normal flag option, and doesn't take an argument anymore. You can get the same behavior by using --no-config and then --include to explicitly load a certain config file. Make --no-config work for input.conf as well. Make it so that --input:conf=file still works in this case. As a technically unrelated change, the file argument now works as one would expect, instead of making it relatively to "~/.mpv/". This makes for simpler code and easier to understand option semantics. We can also print better error messages.
* options: unify single dash and double dash optionswm42013-02-091-23/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were two option syntax variations: "old": -opt value "new": --opt=value "-opt=value" was invalid, and "--opt value" meant "--opt=" followed by a separate option "value" (i.e. interpreted as filename). There isn't really any reason to do this. The "old" syntax used to be ambiguous (you had to call the option parser to know whether the following argument is an option value or a new option), but that has been removed. Further, using "=" in the option string is always unambiguous. Since the distinction between the two option variants is confusing, just remove the difference and allow "--opt value" and "-opt=value". To make this easier, do some other cleanups as well (e.g. avoid having to do a manual lookup of the option just to check for M_OPT_PRE_PARSE, which somehow ended up with finally getting rid of the m_config.mode member). Error reporting is still a mess, and we opt for reporting too many rather than too few errors to the user. There shouldn't be many user-visible changes. The --framedrop and --term-osd options now always require parameters. The --mute option is intentionally made ambiguous: it works like a flag option, but a value can be passed to it explicitly ("--mute=auto"). If the interpretation of the option is ambiguous (like "--mute auto"), the second string is interpreted as separate option or filename. (Normal flag options are actually ambiguous in this way too.)
* Remove BSD legacy TV/radio support (BT848 stuff)wm42013-02-061-13/+3
| | | | | FreeBSD actually supports V4L2, and V4L2 supports this chip. Also, this chip is from 1997. Farewell.
* core: remove --edlout functionalitywm42013-02-062-10/+1
| | | | | | | | | | | | | | | | This could write .edl files in MPlayer's format. Support for playing these files has been removed from mplayer2 quite a while ago. (mplayer2 can play its own, "new" .edl format, but does not support writing it.) Since this is a rather obscure functionality, and it's not really clear how it should behave (e.g. what should it do if a new file is played), and wasn't all that great to begin with (what if you made a mistake? the "edl_mark" command sucks for editing), get rid of it. Suggestions how to reimplement this in a nicer way are welcome. If it's just about retrieving timecodes, this in input.conf will do: KEY print_text "position: ${=time-pos}"
* manpage: document option syntax variations betterwm42013-02-032-4/+29
|
* DOCS: remove files documenting removed/rewritten functionalitywm42013-02-0312-3267/+0
| | | | | | | Most of these are a waste of time. Some (like slave.txt) have been rewritten in rst. The remaining files aren't that useful, but probably do no harm.
* DOCS: update encoding profiles installation instructionsStefano Pigozzi2013-02-011-2/+4
| | | | | | Simply removed the assumption that the user is using `mpv-build`. Now provide 3 lines of shell that can be copy-pasted by the user for instant gratification (and independent from $PWD).
* manpage: fixeswm42013-01-312-3/+11
| | | | | | | Add missing documentation for --quvi-format switch. Fix description how hw decoding is enabled. The old way currently still works, but is deprecated.
* screenshot: minor simplification, prefer VF over VOwm42013-01-303-17/+10
| | | | | | | | | | | | | Remove screenshot_force and associated logic. Always try to use the screenshot video filter before trying taking screenshots with the VO, which means that --vf=screenshot now takes the role of --vf=screenshot_force. (To make this clear, not adding a video filter is still the recommended way to take screenshots; we just change how VF screenshots are forced.) Preferring VO over VF and having --vf=screenshot_force used to make sense when not all VOs supported screenshots, and some VOs had somewhat broken screenshots (like vo_xv taking screenshots with OSD in it). But all these issues are fixed now, so just get rid of the cruft.
* vo_opengl: always ditherWessel Dankers2013-01-271-5/+0
| | | | | | | | | | | | Dithering was disabled if the input bit depth was not larger than the output bit depth of the screen framebuffer. But since scaling, RGB conversion, and other filters change the number of significant bits anyway, dithering could still benefit image quality even in these cases. Always do dithering, unless dithering is completely disabled. The original intention of this mechanism was not to change the image needlessly when playing video that matches the native bit depth of the screen.
* stream: implement some HTTP specific options for stream_lavfwm42013-01-241-10/+0
| | | | | | | | | | | | | | | | | | The "http:" protocol has been switched to use ffmpeg's HTTP implementation some time ago. One problem with this was that many HTTP specific options stopped working, because they were obviously implemented for the internal HTTP implementation only. Add the missing things. Note that many options will work for ffmpeg only, as Libav's HTTP implementation is missing these. They will silently be ignored on Libav. Some options we can't fix: --ipv4-only-proxy, --prefer-ipv4, --prefer-ipv6 As far as I can see, not even libavformat internals distinguish between ipv4 and ipv6. --user, --passwd ffmpeg probably supports specifying these in the URL directly.
* video: remove -x/-y/-xy optionswm42013-01-232-14/+2
| | | | | | | | | | | | | | | -x/-y were rather useless and obscure. The only use I can see is forcing a specific aspect ratio without having to calculate the aspect ratio float value (although --aspect takes values of the form w:h). This can be also done with --geometry and --no-keepaspect. There was also a comment that -x/-y is useful for -vm, although I don't see how this is useful as it still messes up aspect ratio. -xy is mostly obsolete. It does two things: a) set the window width to a pixel value, b) scale the window size by a factor. a) is already done by --autofit (--autofit=num does exactly the same thing as --xy=num, if num >= 8). b) is not all that useful, so we just drop that functionality.
* video: add --autofit and --autofit-larger optionswm42013-01-231-0/+48
| | | | | | | | | --autofit=WxH sets the window size to a maximum width and/or height, without changing the window's aspect ratio. --autofit-larger=WxH does the same, but only if the video size is actually larger than the window size that would result when using the --autofit=WxH option with the same arguments.
* options: allow using % for width and height in --geometrywm42013-01-231-13/+23
| | | | | | | | | | | | | | | | | | | | Now all numbers in the --geometry specification can take percentages. Rewrite the parsing of --geometry, because adjusting the sscanf() mess would require adding all the combinations of using and not using %. As a side effect, using % and pixel values can be freely mixed. Keep the aspect if only one of width or height is set. This is more useful in general. Note: there is one semantic change: --geometry=num used to mean setting the window X position, but now it means setting the window width. Apparently this was a mplayer-specific feature (not part of standard X geometry specifications), and it doesn't look like an overly useful feature, so we are fine with breaking it. In general, the new parsing should still adhere to standard X geometry specification (as used by XParseGeometry()).
* manpage: fix places that still treat FourCCs and pixel formats equalwm42013-01-172-13/+12
| | | | | | | | | | | | | | | The video filter chain traditionally used FourCCs for pixel formats. This was recently changed, but some parts of the manpage were not updated properly. Now there are two rypes of options: some which take a FourCC (as used with raw video formats), and some which take a symbolic format identifier (as used in the video filter chain). I realize that it's harder to specify FourCC for RGB formats now (TV stuff may need RGB). They use non-printable characters as part of the FourCC, and have to be specified as hexadecimal numbers (instead of a symbolic identifier). Because I can't be bothered to find out what these numbers are for the respective formats, just remove the old pseudo-FourCCs from the documentation.
* vd_lavc: remove -lavdopts vstats suboptionwm42013-01-131-2/+0
| | | | | | This printed per-frame statistics into a file, like bitrate or frame type. Not very useful and accesses obscure AVCodecContext fields (danger of deprecation/breakage), so get rid of it.
* vd_lavc: remove lowres decodingwm42013-01-131-13/+0
| | | | | | | | | | This was a "broken misfeature" according to Libav developers. It wasn't implemented for modern codecs (like h264), and has been removed from Libav a while ago (the AVCodecContext field has been marked as deprecated and its value is ignored). FFmpeg still supports it, but isn't much useful due to aforementioned reasons. Remove the code to enable it.
* sub: add experimental --force-rgba-osd-rendering switchwm42013-01-131-0/+8
|
* vo_direct3d: remove 2ch hack for 10 bit playbackwm42013-01-131-9/+0
| | | | | | | | | | | This was an awkward hack that attempted to avoid the use of 16 bit textures, while still allowing rendering 10-16 bit YUV formats. The idea was that even if the hardware doesn't support 16 bit textures, an A8L8 textures could be used to convert 10 bit (etc.) to 8 bit in the shader, instead of doing this on the CPU. This was an experiment, disabled by default, and was (probably) rarely used. I've never heard of this being used successfully. Remove it.
* video: decouple internal pixel formats from FourCCswm42013-01-131-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mplayer's video chain traditionally used FourCCs for pixel formats. For example, it used IMGFMT_YV12 for 4:2:0 YUV, which was defined to the string 'YV12' interpreted as unsigned int. Additionally, it used to encode information into the numeric values of some formats. The RGB formats had their bit depth and endian encoded into the least significant byte. Extended planar formats (420P10 etc.) had chroma shift, endian, and component bit depth encoded. (This has been removed in recent commits.) Replace the FourCC mess with a simple enum. Remove all the redundant formats like YV12/I420/IYUV. Replace some image format names by something more intuitive, most importantly IMGFMT_YV12 -> IMGFMT_420P. Add img_fourcc.h, which contains the old IDs for code that actually uses FourCCs. Change the way demuxers, that output raw video, identify the video format: they set either MP_FOURCC_RAWVIDEO or MP_FOURCC_IMGFMT to request the rawvideo decoder, and sh_video->imgfmt specifies the pixel format. Like the previous hack, this is supposed to avoid the need for a complete codecs.cfg entry per format, or other lookup tables. (Note that the RGB raw video FourCCs mostly rely on ffmpeg's mappings for NUT raw video, but this is still considered better than adding a raw video decoder - even if trivial, it would be full of annoying lookup tables.) The TV code has not been tested. Some corrective changes regarding endian and other image format flags creep in.
* video: different way to enable hardware decoding, add software fallbackwm42013-01-132-0/+13
| | | | | | | | | | | | | | Deprecate the hardware specific video codec entries (like ffh264vdpau). Replace them with the --hwdec switch, which requests that a specific hardware decoding API should be used. The codecs.conf entries will be removed at a later time, but for now they are useful for testing and compatibility. Instead of --vc=ffh264vdpau, --hwdec=vdpau should be used. Add a fallback if hardware decoding fails. Most hardware decoders (including vdpau) support only a subset of h264, and having such a fallback is supposed to enable a better user experience.
* video: remove slice based filtering and video outputwm42013-01-131-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Slices allowed filtering or drawing video in horizontal bands or blocks. This allowed working on the video in smaller units. In theory, this could bring a performance win by lowering cache pressure, as you didn't have to keep the whole video frame in cache while filtering, only the slice. In practice, the slice code path was barely used for the following reasons: - Multithreaded decoding with ffmpeg didn't use slices. The ffmpeg slice callback was disabled, because it can be called from another thread, and the mplayer video chain is not thread-safe. - There was nothing that would turn "full" images into appropriate slices, so slices were rarely used. - Most filters didn't actually support slices. On the other hand, supporting slices lead to code duplication and more complex code in general. I made some experiments and didn't find any actual measurable performance improvements when using slices. Even ffmpeg removed slices based filtering from libavfilter in favor of simpler code. The most broken thing about the slices code path is that slices can't be queued, like it is done for images in vo.c.
* vo_sdl: add a "sw" flag like in openglRudolf Polzer2013-01-101-0/+3
| | | | | | Also, rework the renderer creation for the flag being generally effective even if the "SW renderer" is detected only after creating a context.
* mplayer: make --loop loop the playlist instead of each playlist entrywm42013-01-091-1/+2
| | | | | | | | | | This is simpler and more useful. We could add a new switch for the old functionality, but that would probably be more confusing than helpful. When passing only a single file to the command line, this commit shouldn't change behavior. (Classic mplayer provided both features by duplicating the loop functionality in the "playtree".)
* DOCS: add some basic MinGW cross compilation instructionswm42013-01-081-0/+59
|
* manpage: document the dangers of some subtitle optionswm42013-01-051-7/+20
| | | | | | | | | | | | | Setting some subtitle options may lead to incorrect rendering of complex ASS subtitle scripts, such as displaced signs or visual artifacts. The user should be made aware that this can happen. In theory, libass could make using some of these options relatively safe, but it doesn't. Note that there are potentially much more options that could in theory break subtitle rendering, but add a warning only to the most fragile ones.
* sub: add --sub-text-* options to unstyled text subtitles fontwm42013-01-052-31/+34
| | | | | | | Before this commit, the --osd-* options (like --osd-font-size etc.) configured both the OSD and subtitle font. Make them separate, and add --sub-text-* options (like --sub-text-size etc.). Now --osd-* affects the OSD font only, and --sub-text-* unstyled text subtitles only.
* manpage: sort --osd-* optionswm42013-01-041-36/+36
| | | | | | They were more or less grouped by usefulness, but since everything else in the manpage is sorted alphabetically, it's better to be consistent and sort these options as well.
* manpage: minor improvementswm42012-12-281-9/+14
|
* DOCS: document EDL formatwm42012-12-281-0/+139
| | | | | This is taken from the commit message of 968154ba77f8, with some fixes to make it valid RST.
* vo_opengl: use more precise gamma for BT.709 with color managementnand2012-12-281-2/+2
| | | | | | | | | | Change from gamma 2.2 to the slightly more precise 1/0.45 as per BT.709. https://www.itu.int/rec/R-REC-BT.709-5-200204-I/en mentions a value of γ=0.45 for the conceptual non-linear precorrection of video signals. This is approximately the inverse of 2.22, and not 2.20 as the code had been using until now.
* vo/ao: SDL 1.2+ audio driver, SDL 2.0+ accelerated video driverRudolf Polzer2012-12-282-0/+20
| | | | | | | | | | | This mainly serves as a fallback for platforms where nothing better is available; also as a debugging help. Both the audio and video driver are not first class - the audio driver lacks delay detection, and the video driver only supports a single YUV color space. Configure options: --disable-sdl2 to disable SDL 2.0+ detection, --disable-sdl to disable SDL 1.2+ detection. Both options need to be specified to turn off SDL support entirely.
* options: move -ass-bottom-margin/-ass-top-margin options to vf_subwm42012-12-123-9/+10
| | | | | These options might be useful sometimes, but they are not that important, and work with vf_sub only. Make them vf_sub sub-options.
* manpage: mark HTTP related options as deprecated/brokenwm42012-12-112-1/+21
| | | | | | | | | | Commit c02f25 switched the "http://" protocol to use ffmpeg's HTTP implementation (stream_lavf.c), instead of the mplayer internal one (http.c). Unfortunately, it turns out that there are some network related options that are not respected by stream_lavf.c, and consequently do not work anymore for "http://" URLs. This might be fixed later. Mark them as deprecated for now, as it might take arbitrarily long until this is taken care of.
* core: allow disabling display of "album art" in audio fileswm42012-12-111-0/+10
| | | | | | | | | | | | | | | | | | ffmpeg pretends that image attachments (such as contained in ID3v2 metadata) are video streams. It injects the attached pictures as packets into the packet stream received with av_read_frame(). Add the --audio-display option to allow configuring whether attached pictures should be displayed. The default behavior doesn't change (images are displayed). Identify video streams, that are actually image attachments, with "[P]" in the terminal output. Modify the default stream selection such that real video streams are preferred over attached pictures. (This is just for robustness; I do not know of any samples where images are added before actual video streams and could lead to bad default stream selection with the old code.)
* audio: remove support for native alaw/mulaw/adpcm outputwm42012-12-111-1/+1
| | | | | | This is considered a worthless feature. Note that alaw/mulaw/adpcm input is unaffected: such data is handed to libavcodec and "decoded" to linear PCM.
* demux_lavf: make minimum probe score customizable, remove lavf_preferredwm42012-12-111-0/+6
| | | | | | | | | | | | | | | | | | | | | libavformat wants to read a full ~400KB of data to determine whether it's really AAC. This causes slow startup with AAC web radio streams [1] (possible due to a broken initial packet). There are similar issues with other file formats. Make the probe "score" (libavformat's mechanism for testing file formats) configurable with the -lavfdtops:probescore option. This allows lowering the amount of data read on probing. If the probe score is below the probescore option value, demux_lavf will try to get a higher score by feeding more data to libavformat, until the required score or the max. probe size is reached. Remove the lavf_preferred demuxer entry. This had a purpose in mplayer-svn, but now there doesn't seem to be any good reason for it to exist. Make sure that our native "good" demuxers are above demux_lavf in demuxer_list[] instead (so that they are preferred). [1] http://lr2mp0.latvijasradio.lv:8000
* sub: remove vobsub reader in favor of ffmpeg vobsub demuxerwm42012-12-112-13/+7
| | | | | | | | ffmpeg recently added a demuxer that can read vobsubs (pairs of .sub and .idx files). Get rid of the internal vobsub reader, and use the ffmpeg demuxer instead. Sneak in an unrelated manpage change (autosub default).
* subs: remove --utf8, simplify codeUoti Urpala2012-12-031-4/+0
| | | | | | | | | | | | | | | | | | | Remove the options --utf8 and --unicode which had no effect any more (what they once did should be doable with --subcp). The only use of corresponding variables left in code was subreader.c code using sub_utf8 as a flag indicating whether iconv conversion was active. Change the code to test the existence of iconv context instead. Conflicts: DOCS/man/en/options.rst core/cfg-mplayer.h sub/sub.c sub/sub.h sub/subreader.c Merged from mplayer2 commit ea7311. Note: --unicode was already removed
* core: automatically pause on low cachewm42012-12-031-1/+10
| | | | | | | | | | | | | | | When the cache fill status goes below a certain threshold, automatically pause the player. When the cache is filled again, unpause again. This is intended to help with streaming from http. It's better to pause a while, rather than exposing extremely crappy behavior when packet reads during decoding block the entire player. In theory, we should try to increase the cache if underruns happen too often. Unfortunately, changing the cache implementation would be very hard, because it's insane code (forks, uses shared memory and "volatile" etc.). So for now, this just reduces the frequency of the stuttering if the network is absolutely too slow to play the stream in realtime.
* demux_lavf: add support for libavdevicewm42012-12-031-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libavdevice supports various "special" video and audio inputs, such as screen-capture or libavfilter filter graphs. libavdevice inputs are implemented as demuxers. They don't use the custom stream callbacks (in AVFormatContext.pb). Instead, input parameters are passed as filename. This means the mpv stream layer has to be disabled. Do this by adding the pseudo stream handler avdevice://, whose only purpose is passing the filename to demux_lavf, without actually doing anything. Change the logic how the filename is passed to libavformat. Remove handling of the filename from demux_open_lavf() and move it to lavf_check_file(). (This also fixes a possible bug when skipping the "lavf://" prefix.) libavdevice now can be invoked by specifying demuxer and args as in: mpv avdevice://demuxer:args The args are passed as filename to libavformat. When using libavdevice demuxers, their actual meaning is highly implementation specific. They don't refer to actual filenames. Note: libavdevice is disabled by default. There is one problem: libavdevice pulls in libavfilter, which in turn causes symbol clashes with mpv internals. The problem is that libavfilter includes a mplayer filter bridge, which is used to interface with a set of nearly unmodified mplayer filters copied into libavfilter. This filter bridge uses the same symbol names as mplayer/mpv's filter chain, which results in symbol clashes at link-time. This can be prevented by building ffmpeg with --disable-filter=mp, but unfortunately this is not the default. This means linking to libavdevice (which in turn forces linking with libavfilter by default) must be disabled. We try doing this by compiling a test file that defines one of the clashing symbols (vf_mpi_clear). To enable libavdevice input, ffmpeg should be built with the options: --disable-filter=mp and mpv with: --enable-libavdevice Originally, I tried to auto-detect it. But the resulting complications in configure did't seem worth the trouble.
* ao_pcm: fix references to -novideowm42012-12-032-1/+2
| | | | | | | | | | | The option is -no-video. Remove the deprecated "fast" suboption, which did nothing and instructed the user to use "-novideo" instead. Fix a reference to -novideo in encoding.rst. Add a "generic" entry about -no-* to the list of renamed options. The change is already explicitly mentioned in the text above the table, but even if it's redundant, it makes it harder to overlook.
* encoding-example-profiles: updates, iphone 5 supportRudolf Polzer2012-12-011-1/+2
| | | | | Now the scaling for iPhones properly optimizes for the zoomed-in (pan-scan) view.
* DOCS: Add manpage metadata to the rst files.Rudolf Polzer2012-11-291-2/+13
| | | | This fixes the manpage indent issues.
* DOCS: Fix some rst error messagesRudolf Polzer2012-11-292-16/+17
| | | | Unfortunately, these do not fix the man page indent issue.
* sub: add --sub-gray option to display image subs in grayscalewm42012-11-252-1/+7
| | | | | | | | | | MPlayer/mplayer2 still show DVD subtitles in gray. Depending on who you ask, this can be considered a bug or a feature. Include rendering in gray as explicit feature, so the user can decide what is better. This affects all indexed sub bitmaps entering the OSD rendering path. Currently, this means all image subs are affected by this option, but nothing else.
* sub: reimplement -spugauss as --sub-gausswm42012-11-252-0/+8
| | | | | | | | | | | | | | | | Apparently the -spugauss option was popular. The code originally implementing this is gone (scaler stuff in spudec.c). Reimplement it using libswscale to scale and blur image subtitles if the --sub-gauss option is set. The code does some rather lazy padding to allow the blur to spread pixels past the original image bounding box. (This problem exists with normal bilinear scaling too, but is barely noticable.) Technically, this doesn't just blur subtitles, but anything RGBA (or indexed) that enters the OSD rendering path. But only image subtitles produce these OSD formats currently, so no explicit check is done to prevent blurring in other cases.
* manpage: remove --zoom remainswm42012-11-242-6/+3
| | | | The --zoom option has been removed, and is always active.
* manpage: minor fixeswm42012-11-202-2/+2
| | | | | | The typo in options.rst was introduced in a54088. --hardframedrop mentioned in mpv.rst has been merged with --framedrop.
* osd: make the OSD and sub font more customizablewm42012-11-202-30/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make more aspects of the OSD font customizable. This also affects the font used for unstyled subtitles (such as SRT), or when using the --no-ass option. This adds back some customizability that was lost with commit 74e7a1 (osd: use libass for OSD rendering). Removed options: --ass-border-color --ass-color --font --subfont --subfont-text-scale Added options: --osd-color --osd-border --osd-back-color --osd-shadow-color --osd-font --osd-font-size --osd-border-size --osd-margin-x --osd-margin-y --osd-shadow-offset --osd-spacing --sub-scale The font size is now specified in pixels as it would be rendered on a window with a height of 720 pixels. OSD and subtitles are always scaled with the window height, so specifying or expecting an absolute font size doesn't make sense. Such scaled pixel units are used to specify font border etc. as well. (Note: the font size is directly passed to libass. How the fonts are actually rasterized is outside of our control, but in theory ASS font sizes map to "script" pixels and then are scaled to screen size.) The default settings should be about the same, with slight difference due to rounding to the new scales. The OSD and subtitle fonts are not separately configurable. It has limited use and would double the number of newly added options, which would be more confusing than helpful. It could be easily added later, should the need arise. Other small details that change: - ASS_Style.Encoding is not set to -1 for subs anymore (assuming subs use VSFilter direction in -no-ass mode too) - use a different WrapStyle for OSD - ASS forced styles are not applied to OSD
* options: support chapters for --start and --endwm42012-11-201-1/+5
| | | | | | | | | | | | | The --start and --end switch now accept a chapter number. The chapter number is prefixed with '#', e.g. "--start=#2" jumps to chapter 2. The chapter support might be able to replace --chapter completely, but for now I am not sure how well this works out with e.g. DVDs and BDs, and a separate --chapter option is useful interface-wise. (This was supposed to be added in 51503a, but apparently the fixup commit adding it was lost in a rebase. This might also be the reason for the mess-up fixed in 394285.)
* command: export A/V sync difference as "avsync" propertywm42012-11-161-0/+1
| | | | This is the same as on the status line after the "A-V: ".
* demux_mf: allow displaying single image files, various cleanupswm42012-11-161-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable autoprobing for demux_mf, so that image files can be directly displayed with e.g. "mpv file.jpg --pause". (The --pause switch is needed to prevent the window from closing immediately.) Since demux_mf doesn't have any real file format probing and goes by file extension only, move the demuxer down the demuxer list to ensure it's checked last. (ffmpeg's demux_mf equivalent, "image2", probes by file extensions too, and there doesn't seem to be anything that can probe typical image file formats from binary data.) Remove the --mf "w" and "h" suboptions. Don't pass the width/height to the video stream header. Both of these are useless, because the decoder reads the real image size at a later point from the file headers. Remove setting the BITMAPINFOHEADER as well, as vd_lavc doesn't need this. Enable --correct-pts by default. This fixes displaying a single image with vo_vdpau (as mentioned by uau). Keep around a pointer to the sh_video stream header instead of accessing demuxer->video->sh_video. Fixes a crash when deselecting the video track. Note that the format probing is incorrect when opening images from HTTP locations. File extensions don't have to match the actual file format. A correct implementation would require to check the MIME type, or to probe the binary data correctly.
* core: add --keep-open, which doesn't close the file on EOFwm42012-11-161-0/+11
| | | | | | | | | | | | | | | | | The --keep-open option causes mpv not to close the current file. Instead, it will pause, and allow the user to seek around. When seeking beyond the end of the file, mpv does a precise seek back to the previous last known position that produced video output. In some corner cases, mpv might not be able to produce video output at all, despite having created a VO. (Possibly when only 1 frame could be decoded, but the video filter chain queues frames. Then a VO would be created, without sending an actual video frame to the VO.) In these cases, the VO window will not redraw, not even OSD. Based on a patch by coax [1]. [1] http://devel.mplayer2.org/ticket/210#comment:4
* command: add sub_reload and sub_remove commandswm42012-11-161-1/+11
| | | | | | | | | | sub_remove remove an external subtitle track, for whatever this may be needed. sub_reload removes and re-adds an external subtitle track. Also rename sub_load to sub_add, because that seems to be more in line with sub_remove.
* options: add --mute for setting initial audio mute statuswm42012-11-161-0/+4
| | | | | Similar to --volume. Takes this as opportunity to move the variable corresponding to --volume into MPOpts.
* options: rename -sub-fuzziness to -autosub-match, change option valueswm42012-11-162-8/+9
| | | | | | | | | | "--autosub-match" is close to "--autosub", and reflects what this option does slightly better. Replace the magic number option values with choices: --sub-fuzziness=0 becomes --autosub-match=exact --sub-fuzziness=1 becomes --autosub-match=fuzzy --sub-fuzziness=2 becomes --autosub-match=all
* options: rename --cursor-autohide, replace magic number valueswm42012-11-162-2/+3
| | | | | | --cursor-autohide-delay=-2 becomes --cursor-autohide=always --cursor-autohide-delay=-1 becomes --cursor-autohide=no --cursor-autohide-delay=123 becomes --cursor-autohide=123
* options: --field-dominance: replace magic number values with choiceswm42012-11-161-7/+6
| | | | | | --field-dominance=-1 becomes --field-dominance=auto --field-dominance=0 becomes --field-dominance=top --field-dominance=1 becomes --field-dominance=bottom
* options: rename -ss and -endpos, allow relative timeswm42012-11-162-19/+26
| | | | | | | | | | | | | | | | Rename the -ss option to -start, and -endpos to -length. Add a -end option. The -end option always specifies an absolute end time, as opposed to -endpos/-length. All these options (--start, --end, --length) now accept relative times. Percent positions (e.g. "--start=30%") are interpreted as fractions of the file duration. Negative times (e.g. "--start=-1:00) are interpreted relative to the end of the file. Chapters (e.g. "--start=#3") yield the chapter's time position. The chapter support might be able to replace --chapter completely, but for now I am not sure how well this works out with e.g. DVDs and BDs, and a separate --chapter option is useful interface-wise.
* cookies: don't read cookie files from ancient browserswm42012-11-161-2/+1
| | | | | | | | | | | | Remove the code that attempted to read cookie files from well-known browser locations. This code was written for ancient browsers, and only knew about Mozilla and Netscape. While it's possible that these browsers are still alive and still use the same config locations and cookie file formats, the only Mozilla-based browser that still matters is Firefox. Firefox uses a sqlite database for cookies, located in a slightly different config path. Just remove this code.
* options: remove --displaywm42012-11-161-9/+0
| | | | | Was used to set the X11 display. XDisplayName(NULL) does the same, using the DISPLAY environment variable instead.
* options: rename --xineramascreen to --screen, remove magic valueswm42012-11-162-8/+7
| | | | | --xineramascreen=-2 becomes --screen=all --xineramascreen=-1 becomes --screen=current
* video/filter: rename vf_eq2 to vf_eqwm42012-11-162-3/+3
| | | | | vf_eq was deleted earlier, which makes the name vf_eq2 even more awkward.
* vo_opengl: remove osdcolor suboptionwm42012-11-161-6/+0
| | | | | | This wasn't actually used since the old gray-alpha OSD rendering has been removed. Removing the documentation for the vo_opengl_old osdcolor suboption was forgotten as well.
* options, vo_x11: remove -zoom option, make it defaultwm42012-11-161-3/+0
| | | | | | | | | | | | | | The -zoom option enabled scaling with vo_x11. Remove the -zoom option, and make its behavior default. Since vo_x11 has to use libswscale for colorspace conversion anyway, which doesn't do actual extra scaling when vo_x11 is run in windowed mode, there should be no speed difference with this change. The code removed from vf_scale attempted to scale the video to d_width/ d_height, which matters for anamorphic video and the --xy option only. vo_x11 can handle these natively. The only case for which the removed vf_scale code could matter is encoding with vo_lavc, but since that didn't set VOFLAG_SWSCALE, nothing actually changes.
* manpage: various fixeswm42012-11-167-81/+41
|
* Rename directories, move files (step 2 of 2)wm42012-11-121-18/+22
| | | | | | | | | | | | Finish renaming directories and moving files. Adjust all include statements to make the previous commit compile. The two commits are separate, because git is bad at tracking renames and content changes at the same time. Also take this as an opportunity to remove the separation between "common" and "mplayer" sources in the Makefile. ("common" used to be shared between mplayer and mencoder.)
* vo_opengl: disable extended downscaling by defaultwm42012-11-111-1/+1
| | | | | | | | To simplify implementation, the same filter kernel was used for both directions, even when the scaling factors were different. It turns out that people actually did this, and that the resulting rendering errors were rather visible. Disable this feature by default, as fixing it would require structural changes, and it's a useless anyway.
* manpage: vo_opengl: document that srgb subopt changes gammawm42012-11-111-1/+2
|
* cocoa_common: honor the `--geometry` optionStefano Pigozzi2012-11-101-0/+4
|
* Merge branch 'osd_changes' into masterwm42012-11-018-316/+123
|\ | | | | | | | | Conflicts: DOCS/man/en/options.rst
| * manpage: cleanupwm42012-10-246-214/+96
| | | | | | | | | | Removing text about things that have been removed from the code long ago, other fixes.
| * options: remove --ffactor switchwm42012-10-241-8/+0
| | | | | | | | | | | | | | This controlled the generation of the palette for DVD subs if no palette was found. The option name and description is confusing, and it was probably barely useful. Remove the option, and hardcode the behavior to the option's default value.
| * options: remove --subfont-autoscale (changes default font scale)wm42012-10-241-12/+0
| | | | | | | | | | | | | | | | | | The code for this option attempted to emulate the old as-documented behavior. It wasn't very good at it, and now that the old OSD code has been removed, it's entirely pointless. This removes the factor 1.7 with which --subfont-text-scale was multiplied.
| * options: remove subtitle related options that did nothingwm42012-10-241-29/+0
| | | | | | | | | | | | | | Most of these cased working when the OSD was switched to libass, or didn't do anything even before that. Also don't recursively include subreader.h in sub.h.
| * core: disable vf_sub auto-insertionwm42012-10-241-2/+1
| | | | | | | | | | | | | | Since most VOs support rendering subs directly, this doesn't change much. Changes include: vo_null is faster, vo_image doesn't add subtitles by default (while vo_lavc does), vo_caca doesn't render subs (but you couldn't read them anyway).
| * VF: rename vf_ass to vf_subwm42012-10-242-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | This reflects the fact that this filter now renders all types of subtitles, not just ASS subtitles. Always compile this filter, not just on CONFIG_ASS. Note that --no-ass still disables auto-inserting this filter. It's the only way to disable auto-insertion, so keep it even though it's not really ASS specific anymore. --no-ass also disables using libass for rendering text subs directly.
| * manpage: optional input command args can't just be omittedwm42012-10-241-6/+6
| | | | | | | | | | | | | | | | Fix the "grammar" of such commands to be hopefully less confusing. Also, add the "-" for such arguments, which skips optional arguments without changing their default value. Also change some mentions of "mplayer" to "mpv".
| * screenshot: change "screenshot" input commandwm42012-10-243-18/+20
| | | | | | | | | | | | | | "screenshot" now maps to "screenshot subtitles" by default, instead of "screenshot video". Swap the argument order: the more useful argument should come first. Remove the compatibility aliases for numeric choices (e.g. "screenshot 1 0" won't work anymore).
| * screenshot: allow taking screenshots with subtitleswm42012-10-241-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a new screenshot mode "subtitles", which basically takes the video frame as decoded, and renders subtitles into it. This may fail for some pixel formats, because libswscale sucks. If this becomes ever a real problem, the code could be changed to convert the image to RGBA first (or whatever the image writer wants), and then render the subtitles into it. This would avoid the additional image copy needed with vo_xv too. But for now, it seems better to go with the current method in the common case: vo_opengl creates an image copy anyway, and drawing bitmaps to yv12 is better, as no color space conversion is involved in draw_bmp.c's up/downsampling conversion.
| * VO, sub: refactorwm42012-10-242-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD, VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT. Remove draw_osd_with_eosd(), which rendered the OSD by calling VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes a callback as argument. (This basically works like the old OSD API, except multiple OSD bitmap formats are supported and caching is possible.) Remove all mentions of "eosd". It's simply "osd" now. Make OSD size per-OSD-object, as they can be different when using vf_sub. Include display_par/video_par in resolution change detection. Fix the issue with margin borders in vo_corevideo.
| * Remove things related to old OSDwm42012-10-241-24/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To ease changing all the VOs to the new OSD rendering, fallbacks, conversions, support code etc. was left all over the code. Now that all VOs have been changed, all that code is inactive. Remove it. Strip down spudec.c. We don't need the old grayscale and scaling stuff anymore. (Not removing spudec itself yet - I'm not confident that the libavcodec DVD sub decoder is sufficient, and it would also require some hacks to get DVD palette and resolution information from libdvdread to libavcodec.) The option --spuaa, --spualign, --spugauss were used with the old sub scaling code, and don't do anything anymore.
| * Merge branch 'master' into osd_changeswm42012-10-1612-9231/+887
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile command.c libvo/gl_common.c libvo/vo_corevideo.m libvo/vo_opengl.c libvo/vo_opengl_old.c libvo/vo_opengl_shaders.glsl sub/ass_mp.c sub/osd_libass.c sub/sd_ass.c
| * | sub: remove logic for disabling hinting on scaled EOSDwm42012-10-161-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was an extremely obscure setting, as it was used only with vo_gl if its scaled-osd suboption was used. If you really want this, you can set the desired ass-hinting value directly, and there will be literally no loss in functionality. Note that this didn't actually test whether the EOSD was scaled. Basically, it only checked whether vo_gl had the scaled-osd suboption set.
| * | vo_gl, options: remove doublebuffering option (--double)wm42012-10-161-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Useless. It complicated the code and caused flicker, and was useless otherwise. The manpage describes this option as "should not normally be used". One possibly useful effect from the point of view of the user was that vsync was disabled. You can do this with the --vsync option, or by changing X/driver settings directly.
* | | manpage: --codecpath was removedwm42012-11-011-3/+0
| | |
* | | options: remove --hr-mp3-seekwm42012-10-301-9/+0
| | | | | | | | | | | | | | | | | | | | | This didn't do anything anymore. Even before the internal audio demuxer was removed, demux_lavf was used by default for mp3. Use --hr-seek instead.
* | | options: remove --adapterwm42012-10-301-5/+0
| | | | | | | | | | | | | | | This probably didn't do anything. Maybe OpenGL VOs on win32 actually could make use of it, but even then it probably didn't work.
* | | manpage: -benchmark was renamed to -untimedwm42012-10-301-0/+1
| | |
* | | options: rename -ni to -avi-niwm42012-10-302-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | The -ni option does something with the AVI demuxer only. Also fix misleading error messages when the packet queue overflows (it suggests using -ni, which in the typical case of playing NI AVI files will not work, as demux_lavf is used by default).
* | | options, avi: remove -loadidx/-saveidxwm42012-10-301-15/+0
| |/ |/| | | | | This was probably useless even many years ago.
* | manpage: improvements to vo_opengl documentationwm42012-10-151-7/+19
| | | | | | | | | | | | | | | | Mention the FBO format chaos. Some other things were not entirely correct anymore. Also update the "builtin" documentation in vo_opengl.c.
* | input: add input test modewm42012-10-141-0/+7
| | | | | | | | | | | | | | | | | | | | | | In input test mode, key bindings won't be executed, but are shown on the OSD. The OSD includes various information, such as the name of the key, the command itself, whether it's builtin, and the config file location it was defined. The input test mode can be enabled with "--input=test". No effort is spent trying to react to key bindings that normally exit the player; they are treated just like any other binding.
* | core: show quvi page title in window title, clean up libquvi handlingwm42012-10-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clean up handling of libquvi (which resolves URLs of streaming sites into URLs to the actual media playable by mpv). Move the code out of open.c to quvi.c, and invoke it explicitly from mplayer.c, instead of trying to resolve every filename passed to open_stream(). This allows easily passing metadata from the quvi context to the frontend. Expose QUVIPROP_PAGETITLE as "media-title" property, and use that instead of "filename" for the mplayer window title. (For YouTube, this is the video title.) It's cleaner too. Handle a potential reliability issue: check quvi_getprop return values. Since open.c contains barely anything but the open_stream() stub, move that to stream.c and delete open.c.
* | Merge branch 'input_changes' into masterwm42012-10-125-33/+404
|\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: DOCS/man/en/vo.rst etc/input.conf input/input.c m_property.c
| * | commands: use "up" and "down" as 2nd argument for cycle commandwm42012-10-121-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow the values "up" and "down" as step argument for the cycle input command. Previously, this argument was a float, which specified an arbitrary step value and direction (similar to the add command). Instead of "1" and "-1", "up" and "down" is to be used. Float values are still accepted. That capability might be removed in the future, as there's probably hardly any actual use for arbitrary step values.
| * | commands: add print_text input command to print text on the terminalwm42012-10-121-0/+4
| | | | | | | | | | | | | | | In theory, this could take over the role of the get_property slave command, and is more general.
| * | sub: add --ass-style-override option to disable style overrideswm42012-10-122-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are a number of options which modify ASS subtitle rendering. Most of these do things that can interfere with the styling done by subtitle scripts, resulting in incorrect rendering. Add the --ass-style-override option to make it easy to disable all overrides. This helps trouble- shooting, and makes it more practical to use the override features. (You can simply toggle the ass-style-override property at runtime, should one of the style override options break subtitle rendering at a certain point.) This mainly affects whether most --ass-* options are applied, as well as --sub-pos. Some things, like explicit style overrides loaded with --ass-force-style, can't be changed at runtime using the ass-style-override property.
| * | options: add --status-msgwm42012-10-121-0/+4
| | | | | | | | | | | | | | | | | | | | | Replaces the status line with a custom string. This is probably useful for hacking old slave mode applications into working again. Even if not, this might be generally useful.
| * | manpage: document input.conf related thingswm42012-10-124-17/+367
| | | | | | | | | | | | | | | | | | This directly corresponds to DOCS/OUTDATED-tech/slave.txt. Changes from the recent commits are included too.
| * | commands: add more property-option bridge uses, rename some optionswm42012-10-122-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make more properties use the property-to-option bridge to reduce code size and to enforce consistency. Some options are renamed to the same as the properties (the property names are better in all cases). Do some other minor cleanups. One bigger issue was memory management of strings: M_PROPERTY_TO_STRING assumed the strings were statically allocated, and no dynamic allocations could be returned. Fix this in case the need for such properties arises in the future. Get rid of m_property_string_ro(), because it's not always clear that the "action" parameter is M_PROPERTY_SET and the string argument will be used.
| * | options: accept "yes" and "no" only for flagswm42012-10-121-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes the alternative values like "off", "0", "false" etc., and also the non-English versions of these. This is done for general consistency. It's better to have a single way of doing things when multiple ways don't add singificant value. Also update some choices for consistency.
| * | commands: rename "osdlevel" option and property, make it a choicewm42012-10-123-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Rename both the option and property to "osd-level", which fits a bit better with the general naming scheme. Make it a choice instead of an integer range. I failed to come up with good names for the various levels, so leave them as-is. Remove the useless property handler for the "loop" property too.
| * | commands: replace --hardframedrop, change framedropping propertywm42012-10-122-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace --hardframedrop with --framedrop=hard. Rename the framedrop property from "framedropping" to "framedrop" for the sake of making command line options have the same name as their corresponding property. Change the property to accept choice values instead of numeric values. Remove unused/forgotten auto_quality variable.
* | | Rename to "mpv"wm42012-10-128-211/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the name of this project to mpv. Most user-visible mentions of "MPlayer" and "mplayer" are changed to "mpv". The binary name and the default config file location are changed as well. The new default config file location is: ~/.mpv/ Remove etc/mplayer.desktop. Apparently this was for the MPlayer GUI, which has been removed from mplayer2 ages ago. We don't have a logo, and the MS Windows resource files sort-of require one, so leave etc/mplayer.ico/.xpm as-is. Remove the debian and rpm packaging scripts. These contained outdated dependencies and likely were more harmful than useful. (Patches which add working and well-tested packaging are welcome.)
* | | manpage: remove old manpagewm42012-10-121-8099/+0
| | |
* | | vo_opengl: change default FBO formatwm42012-10-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | GL_RGB16 doesn't seem to work universally (e.g. Intel). Use GL_RGB by default, and use GL_RGB16 for "opengl-hq" only. This may require users of Intel GPUs to manually experiment with the fbo-format suboption when using "opengl-hq", as GL_RGB16 doesn't seem to work there in some cases (black screen).
* | | vo_opengl: use PBOs by default with opengl-hqwm42012-10-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's not really known whether PBO use causes problems of any kind (most likely not). They should slightly increase performance. Use them by default with "opengl-hq". Even though PBOs don't have anything to do with rendering quality, "opengl-hq" provides a test bed for features that should be enabled by default, but aren't out of fear for regressions.
* | | vo_opengl: use low quality default settings, add opengl-hq aliaswm42012-10-031-10/+19
| | | | | | | | | | | | | | | | | | | | | | | | Change the default settings for vo_opengl to highest performance and compatibility, but lowest quality. Use bilinear as default scaler. Add "opengl-hq" as alias for high quality settings. This alias uses exactly the same settings as vo_opengl did before this commit.
* | | VO: actually rename VOs gl -> opengl-old, gl3 -> openglwm42012-10-033-209/+212
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This renames vo_gl3 to vo_opengl, and makes it the default. The old vo_gl is still available under "opengl-old". We keep "gl3" as alias to "opengl" for short-term compatibility. For OSX/Cocoa, the autoprobe order changes (prefer the "opengl" over "opengl-old"). Remove "gl_nosw". This was a compatibility alias for "opengl-old", and there's no point in keeping it.
* | | vo_gl3: make it work on OpenGL 2.1wm42012-10-031-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now vo_gl3 should work with standard OpenGL 2.1, as long as the GL_ARB_texture_rg extension is available. Optional features, which require features that are always in OpenGL 3.0, but are available as extensions only in OpenGL 2.1, are automatically disabled. The force-gl2 suboption, which was an unreliable hack to run vo_gl3 in an OpenGL 2.1 context, is removed. Significant changes are done to the extension loader to make it easier to identify optional OpenGL features. Context creation is a bit changed to simplify the code and to handle the fallback better if OpenGL 3 context creation fails, and creating an OpenGL legacy context is attempted. Based on the initial work by Rudolf Polzer <divverent@xonotic.org>, which included making the shader GLSL 1.20 compatible, and more.
* | | Remove useless video filterswm42012-10-031-649/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most of these have very limited actual use, or are even entirely useless. They only serve to bloat the codebase and to make life harder. Drowning users in tons of barely useful filters isn't exactly helpful either. Some of these filters were redundant or marked as obsolete. The dlopen and lua (to be added soon) video filters provide ways to add custom filters. Detailed listing for each filter with reasons (with contributions from divVerent and lachs0r): 1bpp: Replaced by "scale". 2xsai: Pixel art scaling algorithm, useless with lossy video. blackframe: Not very useful. Apparently one use is combining it with scripts, that pass the bmovl: Weirdly complex and insane (using FIFO commands), questionable use. cropdetect: Only sort-of useful when used with scripts, and then it will be very fragile. It's probably better to use the dlopen rectangle filter, or to implement the common use-case in a better way. decimate: Not needed/useful with modern video codecs, is an encoding-only filter. denoise3d: "hqdn3d" is better. detc: Some of the worse deteleciners. dint: Useless, actually crashes. (On an assert in vf.c that is disabled by default in mplayer-svn.) dvbscale: Not even practical, and the same effect can be achieved through other means. eq: Worse/older version of eq2. field: Limited use, available as dlopen filter. fil: Quoting the manpage: This filter is very similar to the il filter but much faster, the main disadvantage is that it does not always work. Especially if combined with other filters it may produce randomly messed up images, so be happy if it works but do not complain if it does not for your combination of filters. filmdint: Kind of redundant with pullup, and slightly worse. fixpts: Never useful. (Most if not all filters have been fixed for PTS.) framestep: Questionable use. For things like creating thumbnails, ffmpeg or --sstep should be used. geq: Limited use, will be redundant with the "lua" filter. halfpack: Useless, probably redundant with "scale". harddup: Useless. hue: Most VOs support this. il: Useless. ivtc: Another of the worse deteleciners. kerndeint: A bad deinterlacer. lavc: For DVB output devices. We removed that support. lavcdeint: A bad deinterlacer, was already deprecated. Still available as --vf=pp=fd. mcdeint: A broken deinterlacer that uses lavc internals. ow: Very slow, barely any quality benefit over "hqdn3d". palette: Done by "scale". perspective: Files with incorrect perspective are extremely rare. About the only real-world use for this is keystone correction, which is usually done in hardware by the projector or by graphics drivers/compositors. pp7: Another useless postprocessing filter with bad and complicated code. Use libpostprocess with "pp" instead. qp: Useless. remove-logo: Redundant with delogo, which is better and more practical. rgbtest: Useless. sab, smartblur, boxblur: Blur filters, redundant to "unsharp". softskip: Does nothing. spp, fspp, uspp: Useless postprocessing filters. "spp" needs ffmpeg internals. "fspp" is the optimized version of the "spp" filter (???), while "uspp" is the slow version (????). Use libpostprocess with "pp" instead. telecine: Evil and useless. Available as dlopen filter for testing purposes. test: Useless. tfields: Useless, probably. tile: Questionable use. Available as dlopen filter. tinterlace: Evil and useless. yuvcsp: Probably useless. yvu9: Redundant with "scale". Also remove the following left-over files: vd_null.c, vqf.h
* | | encode: remove dependency on current ffmpegRudolf Polzer2012-10-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apparently, libav doesn't have the change for the new way to create a libavformat context merged yet. So, we can't use that... Rather, this commit fixes format specific avoptions another way. On the downside, invalid format options are now detected very late, and any attempt to set an option value to +something or -something will append to the previously set option value (this logic can no longer be specific to options of bitflag type, as finding out the option type is what we simply cannot do with this interface).
* | | encode: add options --ovfirst and --oafirstRudolf Polzer2012-09-291-17/+25
| |/ |/| | | | | | | | | This allows to define which stream is to be used as first output stream. This is useful because dvdauthor refuses VOB files where the audio stream is the first stream.
* | options: accept "yes" and "no" only for flagswm42012-09-231-11/+11
| | | | | | | | | | | | | | | | | | | | This removes the alternative values like "off", "0", "false" etc., and also the non-English versions of these. This is done for general consistency. It's better to have a single way of doing things when multiple ways don't add singificant value. Also update some choices for consistency.
* | softvol, ao_pulse: prefer ao_pulse volume control by defaultwm42012-09-231-3/+13
|/ | | | | | | | | | | | | | | | | | --softvol is enabled by default. For most audio outputs, this is a good thing, as they have either their own (bad) soft volume implementation, or control the system mixer. With ao_pulse, the situation is a bit different: it supports per-application volume (i.e. volume control is not really global). More importantly, ao_pulse uses a rather large audio buffer, and changing the volume with mplayer's volume filter has a large delay. With the native ao_pulse volume control, it's instant, because PulseAudio's audio filtering happens at a later stage in its processing pipeline (inaccessible for mplayer). This means native volume control should really be allowed for ao_pulse, while it's the reverse for other audio outputs. Make --softvol a choice option, and add a new "auto" choice. This is default and will use PA's volume control with ao_pulse, and mplayer's volume filter otherwise (i.e. the old softvol behavior).
* encode: video encoding now supported using mencoder-like optionsRudolf Polzer2012-09-185-4/+470
|
* vf_rectangle: remove as it is very dirty and we have a replacement nowRudolf Polzer2012-09-181-1/+0
|
* options: change --vid, --aid, --sid optionswm42012-09-181-20/+12
| | | | | | | | | | | | The --vid, --aid, --sid options now accept the values 'off' and 'auto', instead of having the user deal with the numeric values -2 and -1. The numeric values are not allowed anymore. Remove the --audio option. It was probably meant as compensation option for --no-audio. There are no such options for sub/video, and it was not documented, so just remove it. The replacement is "--aid=auto". Also do some updates to the manpage.
* options: change --loop option, and extend choice option typewm42012-09-182-2/+4
| | | | | | | | | | | | | | | | | | | | | | The --loop option takes slightly different parameters now. --loop=0 used to mean looping forever. Now it means looping is disabled (this is more logical: 2 means playing 2 more times, 1 means playing 1 more time, and 0 should mean playing not again). Now --loop=inf must be used to enable looping forever. Extend choice types to allow an optional range of integers as values. If CONF_RANGE is added to the flags of a m_option_type_choice option, m_option.min/max specify a range of allowed integer values. This can be used to remove "special" values from make integer range options. These special values are unintuitive, and sometimes expose mplayer internals to the user. The (internal) choice values can be freely mixed with the specified integer value range. If there are overlaps, the choice values are preferred for conversion to/from strings. Also make sure the extension to choice options works with properties. Add the ability to step choice properties downwards, instead of just upwards.
* options: remove -subalignwm42012-09-181-8/+0
| | | | | | It can't be re-implemented, because this isn't supported by libass. The -subalign option and the associated sub-align slave property did nothing. Remove them.
* rawaudio: use mplayer audio format for format optionwm42012-09-181-5/+2
| | | | | | | | | | | | | | | The rawaudio demuxer had a rather hard to use way to set the audio format with the --rawaudio=format=value option. The user had to pass a numeric value, which then was set as wFormatTag member in the WAVEFORMATEX header. Make it use the mplayer audio format (the same as --af=format=value). Add a new internal pseudo audio codec tag, which is hopefully unused, which makes ad_pcm use the value in wFormatTag as internal mplayer audio format. Playing non-PCM formats is disabled. (At least AC3 can be played directly.)
* bluray: add bd:// as stream prefixwm42012-09-181-3/+3
| | | | The existing short prefix, br://, was not very intuitive.
* manpage: remove references to bitmap fontswm42012-09-182-7/+1
| | | | Support for bitmap fonts was removed a while ago.
* libaf: rename af_format.h to format.hwm42012-08-291-1/+1
| | | | | | | | | | af_format.h declares some symbols which are defined in format.c. The fact that af_format.c is a completely unrelated file is rather confusing. Having the header and implementation file use the same base name is more uniform. (af_format.c is the audio conversion filter, while af_format.h and format.c are about audio formats and their properties.) Also fix all source files which include this file.
* DOCS: add big picture overview over the codewm42012-08-261-0/+206
| | | | | Apparently this was useful for some. Isn't as detailed as general.txt and others, but broader and less outdated.
* DOCS: remove outdated/useless fileswm42012-08-252-34/+0
|
* Merge remote-tracking branch 'cantabile/manpage_fixes'wm42012-08-255-121/+68
|\
| * manpage: update default jpeg quality for vo_imagecantabile2012-08-241-1/+1
| |
| * manpage: update default value of --softvol-maxcantabile2012-08-241-1/+1
| |
| * manpage: --screenshot-template: update %n, add %{prop}cantabile2012-08-241-6/+14
| | | | | | | | | | | | Explanation of %{prop} taken from the commit message of commit 12c44610ad6963bb58c01cc4415cc7befef386e1 (screenshot: make screenshot filenames configurable).
| * manpage: update the list of available screenshot formatscantabile2012-08-241-3/+7
| | | | | | | | Also update the default value of --screenshot-jpeg-quality
| * manpage: update example of the status linecantabile2012-08-241-3/+3
| |
| * manpage: fix ambiguous statement about --(no-)keepaspectcantabile2012-08-241-1/+1
| |
| * manpage: mention that videos' colormatrix and color range flags are honoredcantabile2012-08-241-2/+4
| |
| * manpage: don't mention nonexistent VOs, command line switches, etc.cantabile2012-08-243-84/+17
| | | | | | | | Very likely doesn't remove all outdated things.
| * manpage: fix various typoscantabile2012-08-245-20/+20
| |
* | vf_dlopen: add a generic filter to load external filtersRudolf Polzer2012-08-231-0/+20
|/ | | | | | Usage: -vf dlopen=filename.so:args... Examples of such filters are provided in TOOLS/vf_dlopen/
* manpage: correct the definition of full range videocantabile2012-08-211-1/+1
|
* manpage: document -use-filename-title removal/replacementwm42012-08-201-0/+1
|
* VO: remove vo_directfb2 and vo_directxwm42012-08-161-30/+0
| | | | | | | | | | | | While being able to play videos on a framebuffer device would be nice, I didn't need it, and couldn't even test it (buggy nvidia binary drivers that disable framebuffers, buggy DirectFB that crashes when using the X11 backend). It's just dead weight, get rid of it. vo_directx was very horrible, and by today it's mostly useless. I didn't remove it, because there was that-guy who told me in amazement how awesome mplayer was, because it was the only video player fast enough for fast playback on his system when using vo_directx. Sorry, that-guy.
* Remove dvdnav support (DVD menus)wm42012-08-161-34/+1
| | | | | | | | | | | | | | | | When the internal mplayer MPEG demuxer was removed (commit 1fde09db), the default demuxer when using dvdnav was set to libavformat. Now it turns out that this doesn't work with libavformat. It will terminate playback right after the audio runs out (instead of looping it like the video, or whatever it's supposed to do). I'm not sure what exactly the problem is, but since 1. even mplayer-svn can't handle DVD menus directly (missing highlights), 2. DVD menus are essentially worthless, and 3. I don't directly watch DVDs, don't bother with it and remove it. For basic playback, there's still libdvdread support. Also, use pkg-config for libdvdread, and drop support for in-tree libdvdread. Remove support for in-tree libdvdcss as well.
* vf_expand: remove OSD supportwm42012-08-161-41/+2
| | | | | | | | It's not clear why this video filter supported OSD rendering. The manpage says: "Can be used for placing subtitles/OSD in the resulting black bands." But every single VO already does this if vf_expand adds black borders. This feature is 100% pointless.
* core: intentionally cripple slave modewm42012-08-151-10/+15
| | | | | | | | | | Rename -slave to -slave-broken to prevent slave mode applications from working. Do this to prevent horrible user experiences, in case someone should attempt to try this version of mplayer with smplayer and others. This also makes it clear that we don't intend to keep slave mode compatibility, because the slave mode protocol is horrible and bad. See the changes in options.rst for further reasons and comments.
* vo_sharedbuffer: remove this VOStefano Pigozzi2012-08-151-11/+0
| | | | | | | | | | | | | | Since slave mode is not planned to be kept, this VO is useless and I'm removing it. This VO was useful for OSX GUIs. Since in cocoa you can't embed views in windows from other processes, this VO was writing to a sharedbuffer with mmap. The OSX GUIs would then read from the buffer and render the image with an external renderer. If in the future we will want to support GUIs we will need to reasearch the IOSurface framework. This allows to share kernel managed image data across processes and integrates well with OpenGL.
* manpage: document gl3, direct3d, portaudio, remove v4l2wm42012-08-082-18/+308
| | | | | | | | | The documentation is mostly taken from the help text embedded in the code of each output driver. vo_v4l2 and ao_v4l2 have been removed. Minor modifications to vo_xv, vo_directx and vo_gl.
* manpage: document per-file optionswm42012-08-071-0/+42
|
* manpage: add initial documentation about changeswm42012-08-072-0/+156
| | | | | | | Documents changes from mplayer-svn and mplayer2. Most of this should probably not be in the manpage, but on a website. But there is no website yet.
* manpage: reflect recent VO changeswm42012-08-061-108/+33
|
* image_writer: rename "filetype" option to "format"wm42012-08-061-1/+1
| | | | | | | Although slightly less precise, this sounds less clunky. This change also causes the --screenshot-filetype option to be renamed to --screenshot-format.
* stream: add new stream control command STREAM_CTRL_GET_NUM_TITLESmplayer-svn2012-08-031-0/+1
| | | | | | | | | This provides the total number of titles (aka tracks) of CDs / VCDs / DVDs. Additionally, add a titles property to the get_property slave command. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34474 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: ib
* x11: change stop_xscreensaver default to 1 to be more user-friendlymplayer-svn2012-08-031-2/+3
| | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34076 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: reimar
* vf_stereo3d.c: half-width side-by-side formats for stereo3dmplayer-svn2012-08-031-0/+8
| | | | | | | | | Half-width side-by-side formats for stereo3d. Patch by Steaphan Greene [sgreene cs.binghamton.edu] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33877 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: reimar
* Remove teletext supportwm42012-08-032-31/+0
| | | | | | | | Teletext requires special OSD support. Because I can't even test teletext, I can't restore support for it. Since teletext can be considered ancient and obscure, and since it doesn't make sense to keep the remaining teletext code without being able to use it, I'm removing it.
* mplayer: rip out --capture supportwm42012-08-021-14/+0
| | | | | | | While this was an interesting idea, it wasn't actually useful. Basically it dumped the raw data (as requested by the demuxer) into a file. The result is only useful if the file format was raw or maybe some MPEG packet stream, but not with most modern file formats.
* VO: remove VO direct renderingwm42012-08-022-7/+2
| | | | | | | | | | | | | | | | | | | This was disabled by default, and could be enabled with -dr. It was disabled by default because it was buggy: there were issues with OSD corruption. It wasn't entirely sane for OpenGL based VOs either. OpenGL can chose to drop mapped pixel buffer objects, requiring the application to map and fill the buffer again. But there was no mechanism in mplayer to fill the lost buffer again. (It seems this rarely happened in practice, though.) On the other side, users liked the --dr flag, because it promised them more speed. I'm not sure if it actually helped with speed, but it's unlikely it had any real advantages on modern systems. In order to evade the --dr cargo culting in mplayer config files, it's best to get rid of it.
* stream: remove stream_cuewm42012-08-021-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | stream_cue, which provided the cue:// protocol handler, was extremely hacky and didn't even manage to play some samples I tried. Remove it, because it's plain unneeded. There is much better support for .cue files elsewhere: - libcdio can play pairs of .cue/.bin files: mplayer cdda:// --cdrom-device=your_cue_file.cue Note that if the .cue file is not accompanied by a .cue file, but an encoded file for example, this most likely won't work. - mplayer can play .cue files directly: mplayer your_cue_file.cue This works, even if the .cue file comes with encoded files that are not .bin . Note that if you play .bin files, mplayer will assume a specific raw audio format. If the format doesn't match, mplayer will play noise and destroy your speakers. Note that format mismatches are extremely common, because the endianness seems to be essentially random. (libcdio uses a clever algorithm to detect the endian, and doesn't have this problem.)
* AF: remove af_gate and af_compwm42012-08-021-9/+0
| | | | | | | To quote the manpage: "This filter is untested, maybe even unusable." And it seems they were never touched again after it was added many years ago (except for cosmetic changes). Just get rid of them.
* man: update man with vo_corevideo and vo_sharedbufferStefano Pigozzi2012-08-021-14/+16
| | | | | Conflicts: DOCS/man/en/vo.rst
* man: update documentation related to screenshotswm42012-08-023-16/+97
|
* man: remove documentation for deleted stuffwm42012-08-024-448/+38
| | | | Also make some minor cosmetic changes.
* manpage: merge new manpagewm42012-08-027-0/+6088
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | About a year ago, ubitux converted most of the old manpage from the hard to maintain nroff format to reStructuredText. This was not merged back into the master repository immediately. The argument was that the new manpage still required work to be done. However, progress was very slow. Even worse: the old manpage wasn't updated, because it was scheduled for deletion, and updating it would have meant useless work. Now the situation is that the new manpage still isn't finished, and the old manpage is grossly out of sync with the player. This is not helpful for users. Additionally, keeping the new manpage in a separate branch, while the normal development repository for code had the old manpage, was very inconvenient, because you couldn't just update the documentation in the same commit as the code. Even though the new manpage isn't finished yet, merging it now seems to be the best course of action. Squash-merge the manpage development branch [1], revision e89f5dd3f2, which branches from the mplayer2 master branch after revision 159102e0cb. Committers: * Clément Bœsch <ubitux@gmail.com> (Initial conversion to RST.) * Uoti Urpala <uau@mplayer2.org> (Many updates.) * Myself (Minor edits.) Most text of the manpage has been directly taken from the old manpage, because this is a conversion, not a complete rewrite. [1] http://git.mplayer2.org/uau/mplayer2.git/log/?h=man
* mplayer: turn playtree into a list, and change per-file option handlingwm42012-07-311-123/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: - There is no playtree anymore. It's reduced to a simple list. - Options are now always global. You can still have per-file options, but these are optional and require special syntax. - The slave command pt_step has been removed, and playlist_next and playlist_prev added. (See etc/input.conf changes.) This is a user visible incompatible change, and will break slave-mode applications. - The pt_clear slave command is renamed to playlist_clear. - Playtree entries could have multiple files. This is not the case anymore, and playlist entries have always exactly one entry. Whenever something adds more than one file (like ASX playlists or dvd:// or dvdnav:// on the command line), all files are added as separate playlist entries. Note that some of the changes are quite deep and violent. Expect regressions. The playlist parsing code in particular is of low quality. I didn't try to improve it, and merely spent to least effort necessary to keep it somehow working. (Especially ASX playlist handling.) The playtree code was complicated and bloated. It was also barely used. Most users don't even know that mplayer manages the playlist as tree, or how to use it. The most obscure features was probably specifying a tree on command line (with '{' and '}' to create/close tree nodes). It filled the player code with complexity and confused users with weird slave commands like pt_up. Replace the playtree with a simple flat playlist. Playlist parsers that actually return trees are changed to append all files to the playlist pre-order. It used to be the responsibility of the playtree code to change per-file config options. Now this is done by the player core, and the playlist code is free of such details. Options are not per-file by default anymore. This was a very obscure and complicated feature that confused even experienced users. Consider the following command line: mplayer file1.mkv file2.mkv --no-audio file3.mkv This will disable the audio for file2.mkv only, because options are per-file by default. To make the option affect all files, you're supposed to put it before the first file. This is bad, because normally you don't need per-file options. They are very rarely needed, and the only reasonable use cases I can imagine are use of the encode backend (mplayer encode branch), or for debugging. The normal use case is made harder, and the feature is perceived as bug. Even worse, correct usage is hard to explain for users. Make all options global by default. The position of an option isn't significant anymore (except for options that compensate each other, consider --shuffle --no-shuffle). One other important change is that no options are reset anymore if a new file is started. If you change settings with slave mode commands, they will not be changed by playing a new file. (Exceptions include settings that are too file specific, like audio/subtitle stream selection.) There is still some need for per-file options. Debugging and encoding are use cases that profit from per-file options. Per-file profiles (as well as per-protocol and per-VO/AO options) need the implementation related mechanisms to backup and restore options when the playback file changes. Simplify the save-slot stuff, which is possible because there is no hierarchical play tree anymore. Now there's a simple backup field. Add a way to specify per-file options on command line. Example: mplayer f1.mkv -o0 --{ -o1 f2.mkv -o2 f3.mkv --} f4.mkv -o3 will have the following options per file set: f1.mkv, f4.mkv: -o0 -o3 f2.mkv, f3.mkv: -o0 -o3 -o1 -o2 The options --{ and --} start and end per-file options. All files inside the { } will be affected by the options equally (similar to how global options and multiple files are handled). When playback of a file starts, the per-file options are set according to the command line. When playback ends, the per-file options are restored to the values when playback started.
* commands: add show_tracks_osd command to display audio and subtitle tracks ↵wm42012-07-281-0/+3
| | | | | | | | | on OSD The command lists the audio and subtitle tracks in the current file on the OSD. It also marks the currently active streams. Video streams are not shown, as files with more than one video stream are exceedingly rare.
* commands: add show_chapters_osd command to display chapters on OSDwm42012-07-281-0/+2
| | | | | | | | The command lists the chapters in the current file on the OSD. It also marks the current chapter. This is actually a cheap replacement for the chapter select libmenu functionality.
* Rename DOCS/tech/ to DOCS/OUTATED-tech/wm42012-07-2822-0/+0
| | | | | | | | | | While DOCS/tech/ contains lots of documentation about mplayer's internals, most of it seems outdated, and hasn't been touched in many years. On the other hand, there still might be useful things in there, but it's hard to tell which parts. Instead of deleting all it, rename the directory to "warn" potential developers that the documentation is completely outdated.
* Remove DOCS/xmlwm42012-07-2819-3757/+0
| | | | | | This contained _some_ documentation, but it was all old, crappy, barely maintained. Even if it was maintained, uau hasn't merged back changes for years.
* Merge remote-tracking branch 'origin/master'wm42012-07-28100-215710/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: .gitignore bstr.c cfg-mplayer.h defaultopts.c libvo/video_out.c The conflict in bstr.c is due to uau adding a bstr_getline function in commit 2ba8b91a97e7e8. This function already existed in this branch. While uau's function is obviously derived from mine, it's incompatible. His function preserves line breaks, while mine strips them. Add a bstr_strip_linebreaks function, fix all other uses of bstr_getline, and pick uau's implementation. In .gitignore, change vo_gl3_shaders.h to use an absolute path additional to resolving the merge conflict.
| * docs: delete outdated translated manpages/docsUoti Urpala2012-07-1699-215529/+0
| | | | | | | | | | | | | | | | | | Delete all manpages and XML documentation in languages other than English. The XML documentation was badly out of date. The content of translated manpages was somewhat out of date, and manpage formatting will change to use reStructuredText instead of raw troff format. If updated translations are created for some languages later, I think it's better to maintain those outside the main repository.
| * build, codec-cfg.c: simplify builtin codecs.conf handlingUoti Urpala2012-07-161-181/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The player can read codec mapping (codecs.conf) from an external file or use embedded defaults. Before, the defaults were stored in the player binary in the form of final already-parsed data structures. Simplify things by storing the text of the codecs.conf file instead, and parse that at runtime the same way an external file would be parsed. To create the previous parsed form, the build system first compiled a separate binary named "codec-cfg", which parsed etc/codecs.conf and then wrote the results as a C data structure that could be compiled into the program. The new simple conversion of codecs.conf into a C string is handled by the new script TOOLS/file2string.py. After removing the codec-cfg binary, HOST_CC is no longer used for anything. Remove the --host-cc configure option and associated logic. Also remove the codec2html and codec-cfg-test functionality. Building those was already broken and nobody cared. There was a broken 3-character-long "fourcc" entry in etc/codecs.conf. This happened to be accepted before but triggered a parse error after the changes. Remove the broken entry and make the parsing functions explicitly test for this error.
* | vo_gl: add noise filterreimar2012-02-091-0/+3
|/ | | | | | | | | | Add disabled feature: noise filter for vo_gl. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34014 b3059339-0415-0410-9bf9-f77b7e298cf2 Hook up -vo gl noise support. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34015 b3059339-0415-0410-9bf9-f77b7e298cf2
* core: add screenshot mode for actual VO window contentswm42011-11-251-2/+9
| | | | | | | | | | | | | | The screenshot command normally converts the currently displayed video frame to an image. Add support for an alternative screenshot mode that is supposed to capture the real window contents. Such a screenshot contains a possibly scaled version of the frame, the OSD, and subtitles. Add a default key binding Alt+s for taking screenshots in this mode. This needs special VO support, and might not work with all VOs (this commit does not yet contain an implementation for any VO, only the infrastructure).
* libmenu: remove OSD menu functionality (--menu)Uoti Urpala2011-10-251-28/+3
| | | | | | | | | | Something like the OSD menu functionality could be useful. However the current implementation has several problems and would require a relatively large amount of work to get into good shape. As far as I know there are few users of the existing functionality. Nobody is working on the existing code and keeping it compiling at all while changing other code would require extra work. So delete the menu code and some related code elsewhere that's used by nothing else.
* video, options: implement better YUV->RGB conversion controlwm42011-10-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rewrite control of the colorspace and input/output level parameters used in YUV-RGB conversions, replacing VO-specific suboptions with new common options and adding configuration support to more cases. Add new option --colormatrix which selects the colorspace the original video is assumed to have in YUV->RGB conversions. The default behavior changes from assuming BT.601 to colorspace autoselection between BT.601 and BT.709 using a simple heuristic based on video size. Add new options --colormatrix-input-range and --colormatrix-output-range which select input YUV and output RGB range. Disable the previously existing VO-specific colorspace and level conversion suboptions in vo_gl and vo_vdpau. Remove the "yuv_colorspace" property and replace it with one named "colormatrix" and semantics matching the new option. Add new properties matching the options for level conversion. Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv and vf_scale, and all can change it at runtime (previously only vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion matrix generation as vo_gl instead of libvdpau functionality; the main functional difference is that the "contrast" equalizer control behaves somewhat differently (it scales the Y component around 1/2 instead of around 0, so that contrast 0 makes the image gray rather than black). vo_xv does not support level conversion. vf_scale supports range setting for input, but always outputs full-range RGB. The value of the slave properties is the policy setting used for conversions. This means they can be set to any value regardless of whether the current VO supports that value or whether there currently even is any video. Possibly separate properties could be added to query the conversion actually used at the moment, if any. Because the colorspace and level settings are now set with a single VF/VO control call, the return value of that is no longer used to signal whether all the settings are actually supported. Instead code should set all the details it can support, and ignore the rest. The core will use GET_YUV_COLORSPACE to check which colorspace details have been set and which not. In other words, the return value for SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace conversion handling exists at all, and VOs have to take care to return the actual state with GET_YUV_COLORSPACE instead. To be changed in later commits: add missing option documentation.
* options, subs: add --ass-vsfilter-aspect-compatharklu2011-08-122-0/+23
| | | | | | | | | Add option --ass-vsfilter-aspect-compat and corresponding property ass_vsfilter_aspect_compat. The setting controls whether to enable the emulation of traditional VSFilter behavior where subtitles are stretched if the video is anamorphic (previously always enabled for native SSA/ASS subtitles). Enabled by default. Add 'V' as a new default keybinding to toggle the property.
* manpage: improve vo_gl "stereo" suboption descriptionptt2011-07-061-19/+21
| | | | | | | Correct suboption stereo descriptions, and reformat to be compliant with other sections. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33788 b3059339-0415-0410-9bf9-f77b7e298cf2
* vf_stereo3d: Add support for converting to interleaved 3Dreimar2011-07-061-0/+15
| | | | | | | | | | | | | | | | | | | | | | Patch by Steaphan Greene [sgreene cs.binghamton.edu] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33648 b3059339-0415-0410-9bf9-f77b7e298cf2 Improve stereo3d interleaved man page description. Patch by Steaphan Greene [sgreene cs.binghamton.edu] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33689 b3059339-0415-0410-9bf9-f77b7e298cf2 Change memcpy_pic to force it to never write to image parts between width and stride if creating a row-interleaved format, otherwise the second memcpy_pic might overwrite what the first wrote. Changing the first should not be necessary but might result in better performance. Patch by Steaphan Greene [sgreene cs.binghamton.edu] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33690 b3059339-0415-0410-9bf9-f77b7e298cf2
* vf_delogo: allow to change the rectangle based on the timecigaes2011-07-061-0/+4
| | | | | | | | | | NOTE: the memory for the "file" argument will be leaked; dynamic options are not automatically freed. Not fixing that now as I might implement more general handling later. -uau git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33488 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33498 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: use upper case names for some keysib2011-06-291-4/+4
| | | | | | | Change some key names to upper case and to match the names used in input.conf bindings. Most of them already were in this form. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33382 b3059339-0415-0410-9bf9-f77b7e298cf2
* ao_rsound: add new RSound audio output driverHans-Kristian Arntzen2011-06-261-0/+15
|
* vo_xvmc: drop XvMC supportUoti Urpala2011-05-091-40/+6
| | | | | | | | | Due to libavcodec changes vo_xvmc would have needed some modifications to keep working. However, I think there's little real demand for XvMC, so I'll just drop XvMC support. XvMC only supported MPEG-2, making it of very limited usefulness nowadays, plus the vo_xvmc implementation was not high quality and never worked particularly well or reliably anyway.
* ao_pcm, core: use new API in ao_pcm, change timing with itUoti Urpala2011-05-051-5/+0
| | | | | | | | | | | | | | | | | Change ao_pcm to use the new audio output driver API and clean up some of the code. Rewrite the logic controlling how playback timing works when using -ao pcm. Deprecate the "fast" suboption; its only effect now is to print a warning, but it's still accepted so that specifying it is not an error. Before, timing with -ao pcm and video enabled had two possible modes. In the default mode playback speed was rather arbitrary - not realtime, but not particularly fast. -ao pcm:fast tried to play back at maximum video playback speed - mostly succeeding, but not quite guaranteed to work in all cases. Now the default is to play at realtime speed. The -benchmark option can now be used to get faster playback (same as the video-only case). In the audio-only case playback is always maximum speed.
* Merge branch 'mplayer1_changes'Uoti Urpala2011-05-022-0/+69
|\
| * stream: http: Allow setting custom http headercehoyos2011-04-131-0/+29
| | | | | | | | | | | | Patch by Nikolay Nikolaev, nicknickolaev yahoo com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33082 b3059339-0415-0410-9bf9-f77b7e298cf2
| * options: add -gamma (was only accessible from slave mode before)cehoyos2011-04-131-0/+5
| | | | | | | | | | | | Patch by Kevin DeKorte, kdekorte at gmail git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33064 b3059339-0415-0410-9bf9-f77b7e298cf2
| * OSD: support displaying fractional part of current positionUoti Urpala2011-04-122-0/+35
| | | | | | | | | | | | | | | | Add option -osd-fractions which enables display of fractional seconds when showing the current playback time on OSD. Based on a patch from Christian <herr.mitterlehner@gsmpaaiml.com> but with several modifications.
* | input: rewrite -key-fifo-size limiting logicUoti Urpala2011-05-021-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of strictly limiting the number of total entries in the internal fifo, make the overall buffer bigger and try to limit entries based on how many bound commands they're expected to generate. Now doubleclick and button down events aren't counted for that limit. Normally the sequence down-doubleclick-up generates at most one command, so this better matches the quantity we actually want to limit. Also add a mechanism to clear the button combination state kept by input.c when the fifo is full; this avoids "stuck button" problems due to button release events being dropped. The key combination state clearing is partially based on MPlayer 1 changes by Reimar Döffinger (though overall the effects of this commit are quite different). It still doesn't make "stuck button" problems completely impossible; at least if the VO gets closed while a button was down then nothing will send a button up event or reset state.
* | input: modify interpretation of doubleclick eventsUoti Urpala2011-05-021-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | The code combining button presses into multibutton commands prevented single click commands from triggering if a doubleclick event had been generated from the same button press. As a result using the mouse wheel to seek worked very badly. Special-case doubleclick events in the event interpretation code to avoid this issue. This changes the sequence of generated "keys" for press-release-press-release from MOUSE_BTN0 MOUSE_BTN0-MOUSE_BTN0_DBL MOUSE_BTN0_DBL to MOUSE_BTN0 MOUSE_BTN0_DBL MOUSE_BTN0. "Keys" like MOUSE_BTN0-MOUSE_BTN0_DBL will never be generated now; any existing configuration files using those need to be changed.
* | manpage: restore -lavfdopts doc accidentally removed in d76ad5f2Uoti Urpala2011-04-201-0/+37
| | | | | | | | | | | | | | | | | | For some reason the -lavfdopts option was documented under MEncoder options (despite not being MEncoder-specific), and was removed together with MEncoder documentation in commit d76ad5f227. Restore the documentation and convert it from its own section to normal option documentation form. Also fix the example to actually work with current lavf.
* | subs: options: add -sub-pathsClément Bœsch2011-04-201-9/+26
| |
* | options: drop support for numeric -demuxer valuesUoti Urpala2011-02-221-7/+1
|/ | | | | | | Drop support for specifying demuxer types by numeric ID (options -demuxer, -audio-demuxer and -sub-demuxer). Stop printing the numeric values in "-demuxer help" output. Convert the list of DEMUXER_TYPE_XXX defines to "enum demuxer_type".
* DOCS/xml/en: remove various outdated documentationUoti Urpala2011-02-159-10952/+43
| | | | | | | | | | The XML documentation was badly outdated, with various obsolete, useless and and sometimes actively harmful advice. Delete a lot of the obsolete stuff, without spending much effort to replace it for now. In the FAQ section I removed some questions completely; in other cases I only removed the answer if I thought the entry might be worth keeping but the answer would need to be updated.
* manpage: remove BUGS section, misc fixesUoti Urpala2011-02-011-22/+4
| | | | | | | About the only useful part of the BUGS section on the manpage was a link to mplayerhq.hu, and that doesn't really apply any more (includes references to Subversion etc). Remove that section and update/remove some outdated info.
* vo_zr2: drop Zoran supportUoti Urpala2011-01-311-122/+0
| | | | | | | There were multiple files specific to Zoran support, and they also depended on internal FFmpeg headers (so it would probably have been hard to get them to compile now even if you tried). It's obsolete now, so just drop the whole mess.
* vo_dxr2, ao_dxr2: drop dxr2 supportUoti Urpala2011-01-311-97/+1
| | | | | | dxr2 support had been broken quite a while and nobody noticed. There were finally commits to fix it in the svn repo, but rather than apply those I'll just drop dxr2 support.
* vidix: drop VIDIX supportUoti Urpala2011-01-312-230/+10
| | | | | | | | | | | | | By now VIDIX is too obscure to justify the amount of code and complexity it requires in the sources. Although there is no pressing need to drop it just now from a code point of view, I'll rather remove it before release than release with VIDIX support and then drop it later. Some of the manpage mentions of VIDIX were in "this option supported for these VOs" lists that looked outdated and failed to mention vdpau for example. Replace such incorrect lists with a generic "not supported for all VOs" mention.
* DOCS/tech/codecs.conf.txt: add notes about BE/LE colorspacescompn2011-01-311-1/+5
| | | | | | Add some notes about BE/LE colorspaces and fix a small typo. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32769 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: don't use old "--with-extralibdir" configure optiondiego2011-01-317-7/+7
| | | | | | | Replace mentions of obsolete '--with-extralibdir' configure option by '--extra-ldflags'. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32748 b3059339-0415-0410-9bf9-f77b7e298cf2
* libfaad2:/ Remove forked internal libfaad2 copydiego2011-01-319-310/+0
| | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32741 b3059339-0415-0410-9bf9-f77b7e298cf2 Remove AAC/FAAD2 installation instructions. There is nothing special about building and installing FAAD2, so there is no longer a need to keep maintaining instructions for it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32742 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/tech/: remove several obsolete filesUoti Urpala2011-01-2917-2544/+0
| | | | | Some of the files contain some usable stuff, but overall they're obsolete enough that it's better to remove the current versions.
* DOCS/man/zh_CN: sync with en/mplayer.1 rev. 32699jrash2011-01-291-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32718 b3059339-0415-0410-9bf9-f77b7e298cf2
* Merge branch 'sub'Uoti Urpala2011-01-261-13/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * sub: sub/OSD: move some related files to sub/ subtitles: options: enable -ass by default subtitles: change default libass rendering style demux_mkv, chapters: change millisecond arithmetic to ns cleanup: rename ass_* functions to mp_ass_* subs: use correct font aspect ratio for libass + converted subs cleanup: some random minor code simplification and cleanup vf_vo: fix EOSD change detection bug sd_ass: remove subreader use, support plaintext markup subtitles: style support for common SubRip tags and MicroDVD core: ordered chapters: fix bad subtitle parameter subs/demux: don't try to enable sub track when creating it subtitles/demux: store duration instead of endpts in demux packets subtitles: add framework for subtitle decoders options: add special -leak-report option subtitles: remove code trying to handle text subs with libavcodec cleanup: move MP_NOPTS_VALUE definition to mpcommon.h subtitles: move global ass_track to struct osd_state core: move most mpcommon.c contents to mplayer.c core: move global "subdata" and "vo_sub_last" to mpctx subtitles: remove sub_last_pts hack options: move -noconfig to option struct, simplify
| * subtitles: options: enable -ass by defaultUoti Urpala2011-01-261-13/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are still some problems with -ass. For example some other subtitle options won't work the same way or at all with it enabled, and inserting the video filter for VOs that lack native rendering support won't work with different colorspaces. However I think that the benefit from styling support outweights those disadvantages, and also that the "discoverability" of features is better this way; it will be easier for people who encounter problems to find -noass than for people who see no styling to find out that they could add it with -ass. Enable -ass by default. Also fix other outdated information in the manpage entries for -ass and -fontconfig.
* | manpage: document -playlist being unsafe in its option descriptionUoti Urpala2011-01-241-0/+9
|/ | | | | | | This really should have been added to the manpage at the start of the previous decade. There's still bad advice about -playlist in the XML docs, but I'll remove that later when purging more obsolete/wrong stuff from there.
* manpage: Remove forgotten "MPlayer only" notesClément Bœsch2011-01-091-5/+5
|
* manpage: Remove "MPlayer only" notesClément Bœsch2011-01-061-16/+16
|
* vo_vdpau: allow "deint=-N" to specify mode without enabling deintUoti Urpala2011-01-041-10/+13
| | | | | | | | | Allow negative values of the "deint" parameter and make them select the same deinterlacing mode as the corresponding positive value, but without enabling deinterlace on startup. This is useful for configuration files. Also tweak the overall manpage description of vo_vdpau a bit to make it sound less as if the VO would be for hardware acceleration only.
* manpage: Remove MEncoder referencesClément Bœsch2010-12-251-3808/+25
|
* Merge branch 'hr-seek'Uoti Urpala2010-12-202-8/+41
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * hr-seek: input: add default keybindings Shift+[arrow] for small exact seeks input: support bindings with modifier keys for X input core: audio: make ogg missing audio timing workaround more complex core: add support for precise non-keyframe-limited seeks core: add struct for queued seek info commands: add generic option -> property wrapper options: add "choice" option type, use for -pts-association-mode core: remove looping in update_video(), modify command handling a bit core: seek: use accurate seek mode with audio-only files core: avoid using sh_video->pts as "current pts" libvo: register X11 connection fd in input event system core: timing: add special handling of long frame intervals core: move central play loop to a separate function Conflicts: DOCS/tech/slave.txt
| * input: add default keybindings Shift+[arrow] for small exact seeksUoti Urpala2010-12-201-0/+4
| |
| * core: add support for precise non-keyframe-limited seeksUoti Urpala2010-12-202-4/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | Add support for seeking to an arbitrary non-keyframe position by decoding video starting from the previous keyframe. Whether to use this functionality when seeking is controlled by the new option -hr-seek and a new third argument to the "seek" command. The default is to use it for absolute seeks (like chapter seeks) but not for relative ones. Because there's currently no support for cutting encoded audio some desync is expected if encoded audio passthrough is used. Currently precise seeks always go to the first frame with timestamp equal to or greater than the target position; there's no support for "matching or earlier" backwards seeks at frame level.
| * commands: add generic option -> property wrapperUoti Urpala2010-12-181-0/+1
| | | | | | | | | | | | | | | | | | Add mp_property_generic_option(), a property function that can be used for generic option-based properties that do not require any action beyond manipulating the value of the option variable. Currently it directly implements GET and SET, plus STEP_UP for "choice" options only. Use it to add a property for -pts-association-mode (not particularly useful in normal use, but serves as a test).
| * options: add "choice" option type, use for -pts-association-modeUoti Urpala2010-12-181-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | Add a "choice" option type. Options of this type take a string as input and set an int option variable to the value corresponding to the string. The string->int mapping is option-specific and is given in the option definition. Strings not found in the mapping are rejected as invalid option values. Change the option -pts-association-mode to use this new option type and accept values "auto, decoder, sort" instead of "0, 1, 2". The change in accepted values shouldn't cause problems as this option is not appropriate to use in normal user config files.
* | vd_ffmpeg: set thread count to number of cores on machine by defaultUoti Urpala2010-12-201-2/+6
| | | | | | | | | | | | | | | | | | | | | | Make "-lavdopts threads=0" mean an autodetected number of threads, and make that the default value of the option. Also increase the upper limit of the option from 8 to 16. Add new file osdep/numcores.c which tries to determine the number of cores available on the machine. numcores.c is based (heavily modified) on public domain numcpus.c by Philip Willoughby <pgw99@doc.ic.ac.uk>, downloaded from http://csgsoft.doc.ic.ac.uk/numcpus/
* | DOCS/tech/slave.txt: update some obsolete informationUoti Urpala2010-12-181-10/+7
| | | | | | | | | | Update obsolete information based on old pause behavior. Remove mention of old GUI-specific commands.
* | manpage: correct -tv audiorate description, change bitrate to sampleratecompn2010-12-161-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32699 b3059339-0415-0410-9bf9-f77b7e298cf2
* | commands: Allow cycling subtitles backwards with 'J'reimar2010-12-162-9/+14
| | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32680 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32714 b3059339-0415-0410-9bf9-f77b7e298cf2
* | DOCS/man/zh_CN: sync with en/mplayer.1 rev. 32661jrash2010-12-161-5/+25
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32674 b3059339-0415-0410-9bf9-f77b7e298cf2
* | DOCS/xml: change --with-extraincdir to --extra-cflagscompn2010-12-169-11/+11
|/ | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32669 b3059339-0415-0410-9bf9-f77b7e298cf2
* ao_pcm: change message to mention "-novideo" instead of "-vc null"Uoti Urpala2010-12-081-1/+1
| | | | | | | | | -novideo is the right way to disable video, and should also work in more cases now that lavf is used as the default demuxer for more formats (like AVI; internal AVI demuxer fails with -novideo). Also change the man page description of -novideo a bit to make it sound less negative about the chances of the option working.
* core: ordered chapters: add heuristic for merging inaccurate chaptersUoti Urpala2010-11-261-0/+11
| | | | | | | | | | Some Matroska files have inaccurate ordered chapter endpoints, and so parts where one chapter should end and the next begin at the same timestamp were not merged. This resulted in an unnecessary seek over a minimal distance. Add a heuristic to merge parts with a minimal gap or overlap between them. Based on patch by Hector Martin <hector@marcansoft.com>.
* sub_cc: Allow selecting the Close Captioning channelreimar2010-11-141-2/+2
| | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32607 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32608 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/tech/codecs.conf.txt: document how to add ffmpeg codecscompn2010-11-141-0/+40
| | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32604 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32615 b3059339-0415-0410-9bf9-f77b7e298cf2
* core: do initial A-V sync by modifying audio streamUoti Urpala2010-11-131-0/+11
| | | | | | | Add code to enforce matching pts with video when (re)starting the audio stream, by either cutting away the first samples or inserting silence at the beginning. New option -noinitial-audio-sync can be used to disable this and return to old behavior.
* audio: add -gapless-audio optionUoti Urpala2010-11-121-0/+11
| | | | | | | | | If the option is enabled and all audio has been buffered to the AO, then the player will move to the next file without waiting for the buffered audio to drain, while leaving the AO initialized. If the playback of the next file starts quickly enough (before the AO buffer empties) then it should continue writing audio to the same AO with no gap in between.
* DOCS/man/zh_CH: sync with en/mplayer.1 rev. 32566jrash2010-11-071-3/+123
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32567 b3059339-0415-0410-9bf9-f77b7e298cf2
* vf_stereo3d: Add stereo3d filterreimar2010-11-022-0/+193
| | | | | | | | | Further review very welcome, but it is time (and good enough) to add this. Patch by Gordon Schmidt [gordon.schmidt s2000.tu-chemnitz de] with changes by Endre Kollár [taxy443 gmail com]. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32527 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a simple capture feature (-capture)Uoti Urpala2010-11-022-1/+21
| | | | | | | | | | | | | | | | | If a specified key is pressed during playback, the current stream is captured to a file, similar to what -dumpstream achieves. original patch by Pásztor Szilárd, don tricon hu Taken from the following svn commits, but with several fixes and modifications (one obvious user-visible difference is that the default key binding is 'C', not 'c'): git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32524 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32529 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32530 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: Make commas and backslashes show properlyattila2010-11-026-6/+6
| | | | | | patch by Rudolf Polzer (divVerent) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32519 b3059339-0415-0410-9bf9-f77b7e298cf2
* new slave command: af_cmdline, for changing audio filter optionsreimar2010-11-021-0/+3
| | | | | | | | | Add experimental af_cmdline slave command to allow changing filter options at runtime. Patch by Adrian Stutz [adrian sttz ch] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32505 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man: Add missing values for the chanlist suboption of -tvdiego2010-11-029-9/+27
| | | | | | patch by Giorgio Vazzana, mywing81 gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32447 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml/hu: synced with r32361Gabrov2010-11-025-67/+133
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32362 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Remove outdated warning about obsolete gcc 2.96.diego2010-11-021-5/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32283 b3059339-0415-0410-9bf9-f77b7e298cf2
* build: update DirectFB requirements, reduce #ifdefsdiego2010-11-021-2/+2
| | | | | | | | | | | | | | | | | | Require DirectFB version 0.9.15 instead of 0.9.13. This simplifies the build system at the cost of requiring a library version that was released at the end rather than the middle of 2002. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32251 b3059339-0415-0410-9bf9-f77b7e298cf2 Simplify DirectFB check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32252 b3059339-0415-0410-9bf9-f77b7e298cf2 Require DirectFB version 0.9.22. This allows getting rid of a lot of library version check #ifdeffery. Release 0.9.22 is from February 2005, so the requirement is reasonable. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32253 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zh_CN: Synced with rev. 32066jrash2010-11-021-4/+45
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32130 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: Clarify the meaning of the -nosub optionreimar2010-11-021-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32014 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: edit TV/radio chaptersdiego2010-11-0240-3152/+3401
| | | | | | | | | | | | | | | | | | | | Remove empty paragraph from TV input chapter. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31977 b3059339-0415-0410-9bf9-f77b7e298cf2 Merge TV input and TV teletext chapter into the usage chapter. This improves the overall structure of the documentation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31978 b3059339-0415-0410-9bf9-f77b7e298cf2 Restore mistakenly removed TV input chapter introduction. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31979 b3059339-0415-0410-9bf9-f77b7e298cf2 Merge radio chapter into the usage chapter. This improves the overall structure of the documentation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31980 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Merge CD/DVD chapter into the usage chapterdiego2010-11-0230-2882/+2852
| | | | | | | | | | | This improves the overall structure of the documentation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31970 b3059339-0415-0410-9bf9-f77b7e298cf2 Merge CD/DVD chapter into the usage chapter for all translations. This improves the overall structure of the documentation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31971 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml/zh_CN: replace usage.xml symlink to English with copydiego2010-11-021-1/+1123
| | | | | | | | | | | | Remove usage.xml symlink in the Chinese documentation translation. It will be replaced with the English text in a moment. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31965 b3059339-0415-0410-9bf9-f77b7e298cf2 Add copy of English usage.xml file to Chinese translation. This will be useful to merge other parts of the Chinese translation into it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31966 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Remove pointless compilation sections from radio and TV input chaptersdiego2010-11-022-37/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31947 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Integrate advanced audio usage sections into the general usage ↵diego2010-11-021-4/+0
| | | | | | | | chapter. This avoids an empty chapter that just contains sections. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31940 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Remove bogus teletext hotkeys sectiondiego2010-11-026-224/+0
| | | | | | It is both wrong and misplaced. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31936 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zh_CN: sync with en/mplayer.1 rev. 31814jrash2010-11-021-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31867 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml/README: improvediego2010-11-021-37/+1
| | | | | | | | | | | The package list for Debian systems is not specific to the Sarge release. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31841 b3059339-0415-0410-9bf9-f77b7e298cf2 Remove instructions for installing XML/XSL packages from source. This information is outside the scope of this README file. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31842 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml/configure: misc changesdiego2010-11-021-75/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplify xmllint test. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31836 b3059339-0415-0410-9bf9-f77b7e298cf2 cosmetics: Drop leading underscores from variable names. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31837 b3059339-0415-0410-9bf9-f77b7e298cf2 Remove unused variable fake_docbook_xsl. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31838 b3059339-0415-0410-9bf9-f77b7e298cf2 Adding XML entities for the English XML files to main.xml is enough. The English version is the master and will always be complete. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31839 b3059339-0415-0410-9bf9-f77b7e298cf2 cosmetics: Use more compact "if .. then" shell syntax. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31840 b3059339-0415-0410-9bf9-f77b7e298cf2 Simplify adding --catalogs option to xsltproc/xmllint command line. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31843 b3059339-0415-0410-9bf9-f77b7e298cf2 Add an XML catalog search path that works for current macports systems. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31844 b3059339-0415-0410-9bf9-f77b7e298cf2 whitespace cosmetics: fix indentation git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31845 b3059339-0415-0410-9bf9-f77b7e298cf2 Skip searching for an xmllint command. The xmllint target is separate from building the documentation; thus if xmllint is not available, the xmllint targets can fail without further harm. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31846 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml/en/documentation.xml: mark MPlayer as GPL v2 onlydiego2010-11-021-3/+2
| | | | | | | Almost all files are v2+, but there are some bits of v2 only code left, so MPlayer as a whole is still v2 only. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31835 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/*/hu: synced with r31833Gabrov2010-11-028-492/+211
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31834 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: updatesdiego2010-11-025-433/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Drop one pointless subsectioning level from radio input chapter. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31815 b3059339-0415-0410-9bf9-f77b7e298cf2 Remove subsection that describes how to tweak CD/DVD drives. It is getting outdated and outside the scope of MPlayer documentation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31816 b3059339-0415-0410-9bf9-f77b7e298cf2 Remove pointless and non-informative SDL section from video output chapter. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31817 b3059339-0415-0410-9bf9-f77b7e298cf2 Drop one level of pointless subsectioning. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31818 b3059339-0415-0410-9bf9-f77b7e298cf2 Split TV chapter in two. This avoids a chapter without content apart from the (sub)sections. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31819 b3059339-0415-0410-9bf9-f77b7e298cf2 Remove MTRR section from video output chapter. The information it contains should be irrelevant in 2010. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31820 b3059339-0415-0410-9bf9-f77b7e298cf2 Remove graphics cards subsections from Xv section in video output chapter. The information contained is very outdated. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31821 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: don't claim teletext keys would depend on build optionsdiego2010-11-021-3/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31814 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: Fix wrong option name in input examplereimar2010-11-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31813 b3059339-0415-0410-9bf9-f77b7e298cf2
* slave mode: Add stream_time_pos propertyreimar2010-11-021-0/+1
| | | | | | Patch by Paul Huwe [reicow yahoo com] with some modifications by me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31794 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zh_CN: sync with en/mplayer.1 rev. 31769jrash2010-11-021-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31774 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: mention -af stats in -af volume section for statisticsreimar2010-11-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31769 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: -af volume "max volume" feature requires floatsreimar2010-11-021-0/+2
| | | | | | Printing maximum volume only works when prefering float format. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31762 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zh_CN: sync with en/mplayer.1 rev. 31715jrash2010-11-021-1/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31745 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS: Fix a few web page links in the documentation.diego2010-11-024-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31744 b3059339-0415-0410-9bf9-f77b7e298cf2
* ao_coreaudio: Refactor device selectionadrian2010-11-021-0/+8
| | | | | | | | | | | Add output device selection and correctly set the default device if it's selected. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31715 b3059339-0415-0410-9bf9-f77b7e298cf2 Fix cosmetics after r31715. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31716 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zh_CN: sync with en/mplayer.1 rev. 31648jrash2010-11-021-12/+67
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31652 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_gl: remove "broken" comment from quadbuffer stereocehoyos2010-11-021-1/+1
| | | | | | | | | Independent tests indicate that GLX_STEREO is working fine on supported hardware. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31647 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31648 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: Fix outdated -vo gl usage example.reimar2010-11-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31634 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_gl: Add initial stereo supportreimar2010-11-021-0/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31633 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/cs: Fix Bulgarian vs. Hungarian typo in Czech manual page.diego2010-11-021-1/+1
| | | | | | patch by Petr Vorel, pevik seznam cz git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31632 b3059339-0415-0410-9bf9-f77b7e298cf2
* stream_bluray: add unencrypted Blu-ray playbackben2010-11-021-4/+29
| | | | | | | Support for unencrypted Blu-ray playback through libbluray. Use it through: mplayer br:////path/to/disc git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31631 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/tech/slave.txt: Add disabling input to hintsreimar2010-11-021-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31595 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml/Makefile: Remove help target that prints available targetsdiego2010-11-021-16/+2
| | | | | | The Makefile should now be simple enough to understand without it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31583 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zh_CN: sync with en/mplayer.1 rev. 31552jrash2010-11-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31556 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage: improve "-identify" description of "-frames 0"attila2010-11-021-1/+1
| | | | | | | Make clear that -frames 0 surpresses all _video_ output and not the text output. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31552 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Get rid of xsltproc wrapper redirectiondiego2010-11-022-24/+6
| | | | | | Run commands directly from make. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31538 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Move xsltproc target file hack to the Makefile.diego2010-11-022-8/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31537 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: drop support for Jade/OpenJade/Saxon XSLT processorsdiego2010-11-022-129/+0
| | | | | | | | | | | | | | Drop configure support for Jade/OpenJade XSLT processors. Support is not functional nor is it clear it ever worked at all. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31535 b3059339-0415-0410-9bf9-f77b7e298cf2 Drop support for the Saxon XSLT processor. The XSLT processor detection needs to be overhauled and simplified. Since nobody appears to be using Saxon it is just a burden that hinders the simplification. It can be added back cleanly if there is popular request. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31536 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/xml: Get rid of xmllint wrapper redirectiondiego2010-11-022-14/+7
| | | | | | Run commands directly from make. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31534 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zc_CH: sync with en/mplayer.1 rev. 31372jrash2010-11-021-12/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31461 b3059339-0415-0410-9bf9-f77b7e298cf2
* build: Rename configure.log file to config.logdiego2010-11-0229-48/+48
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31415 b3059339-0415-0410-9bf9-f77b7e298cf2
* DOCS/man/zh_CN: sync with en/mplayer.1 rev. 31364jrash2010-11-021-35/+106
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31369 b3059339-0415-0410-9bf9-f77b7e298cf2
* vf_rgb2bgr: remove the filtersiretart2010-11-022-11/+1
| | | | | | | | | | Its functionality has been superseeded by sws by quite some time, and the "swap" functionality is now provided by vf_format. see http://comments.gmane.org/gmane.comp.video.mplayer.devel/55804 for a full discussion. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31350 b3059339-0415-0410-9bf9-f77b7e298cf2
* rtsp: Support RTSP/RTP over HTTP via LIVE555cehoyos2010-11-021-0/+5
| | | | | | | | | | Patch by Malte Särner, malte D sarner A multiq se git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31347 b3059339-0415-0410-9bf9-f77b7e298cf2 Fix compilation with nemesi and live555. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31348 b3059339-0415-0410-9bf9-f77b7e298cf2
* Merge svn changes up to r31332Uoti Urpala2010-06-051-1/+12
|\
| * Extend -vf format to allow substituting the format for a compatible onereimar2010-06-051-1/+12
| | | | | | | | | | | | | | (e.g. chaning rgb24 to bgr24). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31331 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes r31318 to r31328Uoti Urpala2010-06-052-10/+9
|\| | | | | | | | | r31328 is a somewhat questionable (changing the option at that point isn't quite safe), but it was a failure case already...
| * sync with en/mplayer.1 rev. 31292jrash2010-06-051-9/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31321 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove colorspace conversion code from -vo yuv4mpeg, -vf scale shouldreimar2010-06-051-1/+3
| | | | | | | | | | | | | | | | be able to handle this just as well (or better) including interlaced. If not, this needs to be fixed there instead of duplicating code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31320 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Skip svn changes up to r31294 (mostly)Uoti Urpala2010-06-021-0/+1
|\| | | | | | | | | | | | | | | | | | | -a52drc range extension was already done earlier (and the svn commit is buggy for ad_liba52). However keep the man page change (this is the only part not skipped). We don't want to use lavf for Matroska demuxing; it's questionable whether that's a good idea even in svn, and the internal demuxer here is definitely a better choice.
| * Extend the range of the -a52drc range up to two, as a experimental featurereimar2010-05-311-0/+1
| | | | | | | | | | | | | | in case someone finds it useful. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31292 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31291Uoti Urpala2010-06-023-10/+12
|\|
| * synced with r31289Gabrov2010-05-302-10/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31290 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a referrer option to set the HTTP Referer field.reimar2010-05-301-0/+4
| | | | | | | | | | | | | | Patch by chocolateboy [chocolate cpan org] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31288 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31226Uoti Urpala2010-05-301-309/+0
|\|
| * Remove obsolete new policy proposal draft from Michael.diego2010-05-251-309/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31219 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove ambiguous language about indenting if-blocks.diego2010-05-231-3/+0
| | | | | | | | | | | | | | | | | | | | The previous version could possibly be misread in a way that forbids reindenting if-blocks. The intended meaning, that whitespace changes should be separated from other changes, is already implied from what is written above that paragraph. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31200 b3059339-0415-0410-9bf9-f77b7e298cf2
| * K&R coding style should be applied to new code.diego2010-05-231-7/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31194 b3059339-0415-0410-9bf9-f77b7e298cf2
* | documentation: remove svn-howto.txt, MAINTAINERSUoti Urpala2010-05-302-628/+0
| | | | | | | | | | svn-howto.txt doesn't apply to this tree, and MAINTAINERS had little to do with reality even in svn.
* | Merge svn changes up to r31189Uoti Urpala2010-05-301-10/+6
|\|
| * sync with en/mplayer.1 rev. 31173jrash2010-05-211-10/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31188 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31176Uoti Urpala2010-05-301-7/+2
|\|
| * remove vf_yuy2, functionality is replaced by -vf format=yuv2siretart2010-05-141-7/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31173 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31169Uoti Urpala2010-05-3017-117/+39
|\|
| * 10l: Use the directory part of the stylesheet path to create a directory.diego2010-05-111-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31168 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Invoke all shell scripts during XML documentation build directly.diego2010-05-111-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31167 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Create output directory when copying stylesheet.diego2010-05-111-5/+3
| | | | | | | | | | | | | | This eliminates one rule and simplifies dependencies. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31166 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Merge both XML documentation README files into one.diego2010-05-112-21/+22
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31165 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Do not run xmllint prior to building the XML documentation.diego2010-05-111-2/+2
| | | | | | | | | | | | | | | | xmllint is just a convenient way to check for syntax errors; it is not a requirement to build the documentation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31164 b3059339-0415-0410-9bf9-f77b7e298cf2
| * XML docs: Make xmllint-* targets a dependency of html-chunked-*/html-single-*.diego2010-05-111-3/+3
| | | | | | | | | | | | | | | | | | | | Since the xmllint-* targets are phony, they should never be a dependency of real targets, so make them a dependency of the phony html-chunked-* / html-single-* targets instead. This is just as correct, but now the docs are regenerated when dependencies change and not with every make invocation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31163 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Only mark targets whose names end in "clean" as phony.diego2010-05-111-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31162 b3059339-0415-0410-9bf9-f77b7e298cf2
| * docs: Update documentation to account for recent build system changes.diego2010-05-111-13/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31161 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Make XML documentation build process nonrecursive.diego2010-05-112-35/+12
| | | | | | | | | | | | | | This greatly simplifies the documentation build process and the Makefiles. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31160 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Get rid of pointless variable indirection for XSL stylesheets.diego2010-05-111-10/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31159 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Pass a language variable to submakes instead of reading subdirectory Makefiles.diego2010-05-1012-55/+18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31152 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove internal liba52 copy.diego2010-05-093-3/+2
| | | | | | | | | | | | | | Nowadays FFmpeg is faster than liba52 and external liba52 is well supported. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31147 b3059339-0415-0410-9bf9-f77b7e298cf2
* | cosmetics: "struct vf_instance* vf" -> "struct vf_instance *vf"Uoti Urpala2010-05-291-10/+10
| | | | | | | | | | | | | | Change 'struct vf_instance' pointer arguments to more standard style as in the subject. Also some other minor formatting fixes. Patch by Diego Biurrun.
* | vo_vdpau: support queuing an arbitrary number of frames aheadUoti Urpala2010-05-141-5/+24
| | | | | | | | | | | | | | | | | | | | | | | | Make the number of output surfaces allocated by vo_vdpau configurable and allow queuing multiple future frames with the VDPAU frame timing functionality. There are two known issues that could be polished in the future for particularly long queue time cases. First, toplevel code should possibly wait for the queued changes to finish displaying in some situations like switching files. Second, the VO can block waiting for a surface to become available, and in the worst case this wait can be almost as long as the maximum queuing time (potentially causing audio underruns). However those issues are not high priority.
* | vo_vdpau: add option for studio level outputUoti Urpala2010-05-121-2/+8
| | | | | | | | | | | | | | Add -vo vdpau suboption "studio" to produce output in RGB range 16-235. Man page description mostly taken from a patch by Lauri Mylläri (but not code). Also slightly tweak the description of two other suboptions on the man page.
* | Merge svn changes up to r31141Uoti Urpala2010-05-071-1/+1
|\|
| * Remove references to some long-removed files.diego2010-05-071-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31141 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31133Uoti Urpala2010-05-0714-9/+15
|\|
| * Put symlinks under revision control instead of generating them during make.diego2010-05-0314-9/+15
| | | | | | | | | | | | | | This simplifies the build system and should have no practical disadvantage. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31133 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31100Uoti Urpala2010-05-071-1/+1
|\|
| * fix typoGabrov2010-04-271-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31099 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31097Uoti Urpala2010-04-269-43/+221
|\|
| * synced with r31096Gabrov2010-04-258-39/+217
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31097 b3059339-0415-0410-9bf9-f77b7e298cf2
| * typo fixesGabrov2010-04-251-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31096 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31050Uoti Urpala2010-04-261-1/+3
|\|
| * sync with en/mplayer.1 rev. 31028jrash2010-04-171-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31043 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31033Uoti Urpala2010-04-2653-1881/+1898
|\|
| * the great MPlayer tab removal: part Idiego2010-04-1251-1924/+1920
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31032 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add slave commands for loading and unloading audio filters at runtime.cehoyos2010-04-111-0/+11
| | | | | | | | | | | | | | Patch by Jehan Hysseo, hysseo zemarmot net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31030 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add osd_show_progression: Show progress bar and elapsed/total time.cehoyos2010-04-094-0/+10
| | | | | | | | | | | | | | Patch by Hugo Chargois, hugo D chargois A free fr git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31028 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31004Uoti Urpala2010-04-2611-48/+80
|\|
| * dont mention base64 about sending attachments.attila2010-04-021-2/+2
| | | | | | | | | | | | | | | | | | this may (and has) confused people, beside that 99.9% of all MUA will do the right thing here anyways. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30986 b3059339-0415-0410-9bf9-f77b7e298cf2
| * updated example line for encoding to psp (acodec faac is now libfaac)ptt2010-04-019-26/+26
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30982 b3059339-0415-0410-9bf9-f77b7e298cf2
| * updated table of libavcodec's audio codecsptt2010-04-011-20/+52
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30981 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30967Uoti Urpala2010-04-268-52/+8
|\|
| * sync with en/mplayer.1 rev. 30936jrash2010-03-201-2/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30941 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Drop support for XANIM_MOD_DIR environment variable.diego2010-03-188-48/+0
| | | | | | | | | | | | | | | | It is now possible to specify alternative codec paths on the comand line. Furthermore, XANIM_MOD_DIR was never properly documented. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30936 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix first line(s) of vo vdpau documentation.cehoyos2010-03-181-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30929 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30907Uoti Urpala2010-04-262-1/+86
|\|
| * Relocate -codecpath description in alphabetical order.komh2010-03-151-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30898 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add -codecpath option.komh2010-03-151-0/+4
| | | | | | | | | | | | | | | | It allows to search binary codecs in non-standard directories. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30897 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 rev. 30868jrash2010-03-131-1/+82
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30886 b3059339-0415-0410-9bf9-f77b7e298cf2
* | build: create and install .mo translation filesUoti Urpala2010-04-011-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If --enable-translation was specified to configure, build and install .mo files for the selected message language(s). The languages enabled can be chosen with the --language-msg option; by default all available ones will be installed. The .po source files for available languages are seached under the po/ subdirectory; at the moment that subdirectory is not included in the sources so no languages will be enabled unless you add the actual translations before running configure. The .mo files are created in the locale/ subdirectory when compiling. By default MPlayer will only look for them in the installed location, so the newly compiled .mo files will not be found if you run MPlayer without installing. You can set the MPLAYER_LOCALEDIR environment variable to point to the locale/ directory to test the translations without installing.
* | Merge svn changes up to r30876Uoti Urpala2010-03-102-8/+90
|\|
| * Document x264 VUI options.corey2010-03-091-0/+44
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30868 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a note about what x264's 'aud' parameter is for.corey2010-03-091-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30867 b3059339-0415-0410-9bf9-f77b7e298cf2
| * We have some sort of DVD menu support nowadays.diego2010-03-081-8/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30862 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Enable ASS/SSA subtitle support in mencodergreg2010-03-051-0/+42
| | | | | | | | | | | | | | | | | | | | | | Enable ASS/SSA rendering through libass in mencoder. This duplicates a bit of code (to parse font attachments, for example). Additionally, add a filter "fixpts" that generates PTS, simulating fixed fps. PTS generated by this filter are then used for subtitle timing. Original patch by Nicolas George. (nicolas.george normalesup.org) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30849 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30848Uoti Urpala2010-03-107-32/+27
|\|
| * sync with en/mplayer.1 rev. 30822jrash2010-03-051-8/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30845 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove NUT specification stubs.diego2010-03-042-12/+0
| | | | | | | | | | | | | | They have been obsolete for a long time and point nowhere. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30839 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Run script with /bin/sh instead of bash.diego2010-03-041-1/+1
| | | | | | | | | | | | | | There is nothing bash-specific in this shell script. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30838 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Use consistent if expression syntax.diego2010-03-041-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30836 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Use $() syntax instead of backticks, it is easier to nest.diego2010-03-041-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30835 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify that ssh is not required for committing to MPlayer.diego2010-03-041-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30834 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update URL for Subversion homepage.diego2010-03-041-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30833 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for specifying window position relative to right and bottomreimar2010-03-031-2/+5
| | | | | | | | | | | | | | | | screen borders with -geometry. Based on patch by Melchior FRANZ [melchior franz gmail com]. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30822 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Drop support for old-style DVB code.diego2010-03-021-4/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30818 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30748Uoti Urpala2010-03-103-40/+68
|\|
| * dots at end of sentences (kai driver section)ptt2010-02-261-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30748 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced to r30610ptt2010-02-261-32/+57
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30747 b3059339-0415-0410-9bf9-f77b7e298cf2
| * new sentences on new lines, cropdetect filterptt2010-02-261-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30746 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 rev. 30677jrash2010-02-261-1/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30742 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30732Uoti Urpala2010-03-101-1/+2
|\|
| * Clarify that AC3/DTS passthrough is also possible with HDMI.tack2010-02-221-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30714 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30702Uoti Urpala2010-03-102-6/+8
|\|
| * wording fixesdiego2010-02-222-6/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30699 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Rename struct vf_instance_s --> vf_instance.diego2010-02-211-11/+11
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30684 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30683Uoti Urpala2010-03-101-0/+3
|\|
| * Explain that -mc 0 will need -noskip.reimar2010-02-201-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30677 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30675Uoti Urpala2010-03-107-9/+0
|\|
| * cosmetics: Remove pointless empty lines at EOF.diego2010-02-2018-26/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30675 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30663Uoti Urpala2010-03-101-9/+90
|\| | | | | | | | | | | | | Conflicts: gui/cfg.c libmpcodecs/vd_dmo.c mplayer.c
| * sync with en/mplayer.1 rev. 30611jrash2010-02-191-9/+90
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30651 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30643Uoti Urpala2010-03-101-7/+93
|\|
| * Document several new x264 parameters.corey2010-02-171-0/+86
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30611 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update x264 defaults listed in the man page.corey2010-02-171-7/+7
| | | | | | | | | | | | | | x264 has changed the defaults for these parameters. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30610 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30570Uoti Urpala2010-03-091-1/+2
|\|
| * QuickTime X supports SAR in H.264.diego2010-02-141-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30566 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30529Uoti Urpala2010-03-093-24/+67
|\|
| * synced with r30515Gabrov2010-02-062-13/+37
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30522 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r30436jrash2010-02-061-11/+30
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30521 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify -vo vdpau:pullupcehoyos2010-02-041-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30503 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30494Uoti Urpala2010-03-091-1/+2
|\| | | | | | | | | | | Conflicts: libvo/vo_gl.c libvo/x11_common.c
| * Document auto-detection of -vo gl:yuv=... value.reimar2010-02-021-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30490 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30484Uoti Urpala2010-03-091-2/+18
|\|
| * Reword tfields documentation to reflect that it works mostly with MPlayer,reimar2010-02-011-2/+2
| | | | | | | | | | | | | | not just mencoder. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30482 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add OS/2 KAI audio driver supportkomh2010-02-011-0/+16
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30481 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30475Uoti Urpala2010-03-091-3/+1
|\|
| * Fix layout for the mouse/joystick controls sections.diego2010-01-311-2/+0
| | | | | | | | | | | | | | hint by KM, k.nxco.rp gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30475 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document that -af-adv force=0 currently does the same as =1reimar2010-01-311-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30473 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30463Uoti Urpala2010-03-092-4/+9
|\| | | | | | | | | | | Note that r30455 is wrong, that commit does not in fact change the default behavior as claimed in the commit message. It only breaks "-af-adv force=0", which was already pretty much useless though.
| * sync with en/mplayer.1 r30436jrash2010-01-291-2/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30453 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix input/output channel mixup in the pan filter description.diego2010-01-281-2/+2
| | | | | | | | | | | | | | patch by Heikki Rauhala, hvrauhal gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30449 b3059339-0415-0410-9bf9-f77b7e298cf2
* | vo_vdpau: make queuing future frame flips adjustableUoti Urpala2010-02-051-0/+15
| | | | | | | | | | | | | | | | | | | | Add -vo vdpau suboptions "queuetime_windowed" and "queuetime_fs" to specify the maximum number of milliseconds how far into the future a frame flip can be queued using the VDPAU presentation queue functionality. The intended main use of these options is to allow disabling use of the queuing feature on systems where using it causes choppiness in other graphics behavior (this is an NVIDIA driver issue; the video itself isn't affected).
* | Merge svn changes up to r30448Uoti Urpala2010-01-281-2/+2
|\|
| * Stopping maintainership for -vo (x)mga attila2010-01-271-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30448 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30437Uoti Urpala2010-01-281-1/+8
|\|
| * Add an option to cropdetect to periodically reset the detected area.reimar2010-01-261-1/+8
| | | | | | | | | | | | | | Patch by [quetschke scytek de] with modifications by me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30436 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Disable libass fallbacks for fontconfig < 2.4.2Grigori Goronzy2010-01-272-19/+5
| | | | | | | | | | | | | | | | | | | | libass doesn't support fontconfig < 2.4.2 so fallbacks for these ancient versions aren't needed anymore. Also update the man page (English, German) to reflect the change. Additionally note that -embeddedfonts controls the use of ASS script embedded fonts too. -embeddedfonts is now always enabled by default. Fonts are never extracted into a directory anymore but passed to libass via memory.
* | Merge svn changes up to r30419Uoti Urpala2010-01-2520-14/+44
|\|
| * typo fix, accidently reverted the new year patch with previous commitGabrov2010-01-241-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30416 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r30414Gabrov2010-01-241-3/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30415 b3059339-0415-0410-9bf9-f77b7e298cf2
| * big new year patch for documentationsGabrov2010-01-2420-10/+20
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30414 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r30336jrash2010-01-221-2/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30392 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30375Uoti Urpala2010-01-252-31/+90
|\|
| * synced with r30336ptt2010-01-191-1/+11
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30375 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r30197ptt2010-01-181-31/+70
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30366 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document levelconv -vo gl suboption.reimar2010-01-161-0/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30336 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30322Uoti Urpala2010-01-252-11/+48
|\|
| * synced with r30311Gabrov2010-01-161-10/+47
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30316 b3059339-0415-0410-9bf9-f77b7e298cf2
| * added a missing full stopptt2010-01-151-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30311 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30250Uoti Urpala2010-01-252-5/+34
|\|
| * Cosmetics: Fix indentationcehoyos2010-01-081-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30241 b3059339-0415-0410-9bf9-f77b7e298cf2
| * QCELP is part of libavcodec.cehoyos2010-01-081-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30240 b3059339-0415-0410-9bf9-f77b7e298cf2
| * update wishlistcompn2010-01-081-2/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30238 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r30197jrash2010-01-081-3/+30
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30237 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30199Uoti Urpala2010-01-081-3/+3
|\|
| * Fix a few typos in the matrixview section.diego2010-01-041-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30197 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30185Uoti Urpala2010-01-081-0/+27
|\|
| * Basic -vo matrixview documentation.reimar2010-01-031-0/+15
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30183 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document -vo gl colorspace suboption.reimar2010-01-031-0/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30181 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30165Uoti Urpala2010-01-082-38/+99
|\|
| * sync with en/mplayer.1 r30135jrash2010-01-011-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30162 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r30135 (up to date at last!)gpoirier2009-12-291-36/+97
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30137 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30136Uoti Urpala2009-12-302-4/+9
|\| | | | | | | Ignore another broken correct-pts change in 30134.
| * change bandwidth value to bandwidth bytescompn2009-12-291-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30135 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r30075jrash2009-12-261-3/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30113 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30104Uoti Urpala2009-12-302-13/+54
|\| | | | | | | Ignore the broken correct-pts change in r30100.
| * sync w/r29731gpoirier2009-12-201-10/+44
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30093 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Slightly improve vo_gl suboption documentation.reimar2009-12-191-3/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30075 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30065Uoti Urpala2009-12-292-5/+7
|\|
| * divided a line in two, was too longptt2009-12-181-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30057 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r30043ptt2009-12-181-4/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30056 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30055Uoti Urpala2009-12-1820-258/+65
|\|
| * sync with en/mplayer.1 r30053jrash2009-12-181-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30054 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Simplify the evaluation of the lang-def template:diego2009-12-161-8/+8
| | | | | | | | | | | | | | | | Use the language variable directly in the template instead of passing the language variable as a parameter to $(call). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30045 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for -geometry to corevideo.adrian2009-12-151-1/+1
| | | | | | | | | | | | | | Based on a patch by Tim Wojtulewicz (timwoj at ieee dot org). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30043 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add -xineramascreen support to corevideo vo. Still prefer corevideo's own ↵adrian2009-12-151-2/+2
| | | | | | | | | | | | device_id parameter if it's set. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30042 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Filter list of missing source files so that it only contains nonexisting files.diego2009-12-141-2/+2
| | | | | | | | | | | | | | Thus those files can be symlinked directly without testing if they exist. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30040 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Use $(notdir ) to filter out path prefixes instead of reinventing it poorly.diego2009-12-141-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30038 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Avoid hackish shell loop to symlink missing XML source files.diego2009-12-141-3/+1
| | | | | | | | | | | | | | Instead, employ make syntax to generate the shell command arguments. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30037 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Globally remove main.xml from SYMLINKS_DEPS. It should never be symlinked.diego2009-12-141-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30036 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Reuse SYMLINKS_DEPS variable in the symlink targets.diego2009-12-141-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30035 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Simplify shell command to symlink missing translated source files.diego2009-12-141-3/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30034 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Ignore errors from failing rm commands in clean targets.diego2009-12-141-4/+4
| | | | | | | | | | | | | | This is also the policy we have in the top-level Makefile. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30033 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Do not ignore errors from mkdir invocations.diego2009-12-141-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30032 b3059339-0415-0410-9bf9-f77b7e298cf2
| * The general xmllint target should only check configured languages.diego2009-12-141-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30031 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Improve declaration of phony targets.diego2009-12-141-1/+2
| | | | | | | | | | | | | | This prevents configure from being rerun all the time. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30030 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Factorize dependencies of language-specific HTML generation targets.diego2009-12-141-2/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30029 b3059339-0415-0410-9bf9-f77b7e298cf2
| * spelling cosmeticsdiego2009-12-141-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30028 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove pointless dependency on xmllint.sh from phony xmllint target.diego2009-12-141-1/+1
| | | | | | | | | | | | | | The individual language targets carry that dependency. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30027 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Drop pointless dependencies of the phony targets html-chunked and html-single.diego2009-12-141-1/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30026 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix dependencies of html-chunked and html-single targets.diego2009-12-141-3/+3
| | | | | | | | | | | | | | All the files generated by configure are required. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30025 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Exploit one more opportunity to make use of the CONFIGURE_GENERATED variable.diego2009-12-141-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30024 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Factorize all components generated by configure into a variable.diego2009-12-141-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30023 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove outdated comment about build system behavior.diego2009-12-141-2/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30022 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Rename XSL_DEPS variable to SINGLE_XSL_DEPS for consistency.diego2009-12-141-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30021 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Drop support for per-language XSL stylesheets.diego2009-12-142-57/+2
| | | | | | | | | | | | | | The feature was never properly used and provides little benefit. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30020 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove pointless Polish stylesheet; it provides no real benefit.diego2009-12-143-31/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30019 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Drop support for per-language stylesheets.diego2009-12-1412-39/+2
| | | | | | | | | | | | | | In all these years nobody ever used this feature. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30018 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Unconditionally symlink documentation files missing from a translation.diego2009-12-1412-37/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30017 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Use variable for HTML stylesheet so individual languages can use their own.diego2009-12-141-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30016 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Factorize stylesheet installation into its own target.diego2009-12-141-4/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30015 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Construct monolithic targets with the HTMLDIR instead of the HTMLFILE variable.diego2009-12-1412-23/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30014 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Factorize generating the list of all main.xml files.diego2009-12-131-2/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30013 b3059339-0415-0410-9bf9-f77b7e298cf2
| * configure also generates all main.xml files.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30012 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add html-chunk.xsl and html-single.xsl to targets generated by configure.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30011 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Avoid '&>' bashism for redirecting both stdout and stderr.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30010 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Simplify one more command via automatic variables.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30009 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Simplify setting COMMON_XSL_DEPS variable:diego2009-12-131-5/+1
| | | | | | | | | | | | | | Use $(wildcard ) directly instead of using it to control a conditional. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30008 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Do not build monolithic documentation in a separate directory.diego2009-12-132-13/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30007 b3059339-0415-0410-9bf9-f77b7e298cf2
| * - Remove now unnecessary dependency on intermediate directories.diego2009-12-132-4/+4
| | | | | | | | | | | | | | | | | | - Update README.maintainers to reflect that the monolithic documentation is no longer built in a separate dir (accidentally committed part that belongs to the next committed revision). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30006 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Do not pointlessly set the HTMLFILE variable when running xmllint.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30005 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Simplify some commands via automatic variables.diego2009-12-131-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30004 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Create required directories directly without intermediate steps.diego2009-12-131-5/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30003 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Declare common dependencies for chunked and single HTML targets together.diego2009-12-131-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30002 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Remove pointless trailing /.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30001 b3059339-0415-0410-9bf9-f77b7e298cf2
| * xmllint.sh is not a phony target.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30000 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Do not use symlinks for translations that comprise all XML files.diego2009-12-133-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29999 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove pointless warning about Make being called from the wrong place.diego2009-12-131-11/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29998 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Replace shell command substitution by Makefile syntax construct.diego2009-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29996 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Use automatic variables instead of the target name.diego2009-12-131-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29995 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Do not pointlessly remove all targets before recreating them.diego2009-12-131-2/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29994 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Declare a dependency on xmllint instead of duplicating the target's commands.diego2009-12-131-4/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29993 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Support for multiple editions in MatroskaDaniel Dawson2009-12-041-0/+6
| | | | | | | | | | | | | | | | 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 r29971Uoti Urpala2009-11-291-3/+1
|\|
| * small update wishlistcompn2009-11-231-3/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29963 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r29962Uoti Urpala2009-11-232-33/+96
|\|
| * synced with r29912Gabrov2009-11-162-33/+96
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29918 b3059339-0415-0410-9bf9-f77b7e298cf2
* | core: Add support for decoder reordering of pts valuesUoti Urpala2009-11-211-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a mode where libavcodec's reordered_opaque feature is used to associate container packet timestamps with decoded frames. This should improve behavior at least for MPEG files with interlaced h264; the previous code does not cope well with the libavformat demuxer producing two field packets with separate timestamps but the libavcodec h264 decoder only producing a single output frame for those two packets (so half the timestamps have no associated output frame). The current libavformat mpeg demuxer seems to finally work with interlaced h264 files and produce valid timestamps which are useful with a mode like this. By default MPlayer now selects between this new mode and the old one automatically based on the number of timestamp problems they cause; by default the new mode is used if both seem to work. The new option -pts-association-mode can be used to force a particular mode. If correct-pts mode is disabled this has no effect on timing. Also remove the "EXPERIMENTAL" marker from the manpage description of -correct-pts.
* | VO: Keep aspect by adding black bars in window mode too if necessaryUoti Urpala2009-11-201-2/+6
| | | | | | | | | | | | | | | | | | By default (without -nokeepaspect) MPlayer tries to maintain video aspect ratio by using window manager hints to keep output window aspect when resizing. Before this commit it would however scale the video to completely fill the window even if the window manager did not respect those hints. Change the behavior to add black bars like in fullscreen mode instead in this case.
* | Merge svn changes up to r29912Uoti Urpala2009-11-1619-179/+530
|\|
| * cosmetics and grammar fixesptt2009-11-131-17/+18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29911 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29905jrash2009-11-131-12/+32
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29909 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29905ptt2009-11-131-1/+16
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29907 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29885ptt2009-11-121-11/+33
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29906 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetic fixes as pointed out by diegoptt2009-11-121-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29905 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Added -name, -title and -use-filename-title options and implementation in ↵ptt2009-11-121-0/+14
| | | | | | | | | | | | X11 vos git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29904 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Replace dead link explaining why not to use HTML on the mailing lists.tack2009-11-1110-10/+10
| | | | | | | | | | | | | | New link is http://efn.no/html-bad.html git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29902 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a "tips and tricks" section to the slave mode documentation.reimar2009-11-111-0/+9
| | | | | | | | | | | | | | Hopefully will help in using some of its rather obscure features. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29900 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Support VDPAU hardware accelerated decoding of MPEG-4 ASP on capablecehoyos2009-11-101-1/+2
| | | | | | | | | | | | | | | | | | hardware. Original patch by NVIDIA corporation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29885 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update man page to reflect support for up to 8 channels.tack2009-11-101-6/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29883 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for DVB teletext.reimar2009-11-101-1/+2
| | | | | | | | | | | | | | Patch by Francesco Lavra [francescolavra interfree it] with modifications by me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29875 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify possible issues with gmplayer commandline options due to conflictsreimar2009-11-081-1/+4
| | | | | | | | | | | | | | with separate gui configuration file. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29852 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29823jrash2009-11-061-2/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29833 b3059339-0415-0410-9bf9-f77b7e298cf2
| * So Long, and Thanks for All the Fishreynaldo2009-11-051-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29824 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add new VDPAU feature high-quality-scaling (and require newer library).cehoyos2009-11-041-0/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29823 b3059339-0415-0410-9bf9-f77b7e298cf2
| * The "ilaced" suboption of vf_scale was renamed to "interlaced".diego2009-11-027-14/+14
| | | | | | | | | | | | | | Fixes Bugzilla #1596. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29814 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Improve VDPAU noforce-mixer documentation.cehoyos2009-11-021-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29813 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29805jrash2009-10-311-12/+33
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29806 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Slightly change behavior of "none" if fstype specification.corey2009-10-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | In a list of enabled fstypes, "none" now clears the list rather than disabling all fstypes and interrupting the parser. To enable only one (or more) fstypes, list the types to enable after "none". For example: "-fstype none" is the same as before: all disabled "-fstype none,fullscreen" enables only the fullscreen type git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29805 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Allow image format BGRA when using vo vdpau.cehoyos2009-10-271-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29798 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29791ptt2009-10-221-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29792 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Break an output line for consistency.diego2009-10-221-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29791 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetic fixes in bs2b and vdpau sectionsptt2009-10-221-9/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29790 b3059339-0415-0410-9bf9-f77b7e298cf2
| * removed daniele forghieri from italian man mantainers (as said by diego and him)ptt2009-10-141-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29773 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29771ptt2009-10-141-1/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29772 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Support SMPTE-240M colourspace in vo_vdpau.cehoyos2009-10-121-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29771 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add colorspace option to vo_vdpau.cehoyos2009-10-101-0/+16
| | | | | | | | | | | | | | | | | | Allows to use ITU-R BT.709 instead of the default ITU-R BT.601. Patch by Lauri Mylläri, lauri D myllari gmail git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29769 b3059339-0415-0410-9bf9-f77b7e298cf2
| * some coherence's fixesptt2009-10-081-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29766 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics in channels/capture sectionsptt2009-10-081-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29765 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29762ptt2009-10-081-19/+183
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29764 b3059339-0415-0410-9bf9-f77b7e298cf2
| * added myself to italian man mantainers section, since i'm the one that does thatptt2009-10-081-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29763 b3059339-0415-0410-9bf9-f77b7e298cf2
| * various little aesthetic fixesptt2009-10-081-14/+15
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29762 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28576ptt2009-10-081-51/+107
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29760 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify screenshot filter description.diego2009-10-061-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29756 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Support VDPAU MPEG4 hardware decodingUoti Urpala2009-11-161-1/+2
| | | | | | | | Original patch by NVIDIA.
* | vo_vdpau: Add support for high-quality scaling featureUoti Urpala2009-11-151-0/+7
| | | | | | | | | | | | | | Part of the code is currently under #ifdef to allow compilation with older VDPAU library versions; that can be removed later. Partially based on a patch by Carl Eugen Hoyos.
* | Add yuv_colorspace property, implemented in vo_vdpau and vo_xvUoti Urpala2009-11-151-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a property to select YUV colorspace. Currently implemented only in vo_vdpau and vo_xv. Allows switching between BT.601, BT.709 and SMPTE-240M (vdpau only). The xv support uses the "XV_ITURBT_709" attribute. At least my NVIDIA card supports that; I don't know whether other xv implementations do. Bind the colorspace switch to the 'c' key by default. 'c' is currently used by vo_sdl for some fullscreen mode change thing, but at the moment that does not conflict and if it will in the future then vo_sdl can change. VDPAU part based on a patch from Lauri Mylläri <lauri.myllari@gmail.com>
* | Implement vsync-aware frame timing for VDPAUUoti Urpala2009-11-151-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Main things added are custom frame dropping for VDPAU to work around the display FPS limit, frame timing adjustment to avoid jitter when video frame times keep falling near vsyncs, and use of VDPAU's timing feature to keep one future frame queued in advance. NVIDIA's VDPAU implementation refuses to change the displayed frame more than once per vsync. This set a limit on how much video could be sped up, and caused problems for nearly all videos on low-FPS video projectors (playing 24 FPS video on a 24 FPS projector would not work reliably as MPlayer may need to slightly speed up the video for AV sync). This commit adds a framedrop mechanism that drops some frames so that no more than one is sent for display per vsync. The code tries to select the dropped frames smartly, selecting the best one to show for each vsync. Because of the timing features needed the drop functionality currently does not work if the correct-pts option is disabled. The code also adjusts frame timing slightly to avoid jitter. If you for example play 24 FPS video content on a 72 FPS display then normally a frame would be shown for 3 vsyncs, but if the frame times happen to fall near vsyncs and change between just before and just after then there could be frames alternating between 2 and 4 vsyncs. The code changes frame timing by up to one quarter vsync interval to avoid this. The above functionality depends on having reliable vsync timing information available. The display refresh rate is not directly provided by the VDPAU API. The current code uses information from the XF86VidMode extension if available; I'm not sure how common cases where that is inaccurate are. The refresh rate can be specified manually if necessary. After the changes in this commit MPlayer now always tries to keep one frame queued for future display using VDPAU's internal timing mechanism (however no more than 50 ms to the future). This should make video playback somewhat more robust against timing inaccuracies caused by system load.
* | manpage: Fix typo in -noordered-chapters option nameUoti Urpala2009-10-081-1/+1
| | | | | | | | | | The manual page said "-noorderedchapters" without a hyphen while the actual option name is "-noordered-chapters".
* | Merge svn changes up to r29752Uoti Urpala2009-10-062-1/+13
|\| | | | | | | | | | | | | | | | | 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.
| * add a warning to the description of -vf screenshot to add it afterattila2009-10-051-0/+4
| | | | | | | | | | | | | | | | all other filters that should apply to it (fix PEBCAK as seen on #mplayer) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29752 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29731jrash2009-10-011-1/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29746 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document -nosub optionreimar2009-09-281-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29731 b3059339-0415-0410-9bf9-f77b7e298cf2
* | commands: Add set_property_osd and step_property_osdUoti Urpala2009-09-191-0/+8
| |
* | Merge svn changes up to r29684Uoti Urpala2009-09-165-33/+30
|\|
| * sync with en/mplayer.1 r29661jrash2009-09-121-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29672 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29670Gabrov2009-09-113-25/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29671 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Make (no)t23 suboption description more consistent.diego2009-09-081-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29661 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29638jrash2009-09-051-6/+11
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29648 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r29644Uoti Urpala2009-09-043-5/+15
|\|
| * Improve wording for file/directory specific config file explanation.reimar2009-09-031-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29638 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document directory-specific configuration file.reimar2009-09-021-0/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29635 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29555jrash2009-08-291-4/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29580 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Expand wid explanation.cehoyos2009-08-271-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29555 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Adjust documentation about filtering out whitespace changes from 'svn diff'.diego2009-08-261-1/+1
| | | | | | | | | | | | | | 'svn diff' now has builtin whitespace ignore options. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29552 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r29532Uoti Urpala2009-08-185-25/+7
|\|
| * sync with en/mplayer.1 r29461jrash2009-07-311-5/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29462 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update documentation for libamr replacement by OpenCORE in FFmpeg.diego2009-07-303-20/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29461 b3059339-0415-0410-9bf9-f77b7e298cf2
| * undocumented keywordcompn2009-07-301-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29459 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Use light autohinting by default in libassGrigori Goronzy2009-08-071-1/+1
| | | | | | | | | | | | | | FreeType's native hinter causes rendering errors with many fonts, especially with broken fonts that unfortunately tend to be used a lot with SSA/ASS subtitles. Use the light autohinter for unscaled OSD by default to avoid these problems.
* | Merge svn changes up to r29455Uoti Urpala2009-07-294-5/+42
|\|
| * Replace WORDS_BIGENDIAN by HAVE_BIGENDIAN in all internal code.diego2009-07-261-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29443 b3059339-0415-0410-9bf9-f77b7e298cf2
| * grammar and sentence fixptt2009-07-221-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29436 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29413jrash2009-07-181-1/+18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29422 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r39413Gabrov2009-07-131-2/+22
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29418 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r29417Uoti Urpala2009-07-121-0/+20
|\|
| * new debanding filterlorenm2009-07-071-0/+20
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29413 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Remove the internal GUIAnton Khirnov2009-07-077-1323/+10
| | | | | | | | | | | | | | | | | | The GUI is badly designed and too closely coupled to the internal details of other code. The GUI code is in bad shape and unmaintained for years. There is no indication that anyone would maintain it in the future either. Even if someone did volunteer to implement a better integrated GUI having the current code in the tree probably wouldn't help much. So get rid of it.
* | Merge svn changes up to r29412Uoti Urpala2009-07-0711-94/+151
|\|
| * Add a section about handling external code to the policy.diego2009-07-041-0/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29411 b3059339-0415-0410-9bf9-f77b7e298cf2
| * forgot a line :(; addedptt2009-05-281-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29328 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r2769ptt2009-05-281-18/+78
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29327 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29305Gabrov2009-05-248-69/+42
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29319 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r29244gpoirier2009-05-171-7/+20
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29312 b3059339-0415-0410-9bf9-f77b7e298cf2
| * whitespace cosmetics: Remove all trailing whitespace.diego2009-05-1396-1612/+1612
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Remove trailing whitespace from most filesUoti Urpala2009-07-0796-1628/+1611
| |
* | Merge svn changes up to r29304Uoti Urpala2009-07-072-55/+13
|\|
| * Fix IPv4 vs. IPv6 typo, closes Bugzilla #1439.diego2009-05-121-1/+1
| | | | | | | | | | | | | | noticed by Loic Pefferkorn, loic-mplayer loicp eu git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29302 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove redundant information about configuring MPlayer for GUI support.diego2009-05-091-42/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29285 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move image formats section to a more appropriate place.diego2009-05-091-12/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29284 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r29277Uoti Urpala2009-05-0820-107/+164
|\|
| * Adrian is maintaining vo_corevideo and merging the OSX Extended GUI branch.adrian2009-05-071-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29273 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29252jrash2009-05-071-8/+23
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29270 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add missing 'void' to parameterless function declarations.diego2009-05-041-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29254 b3059339-0415-0410-9bf9-f77b7e298cf2
| * ao_macosx was renamed to ao_coreaudio.diego2009-05-049-9/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29253 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Rename macosx video output driver to corevideo.diego2009-05-0418-63/+63
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29252 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Rename macosx audio output driver to coreaudio.diego2009-05-042-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29251 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Ulion no longer has time to be maintainer.diego2009-05-041-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29248 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Support for libbs2b ver. 3.0.0 API.bircoph2009-05-031-4/+20
| | | | | | | | | | | | | | | | Now filter parameters are highly controllable, virtually all audio formats are supported, and new profiles are available. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29244 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r29147gpoirier2009-04-271-11/+40
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29239 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove reference to outdated documentation file.diego2009-04-201-1/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29209 b3059339-0415-0410-9bf9-f77b7e298cf2
| * some updates about translation maintenancediego2009-04-101-5/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29167 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r29150Uoti Urpala2009-04-084-14/+49
|\|
| * synced with r29147Gabrov2009-04-051-3/+24
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29148 b3059339-0415-0410-9bf9-f77b7e298cf2
| * eliminate a trailing whitespaceGabrov2009-04-051-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29147 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29133jrash2009-04-051-8/+24
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29146 b3059339-0415-0410-9bf9-f77b7e298cf2
| * remove startup -volume wish, option was added a while agocompn2009-04-041-2/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29142 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge branch 'ordered_chapters'Uoti Urpala2009-04-081-3/+17
|\ \
| * | Add option -noordered-chapters.Uoti Urpala2009-04-081-0/+5
| | |
| * | Make -fixed-vo the defaultUoti Urpala2009-04-021-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | VO: Don't force window position in X11 VOsUoti Urpala2009-03-311-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Disable by default the code that forcefully moved the video output window to the middle of the screen whenever it was reconfigured or created. That behavior was really annoying when switching video streams within a file, and overriding the window manager like that is not good default behavior for the initial creation of a window either. Add a new option "-force-window-position" that can be used to restore the old behavior.
* | | Merge svn changes up to r29134Uoti Urpala2009-04-021-1/+18
|\ \ \ | | |/ | |/|
| * | Add documentation for libbs2b audio filter.bircoph2009-04-021-0/+17
| | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29133 b3059339-0415-0410-9bf9-f77b7e298cf2
| * | At least direct3d vo supports -xineramascreen, tooreimar2009-04-011-1/+1
| | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29120 b3059339-0415-0410-9bf9-f77b7e298cf2
* | | Merge svn changes up to r29117Uoti Urpala2009-04-0123-679/+768
|\| | | |/ |/|
| * Add forgotten escapes for -reimar2009-03-311-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29115 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Explain relationship between -geometry and -xineramascreen.reimar2009-03-311-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29113 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r29059jrash2009-03-291-6/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29096 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r29059Gabrov2009-03-281-6/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29092 b3059339-0415-0410-9bf9-f77b7e298cf2
| * misc updatesdiego2009-03-271-8/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29070 b3059339-0415-0410-9bf9-f77b7e298cf2
| * typo fixesdiego2009-03-251-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29060 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update date in manual page.diego2009-03-251-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29059 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Rename 'default-binds' input option to 'default-bindings'.diego2009-03-255-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29058 b3059339-0415-0410-9bf9-f77b7e298cf2
| * 1l: There is no more delay since r29051.cehoyos2009-03-251-3/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29055 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify vdpau deinterlacers.cehoyos2009-03-251-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29054 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync with r28984: 17% done.bircoph2009-03-221-508/+504
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29034 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28991.bircoph2009-03-221-7/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29033 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r28991jrash2009-03-221-12/+57
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29032 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix HTML docs generation, broken in r28980.rathann2009-03-191-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29004 b3059339-0415-0410-9bf9-f77b7e298cf2
| * remove trailing whitespacesGabrov2009-03-194-10/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29001 b3059339-0415-0410-9bf9-f77b7e298cf2
| * remove trailing whitespacesGabrov2009-03-191-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29000 b3059339-0415-0410-9bf9-f77b7e298cf2
| * remove trailing whitespaces all over the placeGabrov2009-03-197-15/+15
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28999 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28991Gabrov2009-03-192-23/+27
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28998 b3059339-0415-0410-9bf9-f77b7e298cf2
| * drop obsolete guidelinesrathann2009-03-181-6/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28994 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Allow to use vdpau temporal deinterlacers with hardware accelerated decoding.cehoyos2009-03-181-6/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28991 b3059339-0415-0410-9bf9-f77b7e298cf2
| * 10l: Fix indentation.cehoyos2009-03-181-1/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28987 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Get rid of trailing whitespaces.bircoph2009-03-171-24/+24
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28984 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28979.bircoph2009-03-171-4/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28983 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Avoid an error at the end of chunked HTML doc generation.reimar2009-03-171-2/+4
| | | | | | | | | | | | | | Since doctype was added, xsltproc always needs a target _file_. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28980 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add chroma-deint option to vo vdpau (nochroma-deint speeds up deinterlacing).cehoyos2009-03-161-0/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28979 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28968 with some extra roff markup fixesGabrov2009-03-161-36/+59
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28973 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Initial support for advanced VDPAU deinterlacers (software-decoded videocehoyos2009-03-151-3/+5
| | | | | | | | | | | | | | | | | | only). With a lot of help from Reimar git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28968 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r28958gpoirier2009-03-151-3/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28964 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28958.bircoph2009-03-151-5/+26
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28961 b3059339-0415-0410-9bf9-f77b7e298cf2
| * roff markup: Place \& after abbreviations like i.e. and e.g.diego2009-03-151-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28958 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28951Uoti Urpala2009-03-1410-59/+186
|\|
| * sync w/r28950gpoirier2009-03-141-1/+22
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28951 b3059339-0415-0410-9bf9-f77b7e298cf2
| * KVA vo driver for OS/2, patch by KO Myung-Hun, komh chollian netdiego2009-03-141-0/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28950 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move page heading and table of contents out of the codec support table.diego2009-03-141-12/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28949 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Give table headings more meaningful names.diego2009-03-141-14/+14
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28948 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify that -vo vdpau:deint=n delays video output for n>2 by one frame.cehoyos2009-03-141-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28947 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Set DOCTYPE in xsl-generated HTML documentation.reimar2009-03-141-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28944 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add some info for acm and tips for searchingcompn2009-03-121-5/+36
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28937 b3059339-0415-0410-9bf9-f77b7e298cf2
| * GraphEdit is also available in the Microsoft SDK nowadays.diego2009-03-091-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28924 b3059339-0415-0410-9bf9-f77b7e298cf2
| * typokraymer2009-03-091-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28923 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove native nuv demuxer, it only needs more code to achieve the same thingreimar2009-03-091-1/+0
| | | | | | | | | | | | | | as the libavformat demuxer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28907 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28895Gabrov2009-03-091-7/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28905 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r28895gpoirier2009-03-081-6/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28898 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28895.bircoph2009-03-081-8/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28897 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Treat -font/-subfont as Fontconfig pattern in libass.eugeni2009-03-081-4/+6
| | | | | | | | | | | | Patch by Adrian Stutz (adrian sttz ch). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28895 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a small howto explaining how to cross-compile for MinGWreimar2009-03-081-0/+31
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28881 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Explain that disabling other input methods is not the purpose of -slavereimar2009-03-081-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28880 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add an option to disable the default key binding that MPlayer includesreimar2009-03-081-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28878 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Make pausing_keep_force the default for the set_mouse_pos and key_down_event -reimar2009-03-071-0/+2
| | | | | | | | | | | | | | | | | | different behaviour is unlikely to make sense but it is better to handle this in input.c instead of adding special cases to mplayer.c and being able to override the default behaviour at least should not hurt. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28870 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28862Uoti Urpala2009-03-0710-322/+488
|\|
| * sync w/r28807gpoirier2009-03-061-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28851 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28807Gabrov2009-03-051-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28813 b3059339-0415-0410-9bf9-f77b7e298cf2
| * mphq now runs Subversion 1.5.diego2009-03-051-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28812 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28807.bircoph2009-03-051-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28810 b3059339-0415-0410-9bf9-f77b7e298cf2
| * 10l: Fix max value for -vo vdpau:deint.cehoyos2009-03-041-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28807 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28788Gabrov2009-03-031-3/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28800 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/ r28788gpoirier2009-03-021-7/+64
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28799 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r28707gpoirier2009-03-021-172/+190
| | | | | | | | | | | | | | Patch by %Cedric P Dumez-Viou A obs-nancay P fr% git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28798 b3059339-0415-0410-9bf9-f77b7e298cf2
| * french punctuation cosmeticsgpoirier2009-03-021-50/+49
| | | | | | | | | | | | | | Patch by %Cedric P Dumez-Viou A obs-nancay P fr% git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28797 b3059339-0415-0410-9bf9-f77b7e298cf2
| * - french punctuation cosmetics that was done weeks before.gpoirier2009-03-021-14/+22
| | | | | | | | | | | | | | | | - sync with r23520 Patch by %Cedric P Dumez-Viou A obs-nancay P fr% git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28796 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28788.bircoph2009-03-021-3/+18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28790 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Improve vdpau deinterlacing documentation.cehoyos2009-03-011-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28788 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document that -heartbeat-cmd is only for video, not audio-onlyreimar2009-03-011-0/+1
| | | | | | | | | | | | | | (should this be changed?) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28786 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Use UTF-8 as character set.diego2009-03-011-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28785 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Remove trailing whitespace.diego2009-03-011-25/+25
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28784 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28775Gabrov2009-03-011-2/+14
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28778 b3059339-0415-0410-9bf9-f77b7e298cf2
| * DART audio output driver for OS/2 by KO Myung-Hun, komh chollian netdiego2009-03-011-0/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28775 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r28745jrash2009-03-011-39/+77
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28765 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28745Gabrov2009-02-281-5/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28762 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28755Uoti Urpala2009-02-2811-88/+256
|\|
| * Synced with r28745.bircoph2009-02-281-3/+34
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28755 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update vdpau:deint documentation.cehoyos2009-02-271-2/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28745 b3059339-0415-0410-9bf9-f77b7e298cf2
| * vdpau:pullup only works with temporal and temporal-spatial deinterlacing.cehoyos2009-02-271-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28740 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28736Gabrov2009-02-271-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28739 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r27801 Clarify screenw/screenh options, patch by Christian Ohm, chr.ohm gmx net.kraymer2009-02-261-18/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r27872 Add a few more supported URL protocols r27895 Fix typo in psy-rd x264 option description. r27906 document x264's option subq=0, plus a bit of factoring and added details r27973 add direct3d docs, ok'd by Guillaume r27979 Make description of the option more clear r28056 Add a note about some known issues with -vo sdl r28095 Document missing vo_gl suboptions r28096 Using rectangle=2 for vo_gl is probably a good idea nowadays. r28126 Add support for writing PNG files with alpha channel in -vo png git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28738 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Support "D" to (de-)activate deinterlacing when using vo vdpau.cehoyos2009-02-261-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28736 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document that -field-dominance also works for vdpau.cehoyos2009-02-261-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28735 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r27390 Fix a misleading section in the libavcodec options manualkraymer2009-02-251-52/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r27407 Add video driver for Nintendo Wii/GameCube. r27454 Mention IVTV, S3 and SH_VEU drivers within VIDIX section of manpage. r27466 Document -lavcopts o, aka libavcodec AVOption. r27542 'mp3lame' audio output codec was wrongly listed as 'lame'. r27606 Make -heartbeat-cmd and -stop-xscreensaver sections reference each other. r27638 add lavfopts matroska suboption r27639 document lavc/lavf avoption o suboption r27650 add outdir sub-option to vo png r27690 whitespace cosmetics r27691 vo_fbdev now supports -geometry. r27768 update x264's section with r999 of x264 r27800 improve documentation of latest x264's options r27801 Clarify screenw/screenh options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28733 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28727Gabrov2009-02-253-8/+47
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28730 b3059339-0415-0410-9bf9-f77b7e298cf2
| * copyright year update in man pagesGabrov2009-02-256-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28729 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28728Uoti Urpala2009-02-252-69/+197
|\|
| * Document -vo vdpau:pullup.cehoyos2009-02-241-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28727 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document -vo vdpau:deint.cehoyos2009-02-241-0/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28725 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify -vo vdpau:sharpen.cehoyos2009-02-241-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28722 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document -vo vdpau:denoise.cehoyos2009-02-241-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28721 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document -vo vdpau:sharpen.cehoyos2009-02-241-0/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28720 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync with en/mplayer.1 r28576jrash2009-02-231-69/+173
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28714 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28712Uoti Urpala2009-02-236-12/+44
|\|
| * Synced with r28707.bircoph2009-02-231-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28709 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28706.bircoph2009-02-231-5/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28708 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update faq about power management effect taking into account thatbircoph2009-02-231-1/+1
| | | | | | | | | | | | | | -rtc is default no longer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28707 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update some statements:bircoph2009-02-231-3/+11
| | | | | | | | | | | | | | | | 1) Suggest larger read ahead buffer. 2) Note how sdparm may be used to adjust scsi device speed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28706 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28704.bircoph2009-02-231-1/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28705 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add statistics audio filter that prints information about the audio stream.diego2009-02-211-0/+7
| | | | | | | | | | | | | | patch by Nicolas George, nicolas.george normalesup org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28696 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28690Uoti Urpala2009-02-2111-291/+304
|\|
| * Synced with r28266.bircoph2009-02-211-51/+46
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28682 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28670. (Copyright year update.)bircoph2009-02-191-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28672 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28670Gabrov2009-02-193-12/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28671 b3059339-0415-0410-9bf9-f77b7e298cf2
| * update copyright year at the end of the man pageGabrov2009-02-191-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28670 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Drop official maintainership of ao_pulse since libpulseaudio still hasreimar2009-02-191-1/+1
| | | | | | | | | | | | | | | | no proper (i.e. complete) API documentation and too many bugs I am no longer willing to take responsibility for the ao. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28669 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Try to update libvo.txtreimar2009-02-191-13/+64
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28667 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28660.bircoph2009-02-191-202/+162
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28661 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Another outdated text in <screen> example.bircoph2009-02-191-1/+1
| | | | | | | | | | | | | | Synced with currrent MSGTR_TooManyVideoInBuffer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28660 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Screen example for no audio problem is outdated:bircoph2009-02-191-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | The following MSGTR_* messages changed since then: MSGTR_AO_OSS_CantOpenDev MSGTR_CannotInitAO MSGTR_NoSound MSGTR_StartPlaying Expamle is updated as appropriate. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28657 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Spelling: capitalize pronouns.bircoph2009-02-191-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28656 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28655Uoti Urpala2009-02-194-5961/+5968
|\|
| * Replace the dash sign by &mdash; tag.bircoph2009-02-181-5/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28653 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Exterminate one more trailing whitespace.bircoph2009-02-181-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28652 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync with r26990.bircoph2009-02-181-21/+22
| | | | | | | | | | | | | | Remove trailing whitespaces. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28651 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Current revision is in sync with r28645, because r28644 and r28645bircoph2009-02-181-1/+1
| | | | | | | | | | | | | | doesn't affect Russian translation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28649 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Restore synchronization with r28618.bircoph2009-02-181-1/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28648 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Revert r28597 as requested by Diego in order to be cautious beforebircoph2009-02-181-5937/+5932
| | | | | | | | | | | | | | relese. (Do not convert to UTF-8 for now.) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28647 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Also shorten <channel> to <chan> in the description, not just in the example.diego2009-02-181-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28645 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Shorten one example line to avoid the groff warning:diego2009-02-181-1/+1
| | | | | | | | | | | | | | | | DOCS/man/en/mplayer.1:1905: warning [p 20, 5.7i, div `an-div', 0.0i]: cannot adjust line DOCS/man/en/mplayer.1:1905: warning [p 20, 5.7i]: cannot adjust line git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28644 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync with r28618.bircoph2009-02-181-1/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28642 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28641Uoti Urpala2009-02-183-1/+10
|\| | | | | | | | | | | | | | | Convert vo_x11_border (used in vo_gl/gl2 though the vo_gl_border macro) to use a wrapper macro in old-style VOs which do not provide a VO object argument. Before this function had an explicit global_vo argument in vo_gl/gl2. New vo_vdpau uses it too so use the same mechanism as most other functions.
| * Add note about ffwmv3vdpau.cehoyos2009-02-161-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28618 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for VDPAU video out, including hardware decoding.reimar2009-02-161-0/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28617 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28615.bircoph2009-02-161-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28616 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add ccache usage suggestion to speed up compilation.bircoph2009-02-161-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28615 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28610Uoti Urpala2009-02-166-5913/+6120
|\|
| * synced with r28593Gabrov2009-02-162-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28609 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Change man page encoding from KOI8-R to UTF-8.bircoph2009-02-151-5932/+5932
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28597 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove trailing whitespaces.bircoph2009-02-152-20/+20
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28593 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r28201.bircoph2009-02-151-32/+32
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28592 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Get rid of the trailing whitespaces.bircoph2009-02-151-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28576 b3059339-0415-0410-9bf9-f77b7e298cf2
| * 'Capitalize' mplayer -> MPlayer when used as a project name.bircoph2009-02-151-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28575 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Get rid of trailing whitespaces.bircoph2009-02-151-9/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28573 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix r28506.bircoph2009-02-151-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28572 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync with r28520, 100% done.bircoph2009-02-151-21/+70
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28571 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync with r27979.bircoph2009-02-141-48/+69
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28568 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync with r27639.bircoph2009-02-141-587/+725
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28564 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28549Uoti Urpala2009-02-135-98/+45
|\|
| * synced with r28532Gabrov2009-02-125-98/+45
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28548 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28537Uoti Urpala2009-02-1274-9981/+1174
|\|
| * Convert "advanced audio usage" into from a subsection to a chapter.diego2009-02-111-28/+28
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28532 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Replace a mention of MPlayer by MEncoder in the MEncoder section.diego2009-02-111-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28531 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove outdated FAQ entries.diego2009-02-111-60/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28530 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add priority support for OS/2 and factorize the Windows priority support.diego2009-02-101-2/+2
| | | | | | | | | | | | | | patch by KO Myung-Hun, komh chollian net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28520 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-106-726/+163
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28517 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-106-692/+144
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28516 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-106-710/+148
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28515 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-093-272/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28514 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-096-704/+144
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28513 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync x264 section renaming.diego2009-02-093-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28511 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Use consistent names for codec installation sections.diego2009-02-092-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28510 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-093-215/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28509 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-095-839/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28508 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-095-858/+18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28507 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-095-829/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28506 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removaldiego2009-02-093-625/+21
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28505 b3059339-0415-0410-9bf9-f77b7e298cf2
| * partial sync with obsolete section removalsdiego2009-02-098-1316/+172
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28504 b3059339-0415-0410-9bf9-f77b7e298cf2
| * bruteforce partial sync with obsolete documentation removaldiego2009-02-0911-1935/+222
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28501 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28432Gabrov2009-02-083-165/+59
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28484 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r28415gpoirier2009-02-051-1/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28470 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28461Uoti Urpala2009-02-044-158/+56
|\|
| * Chinese manpage is actually simplified Chinese (zh_CN), so rename the manpagerathann2009-02-011-0/+0
| | | | | | | | | | | | | | | | directory to reflect that. Also update configure to handle two-part lang codes for manpages. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28446 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Reminder for Dominik to update the RPM packaging section.diego2009-02-011-3/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28432 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Rename "ARM" section to "ARM Linux".diego2009-02-011-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28431 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move QNX subsection to commercial Unix section.diego2009-02-011-32/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28429 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move note about binary packages to the top section.diego2009-02-011-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28428 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Reword beginning of MinGW section.diego2009-02-011-5/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28427 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove Amiga/MorphOS section, it only contained outdated information.diego2009-02-011-35/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28426 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove hints about specific binary packages, add a link to the listdiego2009-02-011-19/+3
| | | | | | | | | | | | | | of unofficial packages on our homepage instead. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28425 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove IRIX section, the advice it contained is now obsolete.diego2009-02-011-28/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28424 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a note about POSIX system requirements.diego2009-02-011-0/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28422 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a note about adding /usr/xpg4/bin to your PATH on Solaris.diego2009-02-011-0/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28420 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove remarks about GNU Make being required on some systems.diego2009-02-011-24/+1
| | | | | | | | | | | | | | GNU Make 3.81 or later is required everywhere. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28419 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move GNU Make entry to the top of the list.diego2009-02-011-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28418 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update binutils and compiler sections.diego2009-02-011-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28417 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for libavcodec GMC flag, patch by Dave Baker, dbkr mxtelecom com.diego2009-02-011-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28415 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28348Uoti Urpala2009-01-232-7/+5
|\|
| * The homepage/ subdirectory should no longer be redirected on web mirrors.diego2009-01-201-5/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28347 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r28341gpoirier2009-01-201-2/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28345 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28341Uoti Urpala2009-01-192-10/+33
|\| | | | | | | | | | | Conflicts: configure libmpcodecs/native/rtjpegn.c
| * fix device_id option after r28165gpoirier2009-01-181-1/+2
| | | | | | | | | | | | | | | | | | | | patch by Adrian Stutz %adrian A sttz P ch% Original thread: date Fri, Jan 9, 2009 at 4:03 PM subject [MPlayer-dev-eng] [PATCH] vo_macosx: fix device_id option after r28165 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28341 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r28279gpoirier2009-01-151-9/+31
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28319 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28310Uoti Urpala2009-01-1565-4901/+220
|\| | | | | | | | | | | | | | | The libdvdread4 and libdvdnav directories, which are externals in the svn repository, are at least for now not included in any form. I added configure checks to automatically disable internal libdvdread and libdvdnav if the corresponding directories are not present; if they're added manually then things work the same as in svn.
| * spelling/grammar/wording/whitespacediego2009-01-111-77/+79
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28304 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix d_width vs. d_height typo.diego2009-01-111-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28303 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix decvideo vs. dec_video typo noticed by Vineeth N, nvineeth gmail com.diego2009-01-111-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28302 b3059339-0415-0410-9bf9-f77b7e298cf2
| * removed remaining english wordptt2009-01-111-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28297 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28279Gabrov2009-01-101-6/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28293 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify relationship between -ass and -fontconfig in the man page.eugeni2009-01-071-4/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28279 b3059339-0415-0410-9bf9-f77b7e298cf2
| * looks like I missed r27542...gpoirier2009-01-061-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28277 b3059339-0415-0410-9bf9-f77b7e298cf2
| * update copyright yearGabrov2009-01-0520-11/+21
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28266 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix nonstandard license headers in the documentation.diego2009-01-052-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28263 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28247Gabrov2009-01-052-3/+16
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28261 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync removal of bugs.xml.diego2009-01-0512-845/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28260 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Do not run mkdir in a subshell.diego2009-01-051-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28258 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Skip pointless ignoring return value of 'rm -f'.diego2009-01-051-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28257 b3059339-0415-0410-9bf9-f77b7e298cf2
| * nonrecursive releaseclean targetdiego2009-01-052-10/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28256 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Move clean targets to the bottom.diego2009-01-051-8/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28255 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove pointless language-specific clean and distclean targets.diego2009-01-041-7/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28254 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Subsume clean-html-chunked and clean-html-single targets into clean target.diego2009-01-041-9/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28253 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Get rid of pointless chunked-dir and single-dir targets.diego2009-01-041-9/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28251 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Simplify phony target declaration.diego2009-01-041-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28250 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync audio.xml removal.diego2009-01-0424-1673/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28249 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync history chapter removal.diego2009-01-0417-1504/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28248 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove history chapter; it is outdated and of little practical value.diego2009-01-042-188/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28247 b3059339-0415-0410-9bf9-f77b7e298cf2
| * added support for manual audio substream selection out of 0xFD PES streams ↵nicodvb2009-01-041-0/+10
| | | | | | | | | | | | (Blueray, multistream in the same pid) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28245 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Replace deprecated jack_client_new with jack_client_open.reimar2009-01-041-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28241 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28215Gabrov2009-01-041-4/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28240 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add an option to vo_macosx to set a custom buffer_name.gpoirier2008-12-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows to have multiple instances of MPlayerOSX running without stepping on each other's toes. Patch by Adrian Stutz % adrian A sttz P ch % Original thread: date: Tue, Dec 9, 2008 at 2:46 PM subject: [MPlayer-dev-eng] [PATCH] vo_macosx: option to set shared buffer name to allow multiple instances git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28215 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update outdated availability note for -mouse-movementsreimar2008-12-301-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28213 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28211Gabrov2008-12-307-469/+25
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28212 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add nocache to example dvdnav profile, otherwise dvdnav is unusable.reimar2008-12-291-0/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28208 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove audio output section, it provides little to no useful information.diego2008-12-273-66/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28207 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix Chinese documentation build, English codecs.xml was removed.diego2008-12-271-2/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28206 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix error message examplecompn2008-12-271-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28205 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28204Uoti Urpala2008-12-279-417/+116
|\|
| * Remove (audio) codecs section, its contents are part of the usage section.diego2008-12-273-102/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28204 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Convert Win32 codec importing HOWTO into a text document in the tech section.diego2008-12-273-160/+91
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28203 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove/fix ancient CVS references.diego2008-12-273-13/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28202 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove known bugs section, it contains little useful information.diego2008-12-273-140/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28201 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add entry about mysterious coredumps.diego2008-12-271-0/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28200 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Reorder sections: Put FAQ at the end, group usage sections together.diego2008-12-271-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28198 b3059339-0415-0410-9bf9-f77b7e298cf2
| * grammar fix by Vineeth N, nvineeth gmail comdiego2008-12-251-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28193 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28176Uoti Urpala2008-12-221-0/+3
|\| | | | | | | | | | | Conflicts: libvo/video_out.c libvo/x11_common.c
| * Document vo_macosx's shared_buffer option.gpoirier2008-12-191-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28166 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28162Uoti Urpala2008-12-193-10/+21
|\|
| * synced with r28160Gabrov2008-12-173-10/+21
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28161 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28149Uoti Urpala2008-12-144-4/+12
|\|
| * Update links to RPM packages, now that Livna has merged into RPMFusion.rathann2008-12-142-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28148 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r28126gpoirier2008-12-101-1/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28127 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for writing PNG files with alpha channel in -vo pngreimar2008-12-101-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28126 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28103Uoti Urpala2008-12-063-14/+36
|\|
| * sync w/r28096gpoirier2008-12-051-6/+14
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28100 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Using rectangle=2 for vo_gl is probably a good idea nowadays.reimar2008-12-051-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28096 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document missing vo_gl suboptionsreimar2008-12-051-2/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28095 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r28089Gabrov2008-12-051-5/+14
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28090 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28087Uoti Urpala2008-12-041-2/+6
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: command.c libao2/ao_ivtv.c libao2/ao_v4l2.c libmpcodecs/dec_video.h libvo/aspect.h libvo/sub.c libvo/sub.h libvo/vo_directx.c libvo/vo_macosx.m libvo/vo_quartz.c mp_core.h mplayer.c mplayer.h osdep/getch2.h osdep/timer.h
| * sync w/r28056gpoirier2008-12-031-2/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28071 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28065Uoti Urpala2008-12-021-1/+4
|\|
| * Add a note about some known issues with -vo sdlreimar2008-12-011-1/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28056 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28038Uoti Urpala2008-11-252-79/+88
|\|
| * Another part of sync to 27843torinthiel2008-11-241-76/+80
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28034 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27979gpoirier2008-11-231-3/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28012 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27979Uoti Urpala2008-11-222-2/+8
|\|
| * Make description of the option more clear as suggested by bircoph2008-11-221-2/+3
| | | | | | | | | | | | | | Reimar Döffinger. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27979 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add direct3d docs, ok'd by Guillaumecompn2008-11-211-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27973 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Direct3D based video_out module.reimar2008-11-181-0/+1
| | | | | | | | | | | | | | | | Patch by Georgi Petrov (gogothebee gmail com) Panscan handling is still disabled and needs to be fixed for negative -panscan. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27955 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27949Uoti Urpala2008-11-179-2989/+3714
|\| | | | | | | | | | | | | | | | | Conflicts: common.mak libvo/vo_xv.c libvo/x11_common.c libvo/x11_common.h stream/cache2.c
| * Fix build: Remove some references to sections that no longer exist.diego2008-11-162-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27943 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27938Gabrov2008-11-163-630/+44
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27939 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix phrase to maintain consistency.bircoph2008-11-151-5/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27934 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r26763.bircoph2008-11-151-34/+117
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27932 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27906gpoirier2008-11-141-10/+14
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27909 b3059339-0415-0410-9bf9-f77b7e298cf2
| * document x264's option subq=0, plus a bit of factoring and added detailsgpoirier2008-11-131-8/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27906 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Partial sync to 27843torinthiel2008-11-111-1933/+3027
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27903 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Synced with r25786.bircoph2008-11-081-378/+504
| | | | | | | | | | | | | | | | '-' signs are escaped throughout the manual page. Some spelling fixes. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27901 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27899Uoti Urpala2008-11-0623-1918/+743
|\|
| * sync w/r27895gpoirier2008-11-061-23/+36
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27898 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix typo in psy-rd x264 option description.diego2008-11-041-1/+1
| | | | | | | | | | | | | | Noticed by Grozdan, microchip telenet be. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27895 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix a typo.bircoph2008-11-041-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27891 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove outdated sections.diego2008-11-031-79/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27890 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27885Gabrov2008-11-037-482/+176
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27886 b3059339-0415-0410-9bf9-f77b7e298cf2
| * 44% synced with r22753 (going on... ;))ptt2008-11-031-101/+96
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27885 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a few more supported URL protocolsreimar2008-11-021-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27883 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add an option that sets initial playback volume.diego2008-10-312-0/+12
| | | | | | | | | | | | | | patch by Reimar and rvm, rvm3000 ya com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27872 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Consistently use dashes to separate words in section IDs.diego2008-10-301-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27867 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix typo noticed by Paul TT.diego2008-10-301-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27866 b3059339-0415-0410-9bf9-f77b7e298cf2
| * linking correctionsptt2008-10-301-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27865 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27843ptt2008-10-301-3/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27864 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27843ptt2008-10-301-4/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27863 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27852ptt2008-10-302-191/+166
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27862 b3059339-0415-0410-9bf9-f77b7e298cf2
| * removed, as rev.27771ptt2008-10-301-539/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27861 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27770ptt2008-10-301-50/+59
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27860 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27815ptt2008-10-301-7/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27859 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27640ptt2008-10-301-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27858 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27663ptt2008-10-301-9/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27857 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27683ptt2008-10-301-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27856 b3059339-0415-0410-9bf9-f77b7e298cf2
| * updated links for other commit referenceptt2008-10-301-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27855 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27771ptt2008-10-301-27/+20
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27854 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27833ptt2008-10-301-300/+37
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27853 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move codec installation instructions from the codecs section to a morediego2008-10-302-148/+152
| | | | | | | | | | | | | | sensible place in the installation section. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27852 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Restore XMMS input plugin section from removed section in a better place.diego2008-10-301-0/+18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27851 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27850Uoti Urpala2008-10-305-115/+64
|\|
| * We now require GNU make 3.81.diego2008-10-291-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27850 b3059339-0415-0410-9bf9-f77b7e298cf2
| * zlib is used in many places.diego2008-10-291-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27848 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move libmad codec installation section to software requirements.diego2008-10-292-22/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27847 b3059339-0415-0410-9bf9-f77b7e298cf2
| * section title wording fixesdiego2008-10-281-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27846 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Group codec library installation instructions together in a codecdiego2008-10-281-76/+76
| | | | | | | | | | | | | | installation subsection. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27845 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move general comments from the video codec section to the top level.diego2008-10-281-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27844 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove useless FFmpeg codec section.diego2008-10-284-35/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27843 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27841Uoti Urpala2008-10-282-13/+2
|\| | | | | | | | | Conflicts: mplayer.c
| * Merge two Xvid build steps.diego2008-10-261-4/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27833 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove reference to containers.xml, which was removed.diego2008-10-261-1/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27832 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove notice about necessary tool versions in Xvid section, the info isdiego2008-10-261-3/+1
| | | | | | | | | | | | | | most likely outdated. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27831 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove obsolete and pointless reference to Xvid divxcompat mode.diego2008-10-261-5/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27830 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27828Uoti Urpala2008-10-261-1/+1
|\|
| * minor fix in example command line for userscompn2008-10-251-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27825 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to 27824Uoti Urpala2008-10-2513-878/+150
|\| | | | | | | | | | | | | | | | | | | Conflicts: cfg-common-opts.h libmpcodecs/dec_video.c libmpcodecs/vd.c libvo/x11_common.h mplayer.c stream/cache2.c
| * remove outdated message about outfmt=i420compn2008-10-231-5/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27815 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify screenw/screenh options, patch by Christian Ohm, chr.ohm gmx net.diego2008-10-191-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27801 b3059339-0415-0410-9bf9-f77b7e298cf2
| * improve documentation of latest x264's optionsgpoirier2008-10-181-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27800 b3059339-0415-0410-9bf9-f77b7e298cf2
| * misc updates for the Xvid, x264 and AAC sectionsdiego2008-10-142-77/+30
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27776 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove some pointless and/or outdated codec documentation sections.diego2008-10-141-204/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27773 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove section about containers. Its contents are non-informative, redundant,diego2008-10-142-521/+0
| | | | | | | | | | | | | | outdated and generally not worth the trouble. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27771 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update VIDIX vs. svgalib documentation.diego2008-10-141-8/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27770 b3059339-0415-0410-9bf9-f77b7e298cf2
| * update x264's section with r999 of x264gpoirier2008-10-141-16/+24
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27768 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r27182: apply parameter name change of no-correct-pts from r26842 to man pagekraymer2008-10-081-12/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r27208: dvd:// streams accept the device path in the url; patch by Mathieu SCHROETER mathieu.schroeter gamesover ch r27230: Give all shell scripts a .sh suffix for consistency. r27235: moved o option beetwen m* and p* r27236: another alphabetical order correction r27334: -border/-noborder are supported by gl/gl2, too, but only on Windows. r27337: No idea which vos support -noborder how well, though those based on X11 or running on Windows _should_ work. Just remove that line for now. r27342: Remove outdated "X11 only" from xineramascreen option and try to make clearer what it does and what it does not. r27348: add list of supported vo's to -xineramascreen git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27729 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27691gpoirier2008-10-061-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27725 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27718Gabrov2008-10-054-28/+71
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27719 b3059339-0415-0410-9bf9-f77b7e298cf2
| * vo_fbdev now supports -geometry.diego2008-10-031-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27691 b3059339-0415-0410-9bf9-f77b7e298cf2
| * whitespace cosmeticsdiego2008-10-031-2/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27690 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27688Uoti Urpala2008-10-038-8/+8
|\|
| * fix FAQ about compiling 32 bit mplayer on x86_64gpoirier2008-10-028-8/+8
| | | | | | | | | | | | | | Suggested by Wolfgang Knauf git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27683 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27682Uoti Urpala2008-10-024-30/+86
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Addition of the "outdir" suboption to vo_png in svn was reverted before merging. Conflicts: command.c mplayer.c
| * | Revert "add outdir sub-option to vo png"Uoti Urpala2008-10-022-4/+0
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 22322409ddb527ac855ba71d10dadcb9da415f81. The reverted commit had at least the following problems: - It adds a lot of filesystem handling code to an individual VO. - The added code is duplicated from vo_jpeg.c. - The added code has exit_player() calls. A VO should not exit the whole program. Even if vo_jpeg still has those calls they are a bug that shouldn't spread elsewhere. - The functionality benefit of automatic directory creation is questionable. It was probably only included in vo_jpeg because of the option to automatically create multiple subdirectories (though the utility of that is also questionable); vo_png does not have that.
| * Add a "pause" property to allow checking if MPlayer is paused.reimar2008-10-011-0/+1
| | | | | | | | | | | | Behaviour without pausing_keep_force prefix is a bit weird. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27680 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27651gpoirier2008-09-301-13/+61
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27676 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27607gpoirier2008-09-291-2/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27674 b3059339-0415-0410-9bf9-f77b7e298cf2
| * slave command to get the number of chapters; patch by Kevin DeKorte - ↵nicodvb2008-09-261-0/+1
| | | | | | | | | | | | kdekorte gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27667 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add an experimental pausing_keep_force slave mode command prefixreimar2008-09-251-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27665 b3059339-0415-0410-9bf9-f77b7e298cf2
| * misc fixes for the GUI sectiondiego2008-09-251-8/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27663 b3059339-0415-0410-9bf9-f77b7e298cf2
| * typo fix spotted by diegocompn2008-09-201-8/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27651 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add outdir sub-option to vo pngben2008-09-202-0/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27650 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27649Uoti Urpala2008-09-204-22/+85
|\| | | | | | | | | | | | | Conflicts: Makefile configure libvo/x11_common.c
| * add windows NUL infocompn2008-09-191-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27640 b3059339-0415-0410-9bf9-f77b7e298cf2
| * document lavc/lavf avoption o suboptioncompn2008-09-191-10/+48
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27639 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add lavfopts matroska suboptioncompn2008-09-181-0/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27638 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27607Gabrov2008-09-141-7/+25
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27608 b3059339-0415-0410-9bf9-f77b7e298cf2
| * wording consistency cosmeticsdiego2008-09-141-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27607 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Make -heartbeat-cmd and -stop-xscreensaver sections reference each other.reimar2008-09-141-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27606 b3059339-0415-0410-9bf9-f77b7e298cf2
| * multiple locales in mplayer wishcompn2008-09-131-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27598 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27573Uoti Urpala2008-09-104-428/+552
|\| | | | | | | | | Conflicts: libmpcodecs/vd_ffmpeg.c
| * sync w/r26990 and wording fixes, patch by Cédric Viougpoirier2008-09-101-73/+65
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27572 b3059339-0415-0410-9bf9-f77b7e298cf2
| * wording fixes by Cédric Viougpoirier2008-09-101-34/+66
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27571 b3059339-0415-0410-9bf9-f77b7e298cf2
| * typography and wording fixes, by Cédric Viou and myselfgpoirier2008-09-101-197/+268
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27570 b3059339-0415-0410-9bf9-f77b7e298cf2
| * more French typography fixes and wording fixes, by Cédric Viou and myselfgpoirier2008-09-091-72/+84
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27560 b3059339-0415-0410-9bf9-f77b7e298cf2
| * lots of fixes, original patch by Cédric Viougpoirier2008-09-091-50/+67
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27559 b3059339-0415-0410-9bf9-f77b7e298cf2
| * 'mp3lame' audio output codec was wrongly listed as 'lame'.diego2008-09-071-2/+2
| | | | | | | | | | | | | | noticed by Robert Vincenz, vincenz.robert t-online de git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27542 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27514Uoti Urpala2008-09-033-16/+42
|\|
| * synced with r27454ptt2008-08-271-15/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27488 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27466gpoirier2008-08-151-1/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27468 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document -lavcopts o, aka libavcodec AVOption.michael2008-08-151-0/+15
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27466 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27458Uoti Urpala2008-08-123-35/+35
|\|
| * Mention IVTV, S3 and SH_VEU drivers within VIDIX section of manpage.ben2008-08-112-4/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27454 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27348, patch by JRaSHgpoirier2008-08-111-17/+23
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27450 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/27407 + fixesgpoirier2008-08-091-14/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27446 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27441Uoti Urpala2008-08-084-16/+21
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cfg-common-opts.h command.c configure input/input.c libmpcodecs/dec_video.c libmpcodecs/vd.c libmpdemux/stheader.h libvo/sub.c libvo/video_out.c libvo/vo_xv.c libvo/vosub_vidix.c libvo/x11_common.c libvo/x11_common.h mp_core.h mplayer.c stream/stream.h
| * synced with r27420Gabrov2008-08-061-15/+11
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27421 b3059339-0415-0410-9bf9-f77b7e298cf2
| * typo fix, bump sync taggpoirier2008-08-031-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27408 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add video driver for Nintendo Wii/GameCube.ben2008-08-033-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Original patch by Jing Liu <fatersh-1@yahoo.com>, based on vo_fbdev.c and adapted to Nintendo's specific GPU. This driver handles dedicated ATI GPU, which can be found in: - Nintendo GameCube (ATI LSI Flipper @ 162 MHz) - Nintendo Wii (ATI Hollywood @ 243 MHz) Flipper and Hollywood chipsets are pretty similar, except from clock speed: - Embedded framebuffer is 2MB. - Texture cache is 1MB. - Vertex cache is 0.1 MB. - Framebuffer is YUY2, not RGB. - Best resolution is 480p (854x480) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27407 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27399Uoti Urpala2008-08-022-12/+2
|\| | | | | | | | | | | | | | | | | | | Conflicts: libmpcodecs/vd.c libmpcodecs/ve_raw.c libvo/video_out.c libvo/x11_common.c mplayer.c
| * Fix a misleading section in the libavcodec options manual indicating that adiego2008-08-011-11/+1
| | | | | | | | | | | | | | | | | | rc_eq of 1 will return a CBR encode and a rc_eq of tex a const QP encode; likewise for qcomp. patch by tripp, eliared yahoo com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27390 b3059339-0415-0410-9bf9-f77b7e298cf2
| * bump sync taggpoirier2008-07-301-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27380 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27374Uoti Urpala2008-07-302-2/+7
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cfg-common-opts.h cfg-mplayer.h command.c configure libmpcodecs/dec_video.c libmpcodecs/vd.c libmpcodecs/vf_vo.c libmpdemux/demuxer.h libmpdemux/stheader.h mp_core.h mplayer.c stream/stream_radio.c
| * synced with r27348ptt2008-07-281-2/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27360 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add list of supported vo's to -xineramascreencompn2008-07-251-0/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27348 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27347Uoti Urpala2008-07-254-14/+39
|\| | | | | | | | | | | | | | | | | | | | | Conflicts: libvo/x11_common.c libvo/x11_common.h Rename the vo_gl macro "vo_border()" to "vo_gl_border" as it conflicts with the global variable "vo_border"; done in the merge commit because uses of the macro needed changes anyway to resolve conflicts.
| * Add some more information about FTP mirror setup.diego2008-07-241-4/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27347 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix mailinglist vs. mailing list typo.diego2008-07-241-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27346 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove outdated "X11 only" from xineramascreen option and try to make clearerreimar2008-07-241-1/+4
| | | | | | | | | | | | | | what it does and what it does not. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27342 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27337gpoirier2008-07-231-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27341 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync'd with r27337ptt2008-07-231-2/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27340 b3059339-0415-0410-9bf9-f77b7e298cf2
| * No idea which vos support -noborder how well, though those based onreimar2008-07-221-1/+0
| | | | | | | | | | | | | | | | X11 or running on Windows _should_ work. Just remove that line for now. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27337 b3059339-0415-0410-9bf9-f77b7e298cf2
| * -border/-noborder are supported by gl/gl2, too, but only on Windows.reimar2008-07-221-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27334 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add instructions how to test the DNS round-robin virtual host, add adiego2008-07-221-0/+21
| | | | | | | | | | | | | | webserver configuration checklist and a note about netiquette. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27333 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27332Uoti Urpala2008-07-2127-198/+194
|\|
| * docs build fixhenry2008-07-191-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27329 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Only build the documentation in the languages requested from configure.diego2008-07-191-11/+10
| | | | | | | | | | | | | | | | Fixes Bugzilla #978. inspired by a patch from Jonas Berlin, bugs outerspace.dyndns org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27328 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27326Gabrov2008-07-1818-176/+166
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27327 b3059339-0415-0410-9bf9-f77b7e298cf2
| * added missing revisions (26762 & 26795)ptt2008-07-181-0/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27326 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add IDs to some XML elements to avoid warnings.diego2008-07-156-10/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27292 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27242Uoti Urpala2008-07-0920-84/+222
|\| | | | | | | | | | | | | Conflicts: Makefile configure
| * sync w/r27236gpoirier2008-07-091-9/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27241 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r27236ptt2008-07-081-35/+175
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27237 b3059339-0415-0410-9bf9-f77b7e298cf2
| * another alphabetical order correctionptt2008-07-081-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27236 b3059339-0415-0410-9bf9-f77b7e298cf2
| * moved o option beetwen m* and p*ptt2008-07-081-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27235 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Give all shell scripts a .sh suffix for consistency.diego2008-07-0718-26/+26
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27230 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix a FIXME: give the URL of the list of mailing lists (since we don't have ↵gpoirier2008-07-052-4/+2
| | | | | | | | | | | | a direct link to the list of archives) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27211 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Sync with r27208.diego2008-07-051-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27209 b3059339-0415-0410-9bf9-f77b7e298cf2
| * dvd:// streams accept the device path in the url; patch by Mathieu SCHROETER ↵nicodvb2008-07-051-1/+1
| | | | | | | | | | | | mathieu.schroeter gamesover ch git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27208 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27202Uoti Urpala2008-07-051-3/+3
|\|
| * r27182: apply parameter name change of no-correct-pts from r26842 to man pagekraymer2008-07-041-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27202 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27184Uoti Urpala2008-07-017-152/+558
|\|
| * sync w/r27182gpoirier2008-07-011-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27184 b3059339-0415-0410-9bf9-f77b7e298cf2
| * apply parameter name change of no-correct-pts from r26842 to man pagekraymer2008-07-011-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27182 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27179 + misc fixes of untranslated chunksgpoirier2008-06-301-16/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27181 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r26502: Document rgbtest argumentskraymer2008-06-301-44/+164
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r26057: Fix copy&paste typo in rgbtest documentation r26198: Grayscale encoding/decoding with FFmpeg is no longer enabled, remove references r26221: Try to fix the description of what mbcmp influences, please fix if I misunderstood the code. r26231: better syntax for A key r26232: added missing escapes r26260: Experimental support for -framedrop with -correct-pts. r26271: Mention that '-frames 0' is useful with -identify, closes bug #1046. r26273: add "ipod" to the list of formats handled by lavf r26297: compacted new libavformat's 'ipod' description r26402: Enable runtime control for colorful and/or module name output r26427: Restore grayscale decoding support with FFmpeg. r26449: 10L, forgot to commit the documentation for the -noconfig options. r26460: restore options alphabetical order r26650: Update documentation for the gl2 driver to make clear gl is usually preferred. r26674: add h264 to list of supported codecs r26732: Mark new options Michael committed as undocumented. r26739: Oops, remove stray .TP. r26749: -psprobe can be used in mpeg-pes streams, too r26762: Add a new suboption to -vo xv and -vo xvmc that allows selection r26763: Remove '(pass 1/2)' from some lavcopts. These options really worked on r26795: Add support for AppleIR Remote as an input under Linux systems. r26798: Document the -noar command-line option in en/fr manpages. r26806: Document x264's AQ options r26853: Update gl vo section with the new force-pbo suboption. r26909: Add a slave command to stop stream playback. r26979: small spelling/wording fixes r26986: Document VIDIXIVTVALPHA environment variable. r26997: Fix codec-specific options syntax declaration to be less confusing and wrong. r27057: Ability for specifying TV standard individually for each TV channel. r27132: Fix/restore the description of the rectangle video filter. previously applied: r27169: add missing escapes and full stops for scaletempo filter r27179: remove two trailing whitespaces git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27180 b3059339-0415-0410-9bf9-f77b7e298cf2
| * remove two trailing whitespaceskraymer2008-06-301-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27179 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r25756: Document vo gl lscale=3kraymer2008-06-301-16/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r25757: Add experimental unsharp-mask OpenGL scaler. r25767: misc spelling fixes r25768: misc markup fixes r25769: better ao/vo profile examples r25786: Add a fragment program for 5x5 unsharp masking r25821: (instead of adding quotation mark, this added a missing paragraph!) r25955: (previously applied) r25973: Hint about possible libmpeg2 problems with -hardframedrop r25984: Slightly document alpha for OSD color r26014: -dumpstream will not dump chapters anymore r26015: Document that framedrop needs -no-correct-pts r26017: removed wrong example git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27178 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r25385: Add new audio filter for encoding multi-channel audio into ac3 at ↵kraymer2008-06-301-10/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | runtime. r25389: Support using unrar executable to access rar-compressed vobsub files. r25440: Fix the expand text's format by the source. r25455: (previously applied) typo noticed by Paul TT r25529: Support ?(!NAME:TEXT) format for expanding string by property. r25566: update copyright year to 2008 r25585: Add an example for dvdnav:// usage with path. r25587: when {v|a}_o_mpegpes:card isn't specified by the user [...] r25607: documented angle commands r25610: Allow overriding [Script Info] parameters with -ass-force-style option. r25639: Add heartbeat-cmd option r25656: dvd-device can specify iso files too r25657: dumpstream is NOT a better way to copy a dvd title r25665: updated english manpage with protocol/extension profile loading feature r25671: document vo.* and ao.* playback profiles r25751: Extend heartbeat-cmd man page entry r25752: Seems that all - should be escaped in the man page r25762: added missing escapes r25763: added missing "&" git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27177 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r25179: Add missing forced linebreak, slight wording improvement.kraymer2008-06-301-21/+39
| | | | | | | | | | | | | | | | | | | | | | | | r25189: Add an example for play DTS-CD with passsthrough. r25194: -identify shows chapters times when playing dvd streams r25314: cleanup and conformation of values description for -ass-hinting r25315: minor spelling/grammar fixes r25343: Fix all current known multi-channel wrong order problems [...] r25379: Fix libass to support -nofontconfig. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27176 b3059339-0415-0410-9bf9-f77b7e298cf2
| * consistency fix: capitalize Windows Media Player, and add <application> tag ↵gpoirier2008-06-301-2/+3
| | | | | | | | | | | | around it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27175 b3059339-0415-0410-9bf9-f77b7e298cf2
| * misc fixes, patch by Cédric Viougpoirier2008-06-301-18/+14
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27174 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27132, patch by JRaSHgpoirier2008-06-301-9/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27173 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27169gpoirier2008-06-301-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27172 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add missing escapes and full stops for scaletempo filterkraymer2008-06-301-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27169 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r24808: Add a space behind openal to get minimum length of 7kraymer2008-06-301-6/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r24809: Replace Polyp- by PulseAudio output. r24820: Clarify that -vo gl bicubic filtering is B-spline, not polynomial r24837: Spelling, vf_ow parameters are optional. r24875: program switching in demux_lavf r24897+r24909 (already applied by Diego in r24955, at least in parts - did not check) r24924: Add audio filter scaletempo r24950: Explain new ao_pulse option syntax r24952, r24953, r24954: (appears to be in current version already, probably due to r24955) r25134: Fix a wrong cmdline example of using -menu-chroot. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27168 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r24772: DirectShow based tv:// driver for win32kraymer2008-06-301-3/+30
| | | | | | | | | | | | | | | | | | | | r24783: Consistently set NOTE: in italics. r24784: small grammar fix r24785: Add -lavfdopts cryptokey r24807: Docs update: -ao openal handles more than one channels since some time already git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27167 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r24727: H.264 content can also be decoded with multiple threadskraymer2008-06-301-6/+21
| | | | | | | | | | | | | | | | r24740: misc roff fixes r24746: document filter -vf ow: Overcomplete Wavelet denoiser. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27166 b3059339-0415-0410-9bf9-f77b7e298cf2
| * version bump to 24719kraymer2008-06-301-6/+6
| | | | | | | | | | | | | | remove some trailing whitespaces (no idea how these got there..) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27165 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27132gpoirier2008-06-271-3/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27139 b3059339-0415-0410-9bf9-f77b7e298cf2
| * one more wish, and an updatecompn2008-06-261-1/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27138 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix/restore the description of the rectangle video filter.diego2008-06-241-2/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27132 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27123Uoti Urpala2008-06-237-119/+180
|\| | | | | | | | | | | | | Conflicts: libmenu/menu_filesel.c libmenu/menu_pt.c
| * sync w/r27107, patch by Cédric Viougpoirier2008-06-201-42/+87
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27110 b3059339-0415-0410-9bf9-f77b7e298cf2
| * use the new URL of NUT container websitegpoirier2008-06-201-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27107 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27102, patch by Cédric Viou and minor fixes by myselfgpoirier2008-06-201-62/+74
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27105 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix a couple of broken URL linksgpoirier2008-06-202-4/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27102 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Change DVDNAV command key names.ben2008-06-191-7/+9
| | | | | | | | | | | | | | | | Parameters now use a string much more intuitive than previous int value. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27100 b3059339-0415-0410-9bf9-f77b7e298cf2
| * It cannot hurt to add -E to the diff options to avoid whitespace changes.diego2008-06-171-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27096 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27057gpoirier2008-06-171-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27094 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27092Uoti Urpala2008-06-179-970/+1799
|\| | | | | | | | | | | | | | | Conflicts: libmpdemux/demuxer.c libvo/vo_xv.c mencoder.c
| * Ability for specifying TV standard individually for each TV channel.voroshil2008-06-141-1/+1
| | | | | | | | | | | | | | | | Slightly modified patch by Ildar devel at pop3 dot ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27057 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r23225, plus misc fixesgpoirier2008-06-111-41/+104
| | | | | | | | | | | | | | Patch by Cédric Viou git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27054 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix w/r24604, misc fixesgpoirier2008-06-111-25/+132
| | | | | | | | | | | | | | Patch by Cédric Viou git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27053 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r21537 and misc fixesgpoirier2008-06-111-92/+196
| | | | | | | | | | | | | | patch by Cédric Viou git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27052 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix file to conform to French typographygpoirier2008-06-111-200/+182
| | | | | | | | | | | | | | | | fix parts that were left out by some previous translation updates. Patch by Cedric Viou git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27051 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add missing <application> tag around MPlayer,gpoirier2008-06-111-1/+2
| | | | | | | | | | | | | | patch by Cedric Viou git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27050 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26997gpoirier2008-06-111-4/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27049 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r27044, patch by Cedric Dumez-Viou %Cedric P Dumez-Viou A obs-nancay ↵gpoirier2008-06-101-708/+1243
| | | | | | | | | | | | P fr% git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27048 b3059339-0415-0410-9bf9-f77b7e298cf2
| * libdvdnav need libdvdread from the same repositorynicodvb2008-06-101-1/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27047 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add information about the mga_vid Subversion repository.diego2008-06-091-1/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27044 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Mention that svgalib_helper only works with kernel 2.4.x.diego2008-06-091-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27043 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Make a section out of the svgalib_helper paragraph.diego2008-06-091-0/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27042 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26853gpoirier2008-06-081-5/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27039 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27025Uoti Urpala2008-06-0720-237/+281
|\| | | | | | | | | | | | | | | | | Conflicts: command.c libvo/vosub_vidix.c libvo/vosub_vidix.h mplayer.c
| * Restore support for compiling with svgalib_helper.diego2008-06-071-7/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27025 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix codec-specific options syntax declaration to be less confusing and wrong.diego2008-06-061-1/+1
| | | | | | | | | | | | | | | | The option separator is a colon, all options can receive parameters, not just the first one. Closes Bugzilla #1100. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26997 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26806gpoirier2008-06-061-1/+23
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26996 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix fixes, patch by Benoit Fouetgpoirier2008-06-041-60/+58
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26991 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Run the whole documentation through ispell.diego2008-06-0416-67/+67
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26990 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove another reference to a removed configure option.diego2008-06-041-4/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26989 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove references to removed configure options.diego2008-06-041-3/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26988 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Get rid of needless emphasis.diego2008-06-041-17/+10
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26987 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document VIDIXIVTVALPHA environment variable.diego2008-06-041-0/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26986 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move Matrox TV-out cable section to the end of the Matrox chapter.diego2008-06-041-26/+26
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26985 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move Matrox TV-out cable instructions into their own section.diego2008-06-041-2/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26984 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix some typos and update the Matrox TV output section. The relevantdiego2008-06-041-30/+9
| | | | | | | | | | | | | | tools are no longer part of the MPlayer source tree. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26983 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26909, patch by JRaSH %jrash06 A 163 P com%gpoirier2008-06-041-25/+78
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26981 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove due to objections by ivan.michael2008-06-041-1/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26980 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r26979Uoti Urpala2008-06-0425-384/+496
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * small spelling/wording fixesdiego2008-06-041-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26979 b3059339-0415-0410-9bf9-f77b7e298cf2
| * mphq2 runs svn 1.4.x.diego2008-06-041-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26978 b3059339-0415-0410-9bf9-f77b7e298cf2
| * correct spelling error ;)ivo2008-06-031-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26976 b3059339-0415-0410-9bf9-f77b7e298cf2
| * List more actions which have proven controversial in the past.michael2008-06-031-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26975 b3059339-0415-0410-9bf9-f77b7e298cf2
| * grammar fixes by Benoit Fouetgpoirier2008-06-031-9/+9
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26974 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26920, patch by Cedric Dumez-Viou %Cedric P Dumez-Viou A obs-nancay ↵gpoirier2008-06-031-23/+32
| | | | | | | | | | | | P fr% git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26973 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add missing <option> tags around the option "filmdint"gpoirier2008-06-031-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26972 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix incorrect XML structure (I should have been more carefull when I checked ↵gpoirier2008-06-031-0/+1
| | | | | | | | | | | | in the previous version) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26971 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26936, patch by Cedric Viou % Cedric P Dumez-Viou A obs-nancay P fr %gpoirier2008-06-031-129/+124
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26970 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add reverting commits to the list of potentially controversial actions.diego2008-06-031-0/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26969 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r26967Gabrov2008-06-024-20/+18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26968 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Change spelling of XviD to Xvid as has already been done in the (rest of the)diego2008-05-313-3/+3
| | | | | | | | | | | | | | documentation. The name change was effected a few years ago already. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26940 b3059339-0415-0410-9bf9-f77b7e298cf2
| * warn to always disable the internal dvdread; still menus are supported nownicodvb2008-05-311-3/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26937 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add install-dhahelperwin target to simplify dhahelper installation on Windows.diego2008-05-301-4/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26936 b3059339-0415-0410-9bf9-f77b7e298cf2
| * dhasetup.exe can be created via make instead of calling gcc directly.diego2008-05-301-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26931 b3059339-0415-0410-9bf9-f77b7e298cf2
| * typo noticed by Mark Pilgrim, mark diveintomark orgdiego2008-05-291-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26925 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Revert commit r26897.iive2008-05-283-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | XviD is the correct spelling of the codec. You can see it written in the codec own documentation and header files. Prefered name capitalization confirmed in conversation with XviD developer (prunedtree). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26915 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Merge drivers/Makefile into top-level Makefile.diego2008-05-281-8/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26914 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a slave command to stop stream playback.ben2008-05-273-0/+7
| | | | | | | | | | | | | | | | | | Mostly useful when used with -idle mode. Patch by Mathieu Schroeter ( mathieu dot schroeter at gamesover dot ch ) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26909 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: XviD --> Xviddiego2008-05-273-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26897 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r26853Gabrov2008-05-231-7/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26860 b3059339-0415-0410-9bf9-f77b7e298cf2
| * little fixesptt2008-05-231-29/+29
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26859 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update gl vo section with the new force-pbo suboption.reimar2008-05-221-4/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26853 b3059339-0415-0410-9bf9-f77b7e298cf2
| * fix a lot of misstranslations and typos, patch by Cedric Dumez-Viougpoirier2008-05-225-28/+28
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26852 b3059339-0415-0410-9bf9-f77b7e298cf2
| * r26675: update paragraphs related to x264, and update its checkout commandvoroshil2008-05-213-26/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | r26729: MPlayer uses Subversion, not GIT, 10L to me, and thanks to Mizda for spotting this r26287: remove excessive space character r26451: As of r19025, the "above link" refers to an article, not a guide. r26452: Refer to where encoding quality is described. r26453: typo: crahes --> crashes r26474: add better information about inverse-telecining with vf_filmdint r26711: Consistency fix: all DVD encoding examples had ":aspect=16/9" option, so put r26258: fix typo: lavcoptc --> lavcopts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26847 b3059339-0415-0410-9bf9-f77b7e298cf2
| * left an english phrase in, removed.ptt2008-05-211-98/+92
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26843 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r26839Gabrov2008-05-201-25/+71
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26840 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document x264's AQ optionsgpoirier2008-05-181-0/+21
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26806 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Document the -noar command-line option in en/fr manpages.ben2008-05-182-0/+8
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26798 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for AppleIR Remote as an input under Linux systems.ben2008-05-182-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | This requires Linux 2.6 with evdev and appleir drivers. The keymapping is done to mimics the one that was done for MacOSX. WARNING: Most distributions do not seems to bother and only let root access to the device. Modify udev rules accordingly if you want regular user to be able to use the remote. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26795 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r26783Uoti Urpala2008-05-159-95/+167
|\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile common.mak configure libmpcodecs/vd_ffmpeg.c libmpdemux/demux_mkv.c libvo/vo_xv.c mplayer.c
| * its typo spotted by diegocompn2008-05-141-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26773 b3059339-0415-0410-9bf9-f77b7e298cf2
| * clean up dll keywordcompn2008-05-141-4/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26768 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26762gpoirier2008-05-141-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26766 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove '(pass 1/2)' from some lavcopts. These options really worked oncorey2008-05-131-15/+15
| | | | | | | | | | | | | | | | | | all passes, and most options that worked on all passes weren't marked at all. It's valid to assume that any option not marked otherwise will work on all passes. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26763 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add a new suboption to -vo xv and -vo xvmc that allows selectionben2008-05-132-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | of XVideo adaptor to be used (instead of default one, which is #0). This is useful for example if you'd rather like to use the original Overlay renderer of your GPU instead of the texture blitting engine (which is usually default), which is number one cause of nasty video tearing effects. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26762 b3059339-0415-0410-9bf9-f77b7e298cf2
| * -psprobe can be used in mpeg-pes streams, toonicodvb2008-05-121-4/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26749 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Oops, remove stray .TP.diego2008-05-111-1/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26739 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26732gpoirier2008-05-111-1/+15
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26737 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Mark new options Michael committed as undocumented.diego2008-05-111-0/+15
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26732 b3059339-0415-0410-9bf9-f77b7e298cf2
| * synced with r26729Gabrov2008-05-113-17/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26730 b3059339-0415-0410-9bf9-f77b7e298cf2
| * MPlayer uses Subversion, not GIT, 10L to me, and thanks to Mizda for ↵gpoirier2008-05-111-1/+1
| | | | | | | | | | | | spotting this git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26729 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Consistency fix: all DVD encoding examples had ":aspect=16/9" option, so putgpoirier2008-05-101-4/+4
| | | | | | | | | | | | | | it everywhere else. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26711 b3059339-0415-0410-9bf9-f77b7e298cf2
| * sync w/r26674gpoirier2008-05-091-12/+13
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26705 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add paragraph about homepage translation.diego2008-05-081-0/+17
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26689 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Clarify order of importance for translations.diego2008-05-081-1/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26688 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move some blocks around for better text structuring.diego2008-05-081-35/+35
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26687 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add paragraph headings.diego2008-05-081-0/+12
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26686 b3059339-0415-0410-9bf9-f77b7e298cf2
| * small wording fixdiego2008-05-071-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26685 b3059339-0415-0410-9bf9-f77b7e298cf2
| * more complete mphelp_check.py command lines, typo, clarificationsdiego2008-05-071-4/+5
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26684 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r26680Uoti Urpala2008-05-073-14/+18
|\| | | | | | | | | | | | | | | Conflicts: Makefile configure osdep/timer-darwin.c
| * synced with r26674ptt2008-05-061-5/+7
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26676 b3059339-0415-0410-9bf9-f77b7e298cf2
| * update paragraphs related to x264, and update its checkout commandgpoirier2008-05-061-6/+6
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26675 b3059339-0415-0410-9bf9-f77b7e298cf2
| * add h264 to list of supported codecscompn2008-05-051-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26674 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update documentation for the gl2 driver to make clear gl is usually preferred.reimar2008-05-031-2/+4
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26650 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r26599Uoti Urpala2008-04-301-2/+2
|\|
| * change cvs > svncompn2008-04-291-2/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26598 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Remove _s/_st suffix from some struct namesUoti Urpala2008-04-251-10/+10
|/ | | | | Since the names are always used after the keyword "struct" having a suffix as in "struct demuxer_st" is almost completely pointless.
* Move phony target declaration to the bottom of the file; add distclean target.diego2008-04-221-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26492 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26484Gabrov2008-04-212-20/+63
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26485 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r26460, patch by JRaSH %jrash06 A 163 P com%gpoirier2008-04-211-17/+54
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26484 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r26460gpoirier2008-04-211-8/+46
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26482 b3059339-0415-0410-9bf9-f77b7e298cf2
* add better information about inverse-telecining with vf_filmdintcorey2008-04-201-12/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26474 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26460ptt2008-04-181-2/+40
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26461 b3059339-0415-0410-9bf9-f77b7e298cf2
* restore options alphabetical orderptt2008-04-181-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26460 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo: crahes --> crashescorey2008-04-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26453 b3059339-0415-0410-9bf9-f77b7e298cf2
* Refer to where encoding quality is described.corey2008-04-151-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26452 b3059339-0415-0410-9bf9-f77b7e298cf2
* As of r19025, the "above link" refers to an article, not a guide.corey2008-04-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26451 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10L, forgot to commit the documentation for the -noconfig options.albeu2008-04-141-0/+22
| | | | | | | Patch by Andrew Savchenko (Bircoph -at- list -dot- ru). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26449 b3059339-0415-0410-9bf9-f77b7e298cf2
* Restore grayscale decoding support with FFmpeg.diego2008-04-131-1/+8
| | | | | | | Removing support was done due to a silly misunderstanding. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26427 b3059339-0415-0410-9bf9-f77b7e298cf2
* Enable runtime control for colorful and/or module name outputzuxy2008-04-121-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26402 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26333Gabrov2008-04-053-8/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26334 b3059339-0415-0410-9bf9-f77b7e298cf2
* add switch_aspect cycle wishcompn2008-04-041-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26324 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26297ptt2008-03-281-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26298 b3059339-0415-0410-9bf9-f77b7e298cf2
* compacted new libavformat's 'ipod' descriptionptt2008-03-281-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26297 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26073ptt2008-03-271-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26294 b3059339-0415-0410-9bf9-f77b7e298cf2
* it's synced with r23520ptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26293 b3059339-0415-0410-9bf9-f77b7e298cf2
* it's synced with r26258ptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26292 b3059339-0415-0410-9bf9-f77b7e298cf2
* it's synced with r24035ptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26291 b3059339-0415-0410-9bf9-f77b7e298cf2
* it's synced with r25566ptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26290 b3059339-0415-0410-9bf9-f77b7e298cf2
* it's synced with 26146ptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26289 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 23516 (it was already ok)ptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26288 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove excessive space characterptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26287 b3059339-0415-0410-9bf9-f77b7e298cf2
* grammar fixptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26286 b3059339-0415-0410-9bf9-f77b7e298cf2
* 38% synced with r22753ptt2008-03-271-81/+82
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26285 b3059339-0415-0410-9bf9-f77b7e298cf2
* better explanation and grammar fixptt2008-03-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26282 b3059339-0415-0410-9bf9-f77b7e298cf2
* grammar fixptt2008-03-271-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26281 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26271ptt2008-03-251-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26274 b3059339-0415-0410-9bf9-f77b7e298cf2
* add "ipod" to the list of formats handled by lavfgpoirier2008-03-251-0/+3
| | | | | | | Patch by Mark Himsley %mark A mdsh P com% git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26273 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mention that '-frames 0' is useful with -identify, closes bug #1046.diego2008-03-241-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26271 b3059339-0415-0410-9bf9-f77b7e298cf2
* add complete fifo instructions, user didnt know to use mkfifo first.compn2008-03-211-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26267 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26260ptt2008-03-191-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26265 b3059339-0415-0410-9bf9-f77b7e298cf2
* Experimental support for -framedrop with -correct-pts.reimar2008-03-171-2/+2
| | | | | | | | The code is not really correct, but it is very little and works "well enough" to be useful in my tests. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26260 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typo: lavcoptc --> lavcoptsdiego2008-03-175-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26258 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix missed part of previous sync.voroshil2008-03-161-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26256 b3059339-0415-0410-9bf9-f77b7e298cf2
* r26072: removed nonsense in the dvbin sectionvoroshil2008-03-161-3/+5
| | | | | | | r26073: warn to always include PMT and PCR pids in channels.conf (dvb) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26255 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync tag updatevoroshil2008-03-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26254 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26251Gabrov2008-03-162-15/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26252 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26232ptt2008-03-141-13/+38
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26234 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26014ptt2008-03-131-28/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26233 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing escapesptt2008-03-131-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26232 b3059339-0415-0410-9bf9-f77b7e298cf2
* better syntax for A keyptt2008-03-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26231 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed an english line left inptt2008-03-131-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26229 b3059339-0415-0410-9bf9-f77b7e298cf2
* 34% synced with r22753ptt2008-03-111-176/+177
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26224 b3059339-0415-0410-9bf9-f77b7e298cf2
* Try to fix the description of what mbcmp influences, please fix if I ↵reimar2008-03-111-1/+4
| | | | | | misunderstood the code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26221 b3059339-0415-0410-9bf9-f77b7e298cf2
* Grayscale encoding/decoding with FFmpeg is no longer enabled, remove referencesdiego2008-03-071-8/+1
| | | | | | | from the documentation and the relevant options from the glue code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26198 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r26057, patch by JRaSH jrash06 A 163 P comgpoirier2008-03-061-7/+38
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26184 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some more paths to find tools on Slackware 12.diego2008-03-061-1/+3
| | | | | | | based on a patch by andrew, andrew.david.45 gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26181 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace all occurences of "M$" by "Microsoft" because it's what we really ↵gpoirier2008-03-037-7/+7
| | | | | | meant, and "M$" nickname is quite childish git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26146 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26138Gabrov2008-03-012-11/+46
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26139 b3059339-0415-0410-9bf9-f77b7e298cf2
* warn to always include PMT and PCR pids in channels.conf (dvb)nicodvb2008-02-231-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26073 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed nonsense in the dvbin sectionnicodvb2008-02-231-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26072 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix copy&paste typo in rgbtest documentationreimar2008-02-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26057 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r26052gpoirier2008-02-211-0/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26055 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r26019gpoirier2008-02-211-2/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26054 b3059339-0415-0410-9bf9-f77b7e298cf2
* improve DTD dection of MacPort-install docbook packagegpoirier2008-02-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26053 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document rgbtest argumentsreimar2008-02-211-1/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26052 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25566, patch by mesecam %mesecam A gmail P com%gpoirier2008-02-201-19/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26042 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25308, patch by mesecam %mesecam A gmail P com %gpoirier2008-02-201-46/+691
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26041 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r24342, patch by jfallah mesecam at gmail dot comgpoirier2008-02-191-84/+105
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26033 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r26017gpoirier2008-02-181-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26023 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document af-*, copied from vf-*reimar2008-02-171-0/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26019 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed wrong examplecompn2008-02-171-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26017 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r26015Gabrov2008-02-171-13/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26016 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document that framedrop needs -no-correct-ptsreimar2008-02-171-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26015 b3059339-0415-0410-9bf9-f77b7e298cf2
* -dumpstream will not dump chapters anymorecompn2008-02-171-6/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26014 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r25984gpoirier2008-02-111-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25986 b3059339-0415-0410-9bf9-f77b7e298cf2
* Slightly document alpha for OSD colorreimar2008-02-111-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25984 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25973gpoirier2008-02-101-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25979 b3059339-0415-0410-9bf9-f77b7e298cf2
* Hint about possible libmpeg2 problems with -hardframedropreimar2008-02-101-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25973 b3059339-0415-0410-9bf9-f77b7e298cf2
* r25770: URL updates for contributed win32 stuff.voroshil2008-02-102-11/+6
| | | | | | | | r25771: VIDIX is no longer a shared library. r25772: typo fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25971 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync tag update: changes in original text arevoroshil2008-02-101-1/+1
| | | | | | | unnecessary to translation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25970 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync tag updatevoroshil2008-02-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25969 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25955gpoirier2008-02-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25956 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fix, noticed by JRaSHgpoirier2008-02-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25955 b3059339-0415-0410-9bf9-f77b7e298cf2
* Ben co-maintains stream_dvdnav.cnicodvb2008-01-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25924 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify comments/docs about lav* being the preferred place to implement newivo2008-01-282-4/+6
| | | | | | | | codecs and (de)muxers, except for wrappers around external libraries and codecs and (de)muxers requiring binary support. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25908 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r25821gpoirier2008-01-281-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25902 b3059339-0415-0410-9bf9-f77b7e298cf2
* note on new demuxers and codecs, add them to lav* instead of libmp*ivo2008-01-282-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25900 b3059339-0415-0410-9bf9-f77b7e298cf2
* port libmpdemux demuxers to libavformat or rewrite from scratchivo2008-01-281-0/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25899 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r25821, patch by JRaSH (jrash06 163 com)kraymer2008-01-271-19/+80
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25878 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling cosmeticsdiego2008-01-251-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25850 b3059339-0415-0410-9bf9-f77b7e298cf2
* add documentation about switch_angle and switch_title slave commandsben2008-01-241-0/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25849 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25826Gabrov2008-01-213-31/+84
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25827 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added missing single quotation mark.cehoyos2008-01-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25821 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25786gpoirier2008-01-181-9/+66
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25787 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a fragment program for 5x5 unsharp maskingreimar2008-01-181-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25786 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fixdiego2008-01-162-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25772 b3059339-0415-0410-9bf9-f77b7e298cf2
* VIDIX is no longer a shared library.diego2008-01-161-5/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25771 b3059339-0415-0410-9bf9-f77b7e298cf2
* URL updates for contributed win32 stuff.diego2008-01-161-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25770 b3059339-0415-0410-9bf9-f77b7e298cf2
* better ao/vo profile examplesdiego2008-01-161-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25769 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc markup fixesdiego2008-01-161-7/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25768 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc spelling fixesdiego2008-01-161-13/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25767 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed a english part, left in here, sighptt2008-01-151-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25766 b3059339-0415-0410-9bf9-f77b7e298cf2
* little grammar fixptt2008-01-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25765 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25757ptt2008-01-151-7/+79
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25764 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing "&"ptt2008-01-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25763 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing escapesptt2008-01-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25762 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add experimental unsharp-mask OpenGL scaler. Certainly not yet perfect.reimar2008-01-151-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25757 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document vo gl lscale=3reimar2008-01-151-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25756 b3059339-0415-0410-9bf9-f77b7e298cf2
* Seems that all - should be escaped in the man pagereimar2008-01-141-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25752 b3059339-0415-0410-9bf9-f77b7e298cf2
* Extend heartbeat-cmd man page entryreimar2008-01-141-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25751 b3059339-0415-0410-9bf9-f77b7e298cf2
* document vo.* and ao.* playback profilesben2008-01-111-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25671 b3059339-0415-0410-9bf9-f77b7e298cf2
* updated english manpage with protocol/extension profile loading featureben2008-01-101-0/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25665 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25657gpoirier2008-01-091-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25659 b3059339-0415-0410-9bf9-f77b7e298cf2
* dumpstream is NOT a better way to copy a dvd titlecompn2008-01-091-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25657 b3059339-0415-0410-9bf9-f77b7e298cf2
* dvd-device can specify iso files toocompn2008-01-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25656 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add heartbeat-cmd optionreimar2008-01-071-0/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25639 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow overriding [Script Info] parameters with -ass-force-style option.eugeni2008-01-051-1/+3
| | | | | | | Patch by Anton Khirnov, wyskas gmail com. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25610 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented angle commandsnicodvb2008-01-052-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25607 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25587gpoirier2008-01-041-2/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25594 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25592Gabrov2008-01-032-4/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25593 b3059339-0415-0410-9bf9-f77b7e298cf2
* when {v|a}_o_mpegpes:card isn't specified by the user mplayer uses the first ↵nicodvb2008-01-021-0/+2
| | | | | | available card git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25587 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add an example for dvdnav:// usage with path.cehoyos2008-01-021-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25585 b3059339-0415-0410-9bf9-f77b7e298cf2
* update copyright year to 2008gpoirier2008-01-0119-13/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25566 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25529, patch by JRaSH: jrash06 A 163 P comgpoirier2007-12-301-16/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25550 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25539Gabrov2007-12-292-19/+68
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25540 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25455ptt2007-12-281-2/+42
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25536 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support ?(!NAME:TEXT) format for expanding string by property.ulion2007-12-261-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25529 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo: begining --> beginningdiego2007-12-233-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25517 b3059339-0415-0410-9bf9-f77b7e298cf2
* 30% synced with r22753ptt2007-12-201-209/+215
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25477 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25455gpoirier2007-12-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25458 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo noticed by Paul TTdiego2007-12-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25455 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/25440gpoirier2007-12-181-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25453 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix the expand text's format by the source.ulion2007-12-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25440 b3059339-0415-0410-9bf9-f77b7e298cf2
* mention that the sync is partialgpoirier2007-12-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25433 b3059339-0415-0410-9bf9-f77b7e298cf2
* partial sync w/r25389, patch by JRaSH %jrash06 A 163 P com%gpoirier2007-12-171-18/+73
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25432 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: reformattingdiego2007-12-161-17/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25423 b3059339-0415-0410-9bf9-f77b7e298cf2
* There are no special rules for commits to the build system.diego2007-12-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25422 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r25389 (up-to-date!!)gpoirier2007-12-161-1/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25419 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25315gpoirier2007-12-161-23/+36
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25418 b3059339-0415-0410-9bf9-f77b7e298cf2
* partial sync with some of the latest commitsgpoirier2007-12-141-3/+110
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25401 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support chapter as a property.ulion2007-12-141-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25391 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support using unrar executable to access rar-compressed vobsub files.ulion2007-12-141-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25389 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add new audio filter for encoding multi-channel audio into ac3 at runtime.ulion2007-12-132-2/+31
| | | | | | | | And if set first parameter of this filter to 1, it will do ac3 passthrough like hwac3 did. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25385 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25379ptt2007-12-121-15/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25381 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix libass to support -nofontconfig.ulion2007-12-121-0/+8
| | | | | | | | For history reason, fontconfig is auto-enabled when ass is enabled, we keep this behavior and document it clearly. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25379 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix all current known multi-channel wrong order problems by addingulion2007-12-101-2/+0
| | | | | | | | | | | common functions for channel reordering. This fixes these modules by adding channel reordering code for 5.0/5.1 audio: ao: pcm ad: dmo, faad, ffmpeg(ac3, dca, libfaad, liba52), pcm ae: faac, lavc(ac3, libfaac), pcm git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25343 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling/grammar/wording/formattingdiego2007-12-101-16/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25335 b3059339-0415-0410-9bf9-f77b7e298cf2
* minor spelling/grammar fixesdiego2007-12-061-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25315 b3059339-0415-0410-9bf9-f77b7e298cf2
* cleanup and conformation of values description for -ass-hintingptt2007-12-061-11/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25314 b3059339-0415-0410-9bf9-f77b7e298cf2
* three little corrections...ptt2007-12-051-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25308 b3059339-0415-0410-9bf9-f77b7e298cf2
* initial submit for revision... 24% synced with r22753ptt2007-12-051-0/+5326
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25307 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncd with r25278ptt2007-12-031-3/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25284 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25282Gabrov2007-12-034-18/+57
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25283 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typocorey2007-12-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25278 b3059339-0415-0410-9bf9-f77b7e298cf2
* -identify shows chapters times when playing dvd streamsnicodvb2007-11-281-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25194 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24924: Add audio filter scaletempovoroshil2007-11-281-6/+97
| | | | | | | | | | | | | r24950: Explain new ao_pulse option syntax r24952: Escape some more '-' where appropriate. r24953: one more '-' escape, wording fix r24954: another round of '-' escapes r25134: Fix a wrong cmdline example of using -menu-chroot. r25179: Add missing forced linebreak, slight wording improvement. r25189: Add an example for play DTS-CD with passsthrough. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25192 b3059339-0415-0410-9bf9-f77b7e298cf2
* r25011: a couple of tricks to improve playback resistance and usability of ↵voroshil2007-11-283-11/+39
| | | | | | | | | | | | | | dvb streams r25012: small rephrasing r25016: & => &amp; r25017: wording/grammar/spelling/formatting r25119: Put colon inside replaceable tag. r25123: vcd://<n> now works for MinGW32 too, hence the updated doc r25146: Clarify playtree explanation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25191 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add an example for play DTS-CD with passsthrough.ulion2007-11-281-0/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25189 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25179ptt2007-11-271-5/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25182 b3059339-0415-0410-9bf9-f77b7e298cf2
* Takeover as maintainer of mplayer osx port with Nicolas' blessing.ulion2007-11-271-2/+4
| | | | | | | Nicolas will still take care of the MPlayer OS X frontend. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25180 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing forced linebreak, slight wording improvement.diego2007-11-271-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25179 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24954ptt2007-11-261-3/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25176 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24604ptt2007-11-261-1/+97
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25175 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24346ptt2007-11-261-12/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25174 b3059339-0415-0410-9bf9-f77b7e298cf2
* was synced to r25017, my fault sorryptt2007-11-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25173 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25011ptt2007-11-261-1/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25172 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25146ptt2007-11-261-6/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25171 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support select subtitle by source, add 4 properties:ulion2007-11-251-0/+32
| | | | | | | | | | | | | 1. sub_source for current sub source (sub file, vobsub, or from demuxer). 2. sub_file for all subtitles from files. 3. sub_vobsub for all subtitles from vobsub. 4. sub_demux for all subtitles from demuxer. Now mplayer can supply a stable and clear interface to external programs using mplayer in slave mode to select a subtitle by its source and its unique id for that source printed by mplayer using -identify parameter. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25157 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify playtree explanation.diego2007-11-231-6/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25146 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix a wrong cmdline example of using -menu-chroot.ulion2007-11-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25134 b3059339-0415-0410-9bf9-f77b7e298cf2
* vcd://<n> now works for MinGW32 too, hence the updated doczuxy2007-11-211-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25123 b3059339-0415-0410-9bf9-f77b7e298cf2
* Put colon inside replaceable tag.diego2007-11-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25119 b3059339-0415-0410-9bf9-f77b7e298cf2
* warn users to disable dvdread internal (at least for the moment: there'snicodvb2007-11-181-1/+3
| | | | | | | | something that prevents the correct identification of languages that I don't have time to investigate right now) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25099 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a wish which is available in some filters and players on win32.ulion2007-11-181-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25084 b3059339-0415-0410-9bf9-f77b7e298cf2
* mention the new build systemnicodvb2007-11-171-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25083 b3059339-0415-0410-9bf9-f77b7e298cf2
* mencoder has mkv nut and mxf output using lavfcompn2007-11-141-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25044 b3059339-0415-0410-9bf9-f77b7e298cf2
* some updatescompn2007-11-141-8/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25043 b3059339-0415-0410-9bf9-f77b7e298cf2
* wording/grammar/spelling/formattingdiego2007-11-101-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25017 b3059339-0415-0410-9bf9-f77b7e298cf2
* & => &amp;nicodvb2007-11-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25016 b3059339-0415-0410-9bf9-f77b7e298cf2
* switch_audio works with many other formats than describednicodvb2007-11-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25013 b3059339-0415-0410-9bf9-f77b7e298cf2
* small rephrasingnicodvb2007-11-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25012 b3059339-0415-0410-9bf9-f77b7e298cf2
* a couple of tricks to improve playback resistance and usability of dvb streamsnicodvb2007-11-101-0/+25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25011 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r24954, patch by JRaSH %jrash06 A 163 P com%gpoirier2007-11-051-45/+191
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24969 b3059339-0415-0410-9bf9-f77b7e298cf2
* Escape some more '-'.diego2007-11-048-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24964 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24954Gabrov2007-11-041-8/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24963 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add an example on how to use slave mode with a fiforeimar2007-11-031-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24960 b3059339-0415-0410-9bf9-f77b7e298cf2
* Escape a ton of '-'. Note that this is likely not complete.diego2007-11-039-1748/+1748
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24955 b3059339-0415-0410-9bf9-f77b7e298cf2
* another round of '-' escapesdiego2007-11-031-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24954 b3059339-0415-0410-9bf9-f77b7e298cf2
* one more '-' escape, wording fixdiego2007-11-031-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24953 b3059339-0415-0410-9bf9-f77b7e298cf2
* Escape some more '-' where appropriate.diego2007-11-031-13/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24952 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explain new ao_pulse option syntaxreimar2007-11-031-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24950 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24875: program switching in demux_lavfvoroshil2007-11-031-227/+227
| | | | | | | | r24897: Consistently use \- in option names. r24909: Escape some more '-' where appropriate. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24944 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24907: Remove paragraph that no long applies: runtime SSE detection on Windows.voroshil2007-11-031-8/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24942 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24938Gabrov2007-11-022-238/+305
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24939 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add audio filter scaletempouau2007-11-011-0/+73
| | | | | | | Patch by Robert Juliano, juliano.1 osu edu git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24924 b3059339-0415-0410-9bf9-f77b7e298cf2
* typovoroshil2007-11-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24910 b3059339-0415-0410-9bf9-f77b7e298cf2
* Escape some more '-' where appropriate.diego2007-10-311-125/+125
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24909 b3059339-0415-0410-9bf9-f77b7e298cf2
* corrected vqscale indentationptt2007-10-311-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24908 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove paragraph that no long applies: runtime SSE detection on Windows.zuxy2007-10-311-7/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24907 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove outdated Hungarian translation of the playtree documentation.diego2007-10-301-120/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24905 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a backslash.cehoyos2007-10-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24904 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explain the difference between '-' and '\-', correctly now.diego2007-10-301-4/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24900 b3059339-0415-0410-9bf9-f77b7e298cf2
* movie player for Linux --> movie playerdiego2007-10-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24899 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some missing escapes for '-'.diego2007-10-301-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24898 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently use \- in option names.diego2007-10-301-105/+105
| | | | | | | In roff '-' is used for hyphens while '\-' is used for minus and en/em-dashes. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24897 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r24875gpoirier2007-10-281-10/+64
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24881 b3059339-0415-0410-9bf9-f77b7e298cf2
* program switching in demux_lavfnicodvb2007-10-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24875 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24740: misc roff fixesvoroshil2007-10-251-6/+55
| | | | | | | | | | | | | | | | | r24746: document filter -vf ow: Overcomplete Wavelet denoiser. r24772: DirectShow based tv:// driver for win32 r24783: Consistently set NOTE: in italics. r24784: small grammar fix r24785: Add -lavfdopts cryptokey r24807: Docs update: -ao openal handles more than one channels since some time already r24808: Add a space behind openal to get minimum length of 7 r24809: Replace Polyp- by PulseAudio output. r24820: Clarify that -vo gl bicubic filtering is B-spline, not polynomial r24837: Spelling, vf_ow parameters are optional. r24841: type fix: there was a 'not' too much git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24852 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24745: libavcodec now supports dnxhd encoding.voroshil2007-10-251-4/+8
| | | | | | | | r24751: Fix Zip Motion Blocks Video codec name. r24795: better vfw encoding workaround for vp7 fourcc git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24851 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24841Gabrov2007-10-241-6/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24846 b3059339-0415-0410-9bf9-f77b7e298cf2
* type fix: there was a 'not' too muchptt2007-10-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24841 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24837ptt2007-10-221-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24840 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24820ptt2007-10-221-9/+65
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24839 b3059339-0415-0410-9bf9-f77b7e298cf2
* Spelling, vf_ow parameters are optional.diego2007-10-221-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24837 b3059339-0415-0410-9bf9-f77b7e298cf2
* grammar fixptt2007-10-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24835 b3059339-0415-0410-9bf9-f77b7e298cf2
* ao_openal is mine as well (however someone else developing it further would ↵reimar2007-10-211-0/+1
| | | | | | be welcome) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24826 b3059339-0415-0410-9bf9-f77b7e298cf2
* I'll be maintaining ao_pulse for nowreimar2007-10-211-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24825 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify that -vo gl bicubic filtering is B-spline, not polynomialreimar2007-10-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24820 b3059339-0415-0410-9bf9-f77b7e298cf2
* indentation fix+typo fixptt2007-10-191-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24814 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace Polyp- by PulseAudio output.reimar2007-10-181-0/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24809 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a space behind openal to get minimum length of 7reimar2007-10-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24808 b3059339-0415-0410-9bf9-f77b7e298cf2
* Docs update: -ao openal handles more than one channels since some time alreadyreimar2007-10-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24807 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24795Gabrov2007-10-161-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24796 b3059339-0415-0410-9bf9-f77b7e298cf2
* better vfw encoding workaround for vp7 fourcccompn2007-10-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24795 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24788Gabrov2007-10-152-9/+50
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24789 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add -lavfdopts cryptokeyreimar2007-10-141-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24785 b3059339-0415-0410-9bf9-f77b7e298cf2
* small grammar fixdiego2007-10-141-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24784 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently set NOTE: in italics.diego2007-10-141-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24783 b3059339-0415-0410-9bf9-f77b7e298cf2
* DirectShow based tv:// driver for win32voroshil2007-10-131-0/+17
| | | | | | | | | | | Teletext is also supported (but 625 system parameters are hardcoded). pthreads is required for teletext. Code is still experimental. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24772 b3059339-0415-0410-9bf9-f77b7e298cf2
* my fault, left a wrong line, correctedptt2007-10-091-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24760 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24344ptt2007-10-091-47/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24758 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24342ptt2007-10-091-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24757 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24710ptt2007-10-091-4/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24756 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24087ptt2007-10-091-17/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24755 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24082ptt2007-10-091-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24754 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced up to r24293ptt2007-10-091-9/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24753 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix Zip Motion Blocks Video codec name.diego2007-10-091-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24751 b3059339-0415-0410-9bf9-f77b7e298cf2
* document filter -vf ow: Overcomplete Wavelet denoiser.gpoirier2007-10-081-0/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24746 b3059339-0415-0410-9bf9-f77b7e298cf2
* libavcodec now supports dnxhd encoding.diego2007-10-081-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24745 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc roff fixesdiego2007-10-081-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24740 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync to r24573jheryan2007-10-081-92/+270
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24738 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync to 21.9.2007jheryan2007-10-0815-404/+511
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24737 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync tag updatevoroshil2007-10-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24735 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24727Gabrov2007-10-071-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24728 b3059339-0415-0410-9bf9-f77b7e298cf2
* H.264 content can also be decoded with multiple threadsgpoirier2007-10-072-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24727 b3059339-0415-0410-9bf9-f77b7e298cf2
* I have mostly taken over maintaining x11_common stuff as wellreimar2007-10-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24720 b3059339-0415-0410-9bf9-f77b7e298cf2
* Changed proposed monitorpixelaspect value for -vo aa to 0.5 as asked by Rich.cehoyos2007-10-074-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24719 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24706: Add hint to monitorpixelaspect for -vo aa.voroshil2007-10-071-2/+9
| | | | | | | | r24708: Default monitorpixelaspect is 1. r24711: rtsp-stream-over-tcp also works with NEMESI. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24716 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24709: Documentation follows implementation: Encrytped DVB channels are nevervoroshil2007-10-071-4/+2
| | | | | | | r24710: Fix typo. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24715 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24711Gabrov2007-10-052-7/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24712 b3059339-0415-0410-9bf9-f77b7e298cf2
* rtsp-stream-over-tcp also works with NEMESI.cehoyos2007-10-053-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24711 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix typo.cehoyos2007-10-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24710 b3059339-0415-0410-9bf9-f77b7e298cf2
* Documentation follows implementation: Encrytped DVB channels are nevercehoyos2007-10-052-5/+3
| | | | | | | | skipped. (German was wrong anyway) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24709 b3059339-0415-0410-9bf9-f77b7e298cf2
* Default monitorpixelaspect is 1.cehoyos2007-10-057-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24708 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix typo.cehoyos2007-10-051-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24707 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add hint to monitorpixelaspect for -vo aa.cehoyos2007-10-052-0/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24706 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24656ptt2007-10-051-38/+77
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24705 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'ed with r24136ptt2007-10-041-52/+104
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24704 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'd up to r24056ptt2007-10-044-29/+29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24703 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Fix AltiVec spelling.diego2007-10-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24685 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move misplaced paragraph to the right question and fix the wording.diego2007-10-011-6/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24682 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove stray XML tags that broke compilation.diego2007-10-011-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24681 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/24656gpoirier2007-09-291-2/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24664 b3059339-0415-0410-9bf9-f77b7e298cf2
* compile fix for faq.xmlkraymer2007-09-294-23/+125
| | | | | | | | | | | | r24082: Explicitly mention the need to rebuild MPlayer after installing AMR libs. r24087: Reorder installation requirements list, wording/spelling. r24604: Teletext documentation r24646: add -lavfdopts format option r24655: analyzeduration option for lavf demuxer r24656: AVI can do video stream switching, too git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24660 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24655: analyzeduration option for lavf demuxervoroshil2007-09-291-2/+7
| | | | | | | r24656: AVI can do video stream switching, too git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24659 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24656Gabrov2007-09-291-3/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24658 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24030: Document special A-V sync issues with FLV fileskraymer2007-09-293-14/+223
| | | | | | | | | | r24035: Add <application> tag around MEncoder r24045: Change "object type complexity" parameter of FAAC r24089: Complete the list of libavcodec audio encoders. r24049: i_certify is no longer an option git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24657 b3059339-0415-0410-9bf9-f77b7e298cf2
* AVI can do video stream switching, tooreimar2007-09-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24656 b3059339-0415-0410-9bf9-f77b7e298cf2
* analyzeduration option for lavf demuxerhenry2007-09-291-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24655 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24646: add -lavfdopts format optionvoroshil2007-09-291-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24652 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r24646gpoirier2007-09-281-14/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24648 b3059339-0415-0410-9bf9-f77b7e298cf2
* add -lavfdopts format optionhenry2007-09-281-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24646 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23578: Fix license header.kraymer2007-09-284-14/+10
| | | | | | | | | | r23579: Activate license notice. r23594: added some carriage returns and full stops, plus a missing 'option' r23608: Nico claims to never have had any problems with X11 compilation on Mandrake. r23983: i_certify_that_my_video_stream_does_not_use_b_frames is gone. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24644 b3059339-0415-0410-9bf9-f77b7e298cf2
* version bumps for codecs.xml and tvinput.xmlkraymer2007-09-287-19/+21
| | | | | | | | | | | r23271: libdha is no more. r23272: 10l syntax error r23342: Add ID to example. r23517: small indentation and tags fixes r23538: capital char and relative dot at end of phrase removed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24643 b3059339-0415-0410-9bf9-f77b7e298cf2
* some whitespace cosmeticskraymer2007-09-286-287/+230
| | | | | | | | | | | | r22854: Remove empty section. r22951: Move netstream documentation into TOOLS/README. r23100: Update AMR instructions. r23161: Remove outdated and wrong references to codecs.conf. r23225: The GUI no longer depends on libpng. r23226: MJPEG decoding does not depend on libjpeg. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24642 b3059339-0415-0410-9bf9-f77b7e298cf2
* missing sync tag updatevoroshil2007-09-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24641 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22718: add new audio and video codecs to libavcodec listkraymer2007-09-281-2/+51
| | | | | | | | | | | r22748: add png and gif encoders, how to use them with mencoder is another question r22749: split sonic into sonic/sonicls and wma into wmav1/wmav2 r22750: add rest of lavc encoders to list (vcr1, cljr, jpegls, ffvhuff, msmpeg4v1) r22751: gsm requires libgsm so remove it r22752: aiff isnt there as well, TEST FIRST, THEN DOCUMENT COMPN! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24640 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22679: Some more details for the mga_vid section taken from drivers/README.kraymer2007-09-271-29/+31
| | | | | | | | | | r22686: tdfx_vid compilation has been simplified. r22695: Add a link to Attila's mga_vid port to Linux 2.6.x. r22704: 'make install' now takes care of most manual installation steps for *_vid.o. r22800: Get rid of useless conditional git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24639 b3059339-0415-0410-9bf9-f77b7e298cf2
* some whitespace cosmeticskraymer2007-09-273-150/+206
| | | | | | | | | | | | | rename "BENUTZUNG" -> "GEBRAUCH" for consistency r22201: some clarification about dvb-out playback r22402: Explain how to select all DVB channels on a frequency. r22413: add xvfwopts compdata and vfw2menc documentation and change to better mencoder example r22499: Improve MPlayerOSX building process r22547: use suggestion from Diego r22570: dont start newline with a space and readd subdirectory git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24638 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22141: Move all "Encoding with the XXX codec family" sections together.kraymer2007-09-271-155/+153
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24637 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21897: Rephrase mga_vid section.kraymer2007-09-274-22/+17
| | | | | | | | | r21930: gcc_bug++; r22129: Link to the mencoder-users list for mencoder stuff r22140: vp6vfw.dll appears to no longer crash under Linux. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24636 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21896: Document vo_tdfx_vid.kraymer2007-09-271-1/+51
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24635 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21861: explain how to use MEncoder to create QuickTime-compatible fileskraymer2007-09-271-11/+367
| | | | | | | | | | | | r21875: fix wrong option names r21917: typo fixes r21931: update x264's subq otion description r21932: update and factorize information about x264's multi-threading mode r21933: fixes suggested by Diego r21934: get rid of two spaces after a period (instead of one) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24634 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21748: Reformatting round continuedkraymer2007-09-273-10/+9
| | | | | | | | | | r21760: Directly point to the Subversion instructions. r21791: avoid a possible confusion, as suggested by Wanderer r21802: x264 is MPEG-4 AVC, not ASP r21849: fix typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24633 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21744: Mention that you can use different image formats with mf://kraymer2007-09-271-1/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24632 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21705: remove stray propmt from examplekraymer2007-09-274-22/+29
| | | | | | | | r21736: Add <keycombo> barkup for key combinations r21737: Add <menuchoice> <guimenu> <guisubmenu> <guimenuitem> markup for menus. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24631 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21612: replace &quot; with ", better readabilitykraymer2007-09-2712-102/+102
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24630 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21599: vstrict=0 is required to create DVDs decodable by standalone dvd playerskraymer2007-09-271-7/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24629 b3059339-0415-0410-9bf9-f77b7e298cf2
* "fake" commit (postpone cosmetics from r21537 for now)kraymer2007-09-2717-22/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24628 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24550: msglevel 5 is the default.kraymer2007-09-251-9/+16
| | | | | | | | | | | r24551: Clarify description of MPLAYER_VERBOSE. r24558: Clarify the relationship between -msglevel and MPLAYER_VERBOSE. r24573: Implement setting gain control for video devices (usually webcams) in v4l2 tv:// driver. r24592: Change outdated note for -subfps git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24617 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: misc typo fixesdiego2007-09-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24615 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24606Gabrov2007-09-242-4/+98
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24607 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24604: Teletext documentationvoroshil2007-09-241-0/+94
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24606 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24558: Clarify the relationship between -msglevel and MPLAYER_VERBOSE.voroshil2007-09-241-4/+13
| | | | | | | | r24573: Implement setting gain control for video devices (usually webcams) r24592: Change outdated note for -subfps git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24605 b3059339-0415-0410-9bf9-f77b7e298cf2
* Teletext documentationvoroshil2007-09-241-0/+91
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24604 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change outdated note for -subfpsreimar2007-09-221-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24592 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24573Gabrov2007-09-201-2/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24587 b3059339-0415-0410-9bf9-f77b7e298cf2
* I don't maintain any Windows ports, but the Debian package.diego2007-09-191-3/+3
| | | | | | | Michael maintains all of FFmpeg. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24582 b3059339-0415-0410-9bf9-f77b7e298cf2
* Implement setting gain control for video devices (usually webcams)voroshil2007-09-181-0/+5
| | | | | | | in v4l2 tv:// driver. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24573 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24565Gabrov2007-09-182-11/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24566 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explain how to use diff -uwbBE with svn directlyreimar2007-09-181-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24563 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify the relationship between -msglevel and MPLAYER_VERBOSE.diego2007-09-171-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24558 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24550: msglevel 5 is the default.voroshil2007-09-171-5/+5
| | | | | | | r24551: Clarify description of MPLAYER_VERBOSE. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24553 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24549: i_certify is no longer an optionvoroshil2007-09-171-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24552 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify description of MPLAYER_VERBOSE.diego2007-09-161-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24551 b3059339-0415-0410-9bf9-f77b7e298cf2
* msglevel 5 is the default.diego2007-09-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24550 b3059339-0415-0410-9bf9-f77b7e298cf2
* i_certify is no longer an optioncompn2007-09-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24549 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24423: Implementation of tv:// driver autodetection.voroshil2007-09-121-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24435 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24423Gabrov2007-09-121-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24432 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r24423gpoirier2007-09-111-6/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24429 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24294: suboption consistency, add fixme document -vivo suboptionskraymer2007-09-101-4/+17
| | | | | | | | | | | | | r24310: Support for selecting language via packet 28. r24329: manpage fix: escape '\' in -vf geq description r24349: Support lowdelay flag r24356: spelling fixes, pointed by Diego r24357: Clarify teletext tlang option. r24386: move lavc option out of XviD section, to lavc section r24423: Implementation of tv:// driver autodetection. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24427 b3059339-0415-0410-9bf9-f77b7e298cf2
* Implementation of tv:// driver autodetection.voroshil2007-09-101-1/+1
| | | | | | | | | | | | If user did not specify driver directly, all available drivers will be probed (in order: v4l2,v4l1,bsdbt848,dummy). In most cases first probed driver will be successfully autodetected and used. Autodetection will be disabled if user specified driver directly (in command line or config). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24423 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24386: move lavc option out of XviD section, to lavc sectionvoroshil2007-09-101-6/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24395 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24386Gabrov2007-09-091-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24387 b3059339-0415-0410-9bf9-f77b7e298cf2
* move lavc option out of XviD section, to lavc sectiongpoirier2007-09-091-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24386 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24381Gabrov2007-09-093-59/+44
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24382 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24356: spelling fixes, pointed by Diegovoroshil2007-09-071-3/+3
| | | | | | | r24357: Clarify teletext tlang option. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24359 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify teletext tlang option.diego2007-09-061-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24357 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling fixes, pointed by Diegovoroshil2007-09-061-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24356 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24294: suboption consistency, add fixme document -vivo suboptionsvoroshil2007-09-061-3/+16
| | | | | | | | | | r24301: replace deleted line r24310: Support for selecting language via packet 28. r24329: manpage fix: escape '\' in -vf geq description r24349: Support lowdelay flag git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24355 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24216: Add missed in r24212 strings definitionsvoroshil2007-09-064-64/+34
| | | | | | | | | | | | | r24327: fix broken MinGW-Howto link r24293: remove planned features, ok by diego r24310: Support for selecting language via packet 28. r24341: Move debug message to verbose output level. r24342: Matroska muxer now available in libavformat. r24344: Remove technical description of DVDs and libdvdread implementation. r24346: Replace short region code explanation by more detailed section. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24354 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support lowdelay flagreimar2007-09-061-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24349 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r24329gpoirier2007-09-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24347 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace short region code explanation by more detailed section.diego2007-09-051-10/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24346 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove technical description of DVDs and libdvdread implementation.diego2007-09-051-44/+0
| | | | | | | | It is out of place in the user-level documentation and there are more exhaustive sources elsewhere. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24344 b3059339-0415-0410-9bf9-f77b7e298cf2
* Matroska muxer now available in libavformat.diego2007-09-051-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24342 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24329Gabrov2007-09-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24330 b3059339-0415-0410-9bf9-f77b7e298cf2
* manpage fix: escape '\' in -vf geq descriptionuau2007-09-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24329 b3059339-0415-0410-9bf9-f77b7e298cf2
* decerebrated-proof guide to the instalation of dvdnavnicodvb2007-09-021-0/+29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24328 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix broken MinGW-Howto linkkraymer2007-09-027-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24327 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24310Gabrov2007-09-021-2/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24326 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r24310gpoirier2007-08-311-51/+93
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24311 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support for selecting language via packet 28.voroshil2007-08-311-0/+6
| | | | | | | | | | Also allows to select default teletext language. It will be used if language is not specified by network provider via packet 28. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24310 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24301Gabrov2007-08-292-12/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24302 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace deleted linecompn2007-08-291-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24301 b3059339-0415-0410-9bf9-f77b7e298cf2
* suboption consistency, add fixme document -vivo suboptionscompn2007-08-291-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24294 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove planned features, ok by diegocompn2007-08-291-8/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24293 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r24137, patch by JRaSHkraymer2007-08-291-66/+113
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24292 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24216Gabrov2007-08-281-1/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24279 b3059339-0415-0410-9bf9-f77b7e298cf2
* typosdiego2007-08-281-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24278 b3059339-0415-0410-9bf9-f77b7e298cf2
* Implement X/27/0 packet decoding.voroshil2007-08-281-0/+3
| | | | | | | | | It contains information about navigation links. Modified patch from Otvos Attila oattila at chello dot hu git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24264 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typokraymer2007-08-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24251 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24050: MP3 audio encoder was renamed to libmp3lame in FFmpeg.kraymer2007-08-261-65/+118
| | | | | | | | | | | | | | | | | | r24055: Document how to encode with some libavcodec audio codecs. r24056: AC3 --> AC-3 r24063: Document how to encode with some more libavcodec audio codecs. r24084: small libavcodec audio codec clarifications r24109: Sort libavcodec encoders. r24110: Add some missing libavcodec video encoders. r24125: Automatic TV channels scanning ability for MPlayer. r24136: Wording and markup improvements for the -tvscan option. r24137: misc markup fixes r24216: Add missed in r24212 strings definitions git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24218 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24125: Automatic TV channels scanning ability for MPlayer.voroshil2007-08-261-21/+44
| | | | | | | | r24136: Wording and markup improvements for the -tvscan option. r24137: misc markup fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24215 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24180: Document xorg.conf option needed for Xv playback on Intel cards.voroshil2007-08-261-1/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24214 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document xorg.conf option needed for Xv playback on Intel cards.rathann2007-08-251-0/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24180 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r24084gpoirier2007-08-251-10/+32
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24172 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24137Gabrov2007-08-251-22/+53
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24159 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc markup fixesdiego2007-08-241-20/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24137 b3059339-0415-0410-9bf9-f77b7e298cf2
* Wording and markup improvements for the -tvscan option.diego2007-08-241-8/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24136 b3059339-0415-0410-9bf9-f77b7e298cf2
* Automatic TV channels scanning ability for MPlayer.voroshil2007-08-232-0/+23
| | | | | | | Code is based on patch from Otvos Attila oattila at chello dot hu git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24125 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24050: MP3 audio encoder was renamed to libmp3lame in FFmpeg.voroshil2007-08-221-46/+76
| | | | | | | | | | | | r24055: Document how to encode with some libavcodec audio codecs. r24056: AC3 --> AC-3 r24063: Document how to encode with some more libavcodec audio codecs. r24084: small libavcodec audio codec clarifications r24109: Sort libavcodec encoders. r24110: Add some missing libavcodec video encoders. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24118 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24030: Document special A-V sync issues with FLV filesvoroshil2007-08-227-73/+280
| | | | | | | | | | | | r24035: Add <application> tag around MEncoder r24045: Change "object type complexity" parameter of FAAC in the r24056: AC3 --> AC-3 r24082: Explicitly mention the need to rebuild MPlayer after installing AMR libs. r24087: Reorder installation requirements list, wording/spelling. r24089: Complete the list of libavcodec audio encoders. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24117 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24110Gabrov2007-08-211-30/+38
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24113 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some missing libavcodec video encoders.diego2007-08-201-0/+8
| | | | | | | based on a patch by A C Hurst, A.Hurst sheffield.ac uk git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24110 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sort libavcodec encoders.diego2007-08-201-28/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24109 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24091Gabrov2007-08-188-85/+314
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24092 b3059339-0415-0410-9bf9-f77b7e298cf2
* Complete the list of libavcodec audio encoders.diego2007-08-171-8/+209
| | | | | | | patch by A C Hurst, A.Hurst sheffield.ac uk git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24089 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reorder installation requirements list, wording/spelling.diego2007-08-171-14/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24087 b3059339-0415-0410-9bf9-f77b7e298cf2
* small libavcodec audio codec clarificationsdiego2007-08-161-3/+3
| | | | | | | based on a patch by A C Hurst, A.Hurst sheffield.ac uk git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24084 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explicitly mention the need to rebuild MPlayer after installing AMR libs.rathann2007-08-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24082 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document how to encode with some more libavcodec audio codecs.diego2007-08-151-2/+12
| | | | | | | patch by A C Hurst, A.Hurst sheffield.ac uk git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24063 b3059339-0415-0410-9bf9-f77b7e298cf2
* AC3 --> AC-3, as done in r24056gpoirier2007-08-146-52/+52
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24060 b3059339-0415-0410-9bf9-f77b7e298cf2
* AC3 --> AC-3diego2007-08-136-50/+50
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24056 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document how to encode with some libavcodec audio codecs.diego2007-08-131-7/+19
| | | | | | | based on a patch by A C Hurst, A.Hurst sheffield.ac uk git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24055 b3059339-0415-0410-9bf9-f77b7e298cf2
* MP3 audio encoder was renamed to libmp3lame in FFmpeg.diego2007-08-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24050 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change "object type complexity" parameter of FAAC in thegpoirier2007-08-091-2/+2
| | | | | | | | | | example to generated quicktime-compatible files. Some versions of QT probably do support higher complexity settings, but recommending lower complexity garantees that the generated file will play everwhere. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24045 b3059339-0415-0410-9bf9-f77b7e298cf2
* The "svn copy" method for reverting has worked flawlessly for me withoutreimar2007-08-091-1/+0
| | | | | | | having to commit a revision that misses one file. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24044 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add <application> tag around MEncoderreimar2007-08-081-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24035 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24030ptt2007-08-081-1/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24034 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23996ptt2007-08-081-2/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24033 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document special A-V sync issues with FLV filesreimar2007-08-081-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24030 b3059339-0415-0410-9bf9-f77b7e298cf2
* This patch updates zh/mplayer.1, making it synchronized to en/mplayer.1 r23996kraymer2007-08-081-11/+80
| | | | | | | Patch by JRaSH (jrash06 163 com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24027 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23996: Hint at mf://@... syntaxkraymer2007-08-071-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24026 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23982ptt2007-08-071-10/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24020 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced to r23983ptt2007-08-071-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24019 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24016Gabrov2007-08-072-21/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24017 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r23996gpoirier2007-08-051-28/+77
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24015 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23996: Hint at mf://@... syntaxvoroshil2007-08-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23997 b3059339-0415-0410-9bf9-f77b7e298cf2
* Hint at mf://@... syntaxreimar2007-08-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23996 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23982: i_certify_that_my_video_stream_does_not_use_b_frames is gone.voroshil2007-08-012-13/+20
| | | | | | | | r23983: i_certify_that_my_video_stream_does_not_use_b_frames is gone. r23984: Added FIXME skeletons for missing lavc options. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23990 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23687: Implemented tv://[<channel>][/<input_id>] url syntaxkraymer2007-08-011-17/+92
| | | | | | | | | | | | | | | | | r23748: Leave out (no) prefix from option names for consistency. r23852: af channels example for ffdca to ALSA reordering r23856: small wording improvement r23897: Experimental negative panscan values r23898: Set -vo gl slice-height default to 0 r23917: Document -rawvideo format="format string" r23920 + r23924: Teletext support r23926: update man page with v4l2 a/v outputs r23978: add possibly incorrect subfont entry r23982: i_certify_that_my_video_stream_does_not_use_b_frames is gone. r23984: Added FIXME skeletons for missing lavc options. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23988 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added FIXME skeletons for missing lavc options.diego2007-08-011-0/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23984 b3059339-0415-0410-9bf9-f77b7e298cf2
* i_certify_that_my_video_stream_does_not_use_b_frames is gone.diego2007-08-011-3/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23983 b3059339-0415-0410-9bf9-f77b7e298cf2
* i_certify_that_my_video_stream_does_not_use_b_frames is gone.diego2007-08-011-8/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23982 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23897: Experimental negative panscan valuesvoroshil2007-08-011-4/+65
| | | | | | | | | | | | | | r23898: Set -vo gl slice-height default to 0, the current default of 4 seems r23913: punctuation, new sentences on new lines r23917: Document -rawvideo format="format string" r23924: Teletext support r23926: update man page with v4l2 a/v outputs r23944: h/w -> hardware r23962: added missing ':' for separator r23978: add possibly incorrect subfont entry git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23980 b3059339-0415-0410-9bf9-f77b7e298cf2
* add possibly incorrect subfont entrycompn2007-07-311-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23978 b3059339-0415-0410-9bf9-f77b7e298cf2
* another little correctionsptt2007-07-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23967 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing ":"'sptt2007-07-311-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23966 b3059339-0415-0410-9bf9-f77b7e298cf2
* better wordingptt2007-07-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23965 b3059339-0415-0410-9bf9-f77b7e298cf2
* sorry, left english phrase in...ptt2007-07-311-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23964 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23962ptt2007-07-311-6/+63
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23963 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing ':' for separatorptt2007-07-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23962 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/23588gpoirier2007-07-301-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23949 b3059339-0415-0410-9bf9-f77b7e298cf2
* h/w -> hardwareben2007-07-301-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23944 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23928Gabrov2007-07-301-6/+46
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23929 b3059339-0415-0410-9bf9-f77b7e298cf2
* update man page with v4l2 a/v outputsben2007-07-291-1/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23926 b3059339-0415-0410-9bf9-f77b7e298cf2
* Teletext supportvoroshil2007-07-293-0/+48
| | | | | | | | Part 5/5: documentation git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23924 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document -rawvideo format="format string"reimar2007-07-291-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23917 b3059339-0415-0410-9bf9-f77b7e298cf2
* punctuation, new sentences on new linesdiego2007-07-291-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23913 b3059339-0415-0410-9bf9-f77b7e298cf2
* Set -vo gl slice-height default to 0, the current default of 4 seemsreimar2007-07-281-1/+1
| | | | | | | | to never be much faster, but there were multiple reports where it was a lot slower (mostly those where gl2 was faster). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23898 b3059339-0415-0410-9bf9-f77b7e298cf2
* Experimental negative panscan valuesreimar2007-07-281-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23897 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: misc typo fixesdiego2007-07-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23893 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23852: af channels example for ffdca to ALSA reorderingvoroshil2007-07-281-1/+3
| | | | | | | r23856: small wording improvement git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23887 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23225ptt2007-07-271-0/+507
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23875 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23856ptt2007-07-261-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23865 b3059339-0415-0410-9bf9-f77b7e298cf2
* small wording improvementdiego2007-07-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23856 b3059339-0415-0410-9bf9-f77b7e298cf2
* more Spanish man page updates by Fernando Tarín (lists.im gmail com)kraymer2007-07-241-232/+251
| | | | | | | (synced down to video output drivers section) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23854 b3059339-0415-0410-9bf9-f77b7e298cf2
* af channels example for ffdca to ALSA reorderingreimar2007-07-241-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23852 b3059339-0415-0410-9bf9-f77b7e298cf2
* another correctionptt2007-07-231-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23850 b3059339-0415-0410-9bf9-f77b7e298cf2
* a bunch of corrections, suggested by Nico Sabbi, tnxptt2007-07-231-28/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23849 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21537ptt2007-07-231-0/+192
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23848 b3059339-0415-0410-9bf9-f77b7e298cf2
* now it's synced, to r23342ptt2007-07-231-0/+776
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23847 b3059339-0415-0410-9bf9-f77b7e298cf2
* my fault doesn't compile html docs...ptt2007-07-231-776/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23846 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23342ptt2007-07-231-0/+776
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23845 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update sync tagvoroshil2007-07-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23840 b3059339-0415-0410-9bf9-f77b7e298cf2
* (finally) synced with r23272ptt2007-07-211-263/+273
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23838 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove vo_syncfb, which was unused for 5 years.diego2007-07-2010-67/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23834 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23748Gabrov2007-07-181-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23821 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23748: Leave out (no) prefix from option names for consistency.voroshil2007-07-181-5/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23820 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r23748, patch by JRaSH % jrash06 A 163 P com %gpoirier2007-07-181-657/+2805
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23812 b3059339-0415-0410-9bf9-f77b7e298cf2
* better translationptt2007-07-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23809 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23748ptt2007-07-171-5/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23808 b3059339-0415-0410-9bf9-f77b7e298cf2
* another piece translated :)ptt2007-07-171-326/+347
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23795 b3059339-0415-0410-9bf9-f77b7e298cf2
* ISO8859-1 --> UTF-8diego2007-07-092-17/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23754 b3059339-0415-0410-9bf9-f77b7e298cf2
* loop wish fulfilledcompn2007-07-091-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23749 b3059339-0415-0410-9bf9-f77b7e298cf2
* Leave out (no) prefix from option names for consistency.diego2007-07-091-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23748 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a loop command and property.albeu2007-07-091-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23747 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add the sub_scale property and command.albeu2007-07-091-0/+5
| | | | | | | Patch from Anatoli Marinov (anatoli [dot] marinov [at] gmail [dot] com). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23745 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23687: Implemented tv://[<channel>][/<input_id>] url syntaxvoroshil2007-07-081-3/+5
| | | | | | | | | r23714: roff fix (new line for new sentence) r23718: small grammar fix fix untranslated word git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23741 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23690: fix BUK->BUP typovoroshil2007-07-082-6/+6
| | | | | | | r23691: revert r23538. my fault, didn't see there where 2 phrases, sorry... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23740 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100000000000000l, cured painful stab at the grammarnicodvb2007-07-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23739 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 23536torinthiel2007-07-071-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23738 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 23520torinthiel2007-07-071-6/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23737 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 23579torinthiel2007-07-071-6/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23736 b3059339-0415-0410-9bf9-f77b7e298cf2
* And antoher one, missed by me previouslytorinthiel2007-07-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23735 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some typos found and fixed by arctgx <arctgx@tlen.pl>torinthiel2007-07-071-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23734 b3059339-0415-0410-9bf9-f77b7e298cf2
* Xvid name changetorinthiel2007-07-071-29/+29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23733 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23731Gabrov2007-07-073-7/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23732 b3059339-0415-0410-9bf9-f77b7e298cf2
* small grammar fixdiego2007-07-041-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23718 b3059339-0415-0410-9bf9-f77b7e298cf2
* roff fix (new line for new sentence)kraymer2007-07-031-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23714 b3059339-0415-0410-9bf9-f77b7e298cf2
* first step of video.xml translation... (it's soooo huuuuuge..... :))ptt2007-07-021-0/+2630
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23702 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced to r23690, since it isptt2007-06-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23694 b3059339-0415-0410-9bf9-f77b7e298cf2
* another bunch of corrections, suggested by nicoptt2007-06-294-11/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23693 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23579ptt2007-06-291-6/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23692 b3059339-0415-0410-9bf9-f77b7e298cf2
* revert r23538. my fault, didn't see there where 2 phrases, sorry...ptt2007-06-291-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23691 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix BUK->BUP typokraymer2007-06-291-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23690 b3059339-0415-0410-9bf9-f77b7e298cf2
* sparse grammar and syntactical correctionsptt2007-06-296-59/+58
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23689 b3059339-0415-0410-9bf9-f77b7e298cf2
* Implemented tv://[<channel>][/<input_id>] url syntaxvoroshil2007-06-281-2/+3
| | | | | | | | | to allow users start watching from S-Video or Composite input without touching '-tv input=' option. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23687 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23680Gabrov2007-06-277-41/+50
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23681 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23504: -lavdopts threads is only implemented for mpeg[12]kraymer2007-06-261-5/+33
| | | | | | | | | | | | | r23528: x264 no longer defaults to qp=26. r23548: give an example of -menu-chroot usage r23549: refine the example of -menu-chroot yet more r23561: add missing IDCT algothim, as defined in libavcodec/avcodec.h r23580: misc small fixes r23588: The audio balance feature implemented with af_pan. r23609: Document the effect of -really-quiet on gmplayer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23673 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23609ptt2007-06-261-4/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23666 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23608 + other fixesptt2007-06-251-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23662 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23504: -lavdopts threads is only implemented for mpeg[12]voroshil2007-06-241-5/+33
| | | | | | | | | | | | | | | r23528: x264 no longer defaults to qp=26. r23530: Teletext support for tv:// (v4l and v4l2 only) r23548: give an example of -menu-chroot usage r23549: refine the example of -menu-chroot yet more r23561: add missing IDCT algothim, as defined in libavcodec/avcodec.h r23580: misc small fixes r23588: The audio balance feature implemented with af_pan. r23593: Revert r23530. r23609: Document the effect of -really-quiet on gmplayer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23617 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23578: Fix license header.voroshil2007-06-243-12/+10
| | | | | | | | | r23579: Activate license notice. r23594: added some carriage returns and full stops, plus a missing 'option' r23608: Nico claims to never have had any problems with X11 compilation on Mandrake. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23616 b3059339-0415-0410-9bf9-f77b7e298cf2
* add myself as co-maintainer of demux_mkv.caurel2007-06-231-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23614 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document the effect of -really-quiet on gmplayer.reimar2007-06-231-0/+1
| | | | | | | Not 100% correct description, feel free to improve. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23609 b3059339-0415-0410-9bf9-f77b7e298cf2
* Nico claims to never have had any problems with X11 compilation on Mandrake.diego2007-06-231-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23608 b3059339-0415-0410-9bf9-f77b7e298cf2
* grammar error fixedptt2007-06-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23599 b3059339-0415-0410-9bf9-f77b7e298cf2
* elected me as italian docs translation mantainer, so i can get my own insults ;)ptt2007-06-211-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23598 b3059339-0415-0410-9bf9-f77b7e298cf2
* other corrections, pointed out by emanuele aina (italian translation project)ptt2007-06-211-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23596 b3059339-0415-0410-9bf9-f77b7e298cf2
* a few corrections, pointed out nicely by nico sabbi, thanxptt2007-06-211-29/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23595 b3059339-0415-0410-9bf9-f77b7e298cf2
* added some carriage returns and full stops, plus a missing 'option'ptt2007-06-212-4/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23594 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert r23530.voroshil2007-06-213-45/+1
| | | | | | | | | r23530 breaks policy: notification was not sent to mailing list, agreements of other devs were not received. Code also should be reviewed/cleaned up/fixed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23593 b3059339-0415-0410-9bf9-f77b7e298cf2
* The audio balance feature implemented with af_pan.zuxy2007-06-202-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23588 b3059339-0415-0410-9bf9-f77b7e298cf2
* some more reqs from userscompn2007-06-191-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23587 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typos noted by Nicolas Legrandgpoirier2007-06-191-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23582 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc small fixesdiego2007-06-181-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23580 b3059339-0415-0410-9bf9-f77b7e298cf2
* Activate license notice.diego2007-06-181-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23579 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix license header.diego2007-06-181-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23578 b3059339-0415-0410-9bf9-f77b7e298cf2
* they said 'colla' was cacophonic.... probably indeed it was :) changed.ptt2007-06-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23577 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21930ptt2007-06-181-0/+1311
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23576 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r23561gpoirier2007-06-181-2/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23573 b3059339-0415-0410-9bf9-f77b7e298cf2
* add missing IDCT algothim, as defined in libavcodec/avcodec.hgpoirier2007-06-161-0/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23561 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23536ptt2007-06-151-0/+194
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23558 b3059339-0415-0410-9bf9-f77b7e298cf2
* update wishlistcompn2007-06-151-4/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23557 b3059339-0415-0410-9bf9-f77b7e298cf2
* grammatical error fixedptt2007-06-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23554 b3059339-0415-0410-9bf9-f77b7e298cf2
* refine the example of -menu-chroot yet moregpoirier2007-06-121-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23549 b3059339-0415-0410-9bf9-f77b7e298cf2
* give an example of -menu-chroot usagegpoirier2007-06-121-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23548 b3059339-0415-0410-9bf9-f77b7e298cf2
* little corrections suggested by nico sabbi , thanxptt2007-06-121-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23547 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23516: little indentation fixvoroshil2007-06-115-13/+16
| | | | | | | | | | | r23517: small indentation and tags fixes r23520: reversed previus modification (r23517) r23536: caps character after "Explanation:" in tvinput.xml r23537: <note><para> indentation corrected r23538: capital char and relative dot at end of phrase removed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23545 b3059339-0415-0410-9bf9-f77b7e298cf2
* yes, interleave was deeply wrong translated. correctedptt2007-06-103-11/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23542 b3059339-0415-0410-9bf9-f77b7e298cf2
* changed forgotten $Revision... to synced with.... sorry :(ptt2007-06-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23541 b3059339-0415-0410-9bf9-f77b7e298cf2
* small grammar fixesptt2007-06-101-10/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23540 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed a forgotten part in english plus small correctionsptt2007-06-101-12/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23539 b3059339-0415-0410-9bf9-f77b7e298cf2
* capital char and relative dot at end of phrase removedptt2007-06-101-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23538 b3059339-0415-0410-9bf9-f77b7e298cf2
* <note><para> indentation correctedptt2007-06-101-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23537 b3059339-0415-0410-9bf9-f77b7e298cf2
* caps character after "Explanation:" in tvinput.xmlptt2007-06-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23536 b3059339-0415-0410-9bf9-f77b7e298cf2
* added italian translation of codecs.xml & containers.xmlptt2007-06-102-0/+1253
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23535 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23531Gabrov2007-06-103-17/+54
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23533 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r23530gpoirier2007-06-101-7/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23532 b3059339-0415-0410-9bf9-f77b7e298cf2
* Teletext support for tv:// (v4l and v4l2 only)voroshil2007-06-103-1/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | modified patch from Otvos Attila oattila at chello dot hu Module uses zvbi library for all low-level VBI operations (like I/O with vbi device, converting vbi pages into usefull vbi_page stuctures, rendering them into RGB32 images). All teletext related stuff (except properties, slave commands and rendering osd in text mode or RGB32 rendered teletext pages in spu mode) is implemented in tvi_vbi.c New properties: teletext_page - switching between pages teletext_mode - switch between on/off/opaque/transparent modes teletext_format - (currently read-only) allows to get format info (black/white,gray,text) teletext_half_page - trivial zooming (displaying top/bottom half of teletext page) New slave commands: teletext_add_dec - user interface for jumping to any page by editing page number interactively teletext_go_link - goes though links, specified on current page git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23530 b3059339-0415-0410-9bf9-f77b7e298cf2
* x264 no longer defaults to qp=26.lorenm2007-06-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23528 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r23504gpoirier2007-06-081-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23521 b3059339-0415-0410-9bf9-f77b7e298cf2
* reversed previus modification (r23517)ptt2007-06-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23520 b3059339-0415-0410-9bf9-f77b7e298cf2
* changed vowels to accented utf8 vowelsptt2007-06-087-259/+259
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23519 b3059339-0415-0410-9bf9-f77b7e298cf2
* other two files translated :)ptt2007-06-082-0/+547
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23518 b3059339-0415-0410-9bf9-f77b7e298cf2
* small indentation and tags fixesptt2007-06-081-7/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23517 b3059339-0415-0410-9bf9-f77b7e298cf2
* little indentation fixptt2007-06-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23516 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'ed up to r23504ptt2007-06-081-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23514 b3059339-0415-0410-9bf9-f77b7e298cf2
* italian xml/html docs translation - first step. up till now accented vowels areptt2007-06-087-1/+1958
| | | | | | | | vowels are written as <vowel>', i'll change them all together to html codes at the end :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23512 b3059339-0415-0410-9bf9-f77b7e298cf2
* -lavdopts threads is only implemented for mpeg[12]lorenm2007-06-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23504 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync with en/mplayer.1 r23455 (patch by JRaSH)kraymer2007-06-061-8/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23487 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23440: New "automute" tv:// option.voroshil2007-06-061-2/+7
| | | | | | | | | r23444: update manual date, its been 8 months... r23455: new sentences on new lines, diego says ;-P r23467: then/than typo spotted by "JRaSH" git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23486 b3059339-0415-0410-9bf9-f77b7e298cf2
* little correction to make nroff not to complain about line lennghts....ptt2007-06-051-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23483 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'd up to r23467ptt2007-06-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23479 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23410: add documentation for new -menu-chroot optionkraymer2007-06-051-5/+14
| | | | | | | | | | | | | r23420: added a missing space char r23423: added '&' for 'e.g.' r23425: removed unneeded space r23440: New "automute" tv:// option. r23444: update manual date, its been 8 months... r23455: new sentences on new lines r23467: (English typo, does not apply here) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23473 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/23467 (was just a typo in english doc, no incidence here)gpoirier2007-06-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23468 b3059339-0415-0410-9bf9-f77b7e298cf2
* then/than typo spotted by "JRaSH"corey2007-06-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23467 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r23455gpoirier2007-06-021-7/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23457 b3059339-0415-0410-9bf9-f77b7e298cf2
* new sentences on new lines, diego says ;-Pptt2007-06-021-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23455 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'ed up to r23440 + a _big_ correction of tv suboptionsptt2007-06-021-2/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23454 b3059339-0415-0410-9bf9-f77b7e298cf2
* update manual date, its been 8 months...compn2007-06-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23444 b3059339-0415-0410-9bf9-f77b7e298cf2
* New "automute" tv:// option.voroshil2007-05-311-0/+4
| | | | | | | | | Will switch off sound and show blue screen instead of video with noise when signal level (in 0-255 scale) is less than specified value. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23440 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23370: added missing fpsvoroshil2007-05-311-5/+9
| | | | | | | | | | | | r23410: add documentation for new -menu-chroot option r23420: added a missing space char r23423: added '&' for 'e.g.' r23424: removed an unneeded comma r23425: removed unneeded space fix typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23439 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add new properties percent_pos and time_pos.albeu2007-05-311-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23436 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make the length property use the time type.albeu2007-05-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23435 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync to 24.5.2007jheryan2007-05-311-217/+431
| | | | | | | | | --This .line, and those below, will be ignored-- M mplayer.1 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23432 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add the recently introduced properties to the documentation.albeu2007-05-311-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23431 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow setting the direction in the step_property command.albeu2007-05-311-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23430 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync.d up to r23425!!! ehi, it's updated :)))ptt2007-05-311-16/+65
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23426 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unneeded spaceptt2007-05-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23425 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed an unneeded commaptt2007-05-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23424 b3059339-0415-0410-9bf9-f77b7e298cf2
* added '&' for 'e.g.'ptt2007-05-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23423 b3059339-0415-0410-9bf9-f77b7e298cf2
* moved a line below, since probably it's righter there...ptt2007-05-301-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23421 b3059339-0415-0410-9bf9-f77b7e298cf2
* added a missing space charptt2007-05-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23420 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'd up to r22845ptt2007-05-301-128/+192
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23419 b3059339-0415-0410-9bf9-f77b7e298cf2
* add documentation for new -menu-chroot optionben2007-05-292-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23410 b3059339-0415-0410-9bf9-f77b7e298cf2
* Only one section remains unfinished, typo.diego2007-05-291-3/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23408 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2007-05-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23407 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23325: dv does not support YVU9kraymer2007-05-291-5/+3
| | | | | | | | r23367: little alignment fixes r23370: (does not apply) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23406 b3059339-0415-0410-9bf9-f77b7e298cf2
* add note about unfinished "codec specific encoding options" sectionkraymer2007-05-291-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23405 b3059339-0415-0410-9bf9-f77b7e298cf2
* little typo fixptt2007-05-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23401 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r23370gpoirier2007-05-271-10/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23390 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23388Gabrov2007-05-273-9/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23389 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync with r23370, with only one section obsolete.gpoirier2007-05-271-557/+1871
| | | | | | | | | | patch by JRaSH % jrash06 A 163 P com% More information on the email containing the patch: Date: May 27, 2007 3:02 AM Subject: [MPlayer-translations] Update to trunk/DOCS/man/zh/mplayer.1 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23388 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync to 30.3.2007jheryan2007-05-2418-4800/+5750
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23382 b3059339-0415-0410-9bf9-f77b7e298cf2
* more sensless repo moving ..moving ...michael2007-05-242-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23381 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23370Gabrov2007-05-221-12/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23377 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'ed up with r21654ptt2007-05-211-7/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23373 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'ed up with r21561ptt2007-05-211-19/+78
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23371 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing fpsptt2007-05-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23370 b3059339-0415-0410-9bf9-f77b7e298cf2
* missed sync tag updatevoroshil2007-05-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23369 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23367: little alignment fixesvoroshil2007-05-211-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23368 b3059339-0415-0410-9bf9-f77b7e298cf2
* little alignment fixesptt2007-05-211-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23367 b3059339-0415-0410-9bf9-f77b7e298cf2
* little fixesptt2007-05-211-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23365 b3059339-0415-0410-9bf9-f77b7e298cf2
* -----mencoder.xml----voroshil2007-05-192-4/+4
| | | | | | | | | r23342: Add ID to example. -----mplayer.1---- r23325: 1L to me: dv does not support YVU9. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23347 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add ID to example.diego2007-05-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23342 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1L to me: dv does not support YVU9.corey2007-05-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23325 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typokraymer2007-05-141-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23320 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23152: Add -ass-hinting option for setting font hinting method.kraymer2007-05-141-8/+37
| | | | | | | | | | | | r23261: description for -menu-keepdir option r23283: wrong suboption for vo gif89a r23291: update copyright year' r23308: List dv in pixel formats lavc's dv encoder supports. r23311: add svq1 lavcopts format colorspace r23314: fix formating of lavcopts format suboptions git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23319 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23308: List dv in pixel formats lavc's dv encoder supports.voroshil2007-05-141-5/+7
| | | | | | | | r23311: add svq1 lavcopts format colorspace r23314: fix formating of lavcopts format suboptions git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23315 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix formating of lavcopts format suboptionscompn2007-05-141-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23314 b3059339-0415-0410-9bf9-f77b7e298cf2
* add svq1 lavcopts format colorspacecompn2007-05-131-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23311 b3059339-0415-0410-9bf9-f77b7e298cf2
* List dv in pixel formats lavc's dv encoder supports.corey2007-05-131-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23308 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23283: wrong suboption for vo gif89a, revision 16722 shows the problem, ↵voroshil2007-05-121-4/+4
| | | | | | | | | this manpage error is 18 months old! r23291: update copyright year' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23304 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23271: libdha is no more.voroshil2007-05-122-6/+7
| | | | | | | r23272: 10l syntax error git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23303 b3059339-0415-0410-9bf9-f77b7e298cf2
* update copyright year'compn2007-05-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23291 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r23283, fix a French typogpoirier2007-05-101-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23285 b3059339-0415-0410-9bf9-f77b7e298cf2
* wrong suboption for vo gif89a, revision 16722 shows the problem, this ↵compn2007-05-101-2/+2
| | | | | | manpage error is 18 months old! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23283 b3059339-0415-0410-9bf9-f77b7e298cf2
* take the lead on VIDIX, as pointed out by Diegoben2007-05-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23274 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed obsolete sectionben2007-05-081-8/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23273 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l syntax errordiego2007-05-081-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23272 b3059339-0415-0410-9bf9-f77b7e298cf2
* libdha is no more.diego2007-05-082-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23271 b3059339-0415-0410-9bf9-f77b7e298cf2
* try to limit the mess from the svn moves by pointing to the new locationmichael2007-05-082-0/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23270 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23240: document lavc's 'level' option, patch by Carl Eugen Hoyosvoroshil2007-05-081-1/+10
| | | | | | | r23261: description for -menu-keepdir option git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23269 b3059339-0415-0410-9bf9-f77b7e298cf2
* mention myself (besides Sascha) to VIDIX import and maintainshipben2007-05-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23268 b3059339-0415-0410-9bf9-f77b7e298cf2
* libdha is gone now, don't mention it anymoreben2007-05-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23267 b3059339-0415-0410-9bf9-f77b7e298cf2
* description for -menu-keepdir optionben2007-05-082-0/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23261 b3059339-0415-0410-9bf9-f77b7e298cf2
* These files are now in the separate NUT repository.diego2007-05-082-1202/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23260 b3059339-0415-0410-9bf9-f77b7e298cf2
* document lavc's 'level' optioncehoyos2007-05-061-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23241 b3059339-0415-0410-9bf9-f77b7e298cf2
* document lavc's 'level' option, patch by Carl Eugen Hoyosgpoirier2007-05-061-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23240 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23225: The GUI no longer depends on libpng.voroshil2007-05-052-5/+4
| | | | | | | r23226: MJPEG decoding does not depend on libjpeg. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23236 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23227Gabrov2007-05-032-5/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23228 b3059339-0415-0410-9bf9-f77b7e298cf2
* MJPEG decoding does not depend on libjpeg.diego2007-05-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23226 b3059339-0415-0410-9bf9-f77b7e298cf2
* The GUI no longer depends on libpng.diego2007-05-032-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23225 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r23162gpoirier2007-05-011-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23204 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify whom to send translations to.diego2007-05-011-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23198 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r23152gpoirier2007-05-011-4/+35
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23194 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23179Gabrov2007-04-303-32/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23180 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23161: Remove outdated and wrong references to codecs.conf.voroshil2007-04-302-14/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23178 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync tag updatevoroshil2007-04-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23177 b3059339-0415-0410-9bf9-f77b7e298cf2
* update wishlistcompn2007-04-281-12/+13
| | | | | | | | | add loop wish remove old wishes (bmp image, smacker, merge vidix) move all filter wishes under filter section. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23164 b3059339-0415-0410-9bf9-f77b7e298cf2
* updated manpages with new vidix subdevice namesben2007-04-2810-31/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23162 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove outdated and wrong references to codecs.conf.diego2007-04-282-27/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23161 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23152: Add -ass-hinting option for setting font hinting method.voroshil2007-04-281-3/+27
| | | | | | | r23154: Make -monitorpixelaspect 0 the default. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23155 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make -monitorpixelaspect 1 the default.cehoyos2007-04-272-5/+6
| | | | | | | Patch by Onur Küçük <onur.--.-.delipenguen.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23154 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add -ass-hinting option for setting font hinting method.eugeni2007-04-271-0/+21
| | | | | | | | | It is possible to separately configure hinting for scaled and unscaled osd. The default is native hinter for unscaled osd (only vo_gl at this point), no hinting for vf_ass. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23152 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark loader as unmaintained.diego2007-04-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23148 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23100Gabrov2007-04-261-20/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23115 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23100: Update AMR instructions.voroshil2007-04-241-21/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23101 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update AMR instructions.diego2007-04-231-19/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23100 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19039 was missed in first sync (r19631). fixed.voroshil2007-04-231-10/+3
| | | | | | | two typos fixed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23098 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark incompletely translated file as such.diego2007-04-231-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23094 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling, wordingvoroshil2007-04-221-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23079 b3059339-0415-0410-9bf9-f77b7e298cf2
* Suggest svn diff command that does not show most cosmeticsreimar2007-04-221-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23065 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23003Gabrov2007-04-163-132/+74
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23005 b3059339-0415-0410-9bf9-f77b7e298cf2
* typovoroshil2007-04-141-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22988 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22975: cosmetics: remove trailing white spacevoroshil2007-04-121-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22981 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22845: Clarify -xineramascreen -2 behaviourkraymer2007-04-111-9/+17
| | | | | | | | | | | | r22900: documented -mpegopts :adelay r22916: Ability to specify video and audio capture device names in *BSD BT848 tv driver. r22948: documented -mpegopts :interleaving2 r22949: more human description of -mpegopts :interleaving2 r22975: end sentence with full stop (.) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22977 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: remove trailing white spacekraymer2007-04-111-2/+2
| | | | | | | end sentence with full stop (.) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22975 b3059339-0415-0410-9bf9-f77b7e298cf2
* more updates for Spanish man page by Fernando Tarín (lists im gmail com)kraymer2007-04-111-163/+611
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22971 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22916: Ability to specify video and audio capture device namesvoroshil2007-04-091-1/+11
| | | | | | | | r22948: documented -mpegopts :interleaving2 r22949: more human description of -mpegopts :interleaving2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22957 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22951: Move netstream documentation into TOOLS/README.voroshil2007-04-091-64/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22956 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move netstream documentation into TOOLS/README.diego2007-04-091-62/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22951 b3059339-0415-0410-9bf9-f77b7e298cf2
* more human description of -mpegopts :interleaving2nicodvb2007-04-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22949 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented -mpegopts :interleaving2nicodvb2007-04-081-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22948 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add "Requirements" and "Mailinglist" sectionattila2007-04-071-2/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22928 b3059339-0415-0410-9bf9-f77b7e298cf2
* Ability to specify video and audio capture device namesvoroshil2007-04-051-0/+4
| | | | | | | in *BSD BT848 tv driver. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22916 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fix (s/M/N/) in IMPORTA_M_Tgpoirier2007-04-041-1/+1
| | | | | | | patch by Onur Kucuk %onur A delipenguen P net% git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22915 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r22902gpoirier2007-04-041-9/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22914 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22854: Remove empty section.voroshil2007-04-031-60/+56
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22909 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22845: Clarify -xineramascreen -2 behaviourvoroshil2007-04-031-10/+9
| | | | | | | | | r22900: documented -mpegopts :adelay r22901: removed unexplainable and escaped trailing spaces from -mpegopts :drop and :tsaf r22902: restored previous definition of -mpegopts :drop and :tsaf (r22900); they were there for a good reason git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22908 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mention DNS round-robin system in the mirroring HOWTO.diego2007-04-031-1/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22905 b3059339-0415-0410-9bf9-f77b7e298cf2
* restored previous definition of -mpegopts :drop and :tsaf (r22900); they ↵nicodvb2007-04-011-2/+2
| | | | | | were there for a good reason git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22902 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unexplainable and escaped trailing spaces from -mpegopts :drop and :tsafnicodvb2007-04-011-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22901 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented -mpegopts :adelaynicodvb2007-04-011-8/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22900 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove empty section.diego2007-03-311-59/+55
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22854 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22800 (missing from previous commit)Gabrov2007-03-311-3/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22851 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22849Gabrov2007-03-313-44/+103
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22850 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22845Gabrov2007-03-311-7/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22849 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21155gpoirier2007-03-301-40/+35
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22846 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify -xineramascreen -2 behaviourreimar2007-03-301-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22845 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Remove all trailing whitespace.diego2007-03-291-46/+46
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22844 b3059339-0415-0410-9bf9-f77b7e298cf2
* some sync by Fernando Tarín, lists.im gmail comdiego2007-03-291-163/+140
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22843 b3059339-0415-0410-9bf9-f77b7e298cf2
* Spanish man page updates by Fernando Tarínkraymer2007-03-271-51/+156
| | | | | | | More sentences fixed and another section updated. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22834 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22637: Allow to specify frequencies in channels option.kraymer2007-03-261-2/+7
| | | | | | | | | r22747: Explain workaround for -vo gl:scaled-osd -ass image corruption. r22772: Available interfaces are showed in verbose mode. r22779: roff fix: escape dash for options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22829 b3059339-0415-0410-9bf9-f77b7e298cf2
* Spanish man page updates by Fernando Tarínkraymer2007-03-261-171/+90
| | | | | | | Some issues fixed and another section translated git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22828 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22800: Get rid of useless conditional, using svgalib_helper now requires ↵voroshil2007-03-251-4/+3
| | | | | | | | | modifying patch by Andrew Savchenko birkoph at list dot ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22818 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of useless conditional, using svgalib_helper now requires modifyingdiego2007-03-241-3/+2
| | | | | | | a line in the Makefile in all cases. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22800 b3059339-0415-0410-9bf9-f77b7e298cf2
* the mirror howto isnt preliminary anymoreattila2007-03-241-6/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22792 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22622: Wording improvement as suggested by Michael.voroshil2007-03-241-3/+8
| | | | | | | | | | r22637: Allow to specify frequencies in channels option. r22747: Explain workaround for -vo gl:scaled-osd -ass image corruption. r22776: 'D' also turns off and on kerndeint r22779: roff fix: escape dash for options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22791 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22547: fix up some longer than 80 char lines , and use suggestion from Diego.voroshil2007-03-241-6/+54
| | | | | | | | | | | | | | | | | | r22570: dont start newline with a space and readd subdirectory r22718: add new audio and video codecs to libavcodec list r22748: add png and gif encoders, how to use them with mencoder is another question r22749: split sonic into sonic/sonicls and wma into wmav1/wmav2 r22750: add rest of lavc encoders to list (vcr1, cljr, jpegls, ffvhuff, msmpeg4v1) r22751: gsm requires libgsm so remove it r22752: aiff isnt there as well, TEST FIRST, THEN DOCUMENT COMPN! r22753: ok so cljr , vcr1 and msmpegv1 dont actually work... removed r22679: Some more details for the mga_vid section taken from drivers/README. r22686: tdfx_vid compilation has been simplified. r22695: Add a link to Attila's mga_vid port to Linux 2.6.x. r22704: 'make install' now takes care of most manual installation steps for *_vid.o. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22790 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22547: fix up some longer than 80 char lines , and use suggestion from Diego.voroshil2007-03-241-23/+35
| | | | | | | | | | | | | | | | | | r22570: dont start newline with a space and readd subdirectory r22718: add new audio and video codecs to libavcodec list r22748: add png and gif encoders, how to use them with mencoder is another question r22749: split sonic into sonic/sonicls and wma into wmav1/wmav2 r22750: add rest of lavc encoders to list (vcr1, cljr, jpegls, ffvhuff, msmpeg4v1) r22751: gsm requires libgsm so remove it r22752: aiff isnt there as well, TEST FIRST, THEN DOCUMENT COMPN! r22753: ok so cljr , vcr1 and msmpegv1 dont actually work... removed r22679: Some more details for the mga_vid section taken from drivers/README. r22686: tdfx_vid compilation has been simplified. r22695: Add a link to Attila's mga_vid port to Linux 2.6.x. r22704: 'make install' now takes care of most manual installation steps for *_vid.o. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22789 b3059339-0415-0410-9bf9-f77b7e298cf2
* add mf://bmp wish, remove deinterlace filter during playbackcompn2007-03-231-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22786 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r22779gpoirier2007-03-221-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22784 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'd up to r21452ptt2007-03-221-13/+37
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22781 b3059339-0415-0410-9bf9-f77b7e298cf2
* roff fix: escape dash for optionskraymer2007-03-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22779 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22776: 'D' also turns off and on kerndeintcehoyos2007-03-225-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22778 b3059339-0415-0410-9bf9-f77b7e298cf2
* 'D' also turns off and on kerndeintcehoyos2007-03-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22776 b3059339-0415-0410-9bf9-f77b7e298cf2
* ok so cljr , vcr1 and msmpegv1 dont actually work... removedcompn2007-03-191-12/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22753 b3059339-0415-0410-9bf9-f77b7e298cf2
* aiff isnt there as well, TEST FIRST, THEN DOCUMENT COMPN!compn2007-03-191-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22752 b3059339-0415-0410-9bf9-f77b7e298cf2
* gsm requires libgsm so remove itcompn2007-03-191-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22751 b3059339-0415-0410-9bf9-f77b7e298cf2
* add rest of lavc encoders to list (vcr1, cljr, jpegls, ffvhuff, msmpeg4v1)compn2007-03-191-0/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22750 b3059339-0415-0410-9bf9-f77b7e298cf2
* split sonic into sonic/sonicls and wma into wmav1/wmav2compn2007-03-191-3/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22749 b3059339-0415-0410-9bf9-f77b7e298cf2
* add png and gif encoders, how to use them with mencoder is another questioncompn2007-03-191-1/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22748 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explain workaround for -vo gl:scaled-osd -ass image corruption.reimar2007-03-191-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22747 b3059339-0415-0410-9bf9-f77b7e298cf2
* video filters i maintain ...michael2007-03-191-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22738 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r22637gpoirier2007-03-181-4/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22722 b3059339-0415-0410-9bf9-f77b7e298cf2
* add new audio and video codecs to libavcodec listcompn2007-03-181-0/+32
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22718 b3059339-0415-0410-9bf9-f77b7e298cf2
* 'make install' now takes care of most manual installation steps for *_vid.o.diego2007-03-171-19/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22704 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a link to Attila's mga_vid port to Linux 2.6.x.diego2007-03-171-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22695 b3059339-0415-0410-9bf9-f77b7e298cf2
* tdfx_vid compilation has been simplified.diego2007-03-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22686 b3059339-0415-0410-9bf9-f77b7e298cf2
* New slave command: tv_step_freq <offset in MHz>voroshil2007-03-171-0/+3
| | | | | | | Command sets the TV frequency relative to current value git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22685 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some more details for the mga_vid section taken from drivers/README.diego2007-03-171-5/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22679 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22492: documented -reuse-socketkraymer2007-03-161-1/+10
| | | | | | | | | | | r22503: corrected description of -reuse-socket as described by Rich r22508: Document lscale=2 r22512: wording/spelling for lscale=2 suboption r22521: Clarify -reuse-socket description. r22622: Wording improvement as suggested by Michael. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22639 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow to specify frequencies in channels option.voroshil2007-03-161-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22637 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark myself as new TV maintainer as suggested by Jindrich Makovickavoroshil2007-03-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22636 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r22503gpoirier2007-03-161-3/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22633 b3059339-0415-0410-9bf9-f77b7e298cf2
* some updates from memory and mplayer irc userscompn2007-03-161-1/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22631 b3059339-0415-0410-9bf9-f77b7e298cf2
* Wording improvement as suggested by Michael.diego2007-03-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22622 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a FIXME note about new sentences on new lines.diego2007-03-151-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22620 b3059339-0415-0410-9bf9-f77b7e298cf2
* update password-gpg rule from ffmpegmichael2007-03-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22611 b3059339-0415-0410-9bf9-f77b7e298cf2
* update >5 line reindention rule to what is in ffmpegmichael2007-03-151-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22610 b3059339-0415-0410-9bf9-f77b7e298cf2
* update spliting rule to what i just added to ffmpegmichael2007-03-151-7/+7
| | | | | | | comments welcome git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22609 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetic (move warning point after the existing policy points instead of the ↵michael2007-03-151-4/+5
| | | | | | middle) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22608 b3059339-0415-0410-9bf9-f77b7e298cf2
* dont start newline with a space and readd subdirectorycompn2007-03-141-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22570 b3059339-0415-0410-9bf9-f77b7e298cf2
* major man page updatekraymer2007-03-141-229/+895
| | | | | | | | patch by Fernando Tarín (icemanf gmail com) with some fixes by me (this patch still needs some review; note the added FIXME comment..) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22569 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix wrong typo fix, as noted by Diegogpoirier2007-03-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22550 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix some trivial typosgpoirier2007-03-131-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22548 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix up some longer than 80 char lines , and use suggestion from Diego.compn2007-03-131-5/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22547 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22521: Clarify -reuse-socket description.voroshil2007-03-121-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22533 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22408: add -tv driver=help entry, also add dshow tv drivervoroshil2007-03-121-2/+15
| | | | | | | | | | | | | | r22409: 10l: dshow isnt in svn yet r22453: add -xvfwopts compdata suboption to man page r22461: -nomouseinput is no longer X11 only. r22492: documented -reuse-socket r22503: corrected description of -reuse-socket as described by Rich r22508: Document lscale=2 r22512: wording/spelling for lscale=2 suboption r22521: Clarify -reuse-socket description. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22532 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22413: add xvfwopts compdata and vfw2menc documentation and change to ↵voroshil2007-03-123-11/+60
| | | | | | | | | | better mencoder example r22499: Improve MPlayerOSX building process: r22402: Explain how to select all DVB channels on a frequency. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22531 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify that commits should not be split arbitrarily by file/directory.diego2007-03-121-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22529 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling/punctuationdiego2007-03-121-11/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22528 b3059339-0415-0410-9bf9-f77b7e298cf2
* minor clarificationdiego2007-03-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22522 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify -reuse-socket description.diego2007-03-121-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22521 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2007-03-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22520 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure docbook 4.x gets preferred over 3.x.diego2007-03-111-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22514 b3059339-0415-0410-9bf9-f77b7e298cf2
* wording/spelling for lscale=2 suboptiondiego2007-03-111-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22512 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document lscale=2reimar2007-03-111-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22508 b3059339-0415-0410-9bf9-f77b7e298cf2
* corrected description of -reuse-socket as described by Richnicodvb2007-03-091-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22503 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improve MPlayerOSX building process:gpoirier2007-03-091-4/+4
| | | | | | | | - explain what MACOSX_DEPLOYMENT_TARGET is good for - remove --with-termcaplib=.. from configure switches: it doesn't exist anymore, and builds seem to work OK without any particular switch git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22499 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented -reuse-socketnicodvb2007-03-081-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22492 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling/punctuation/grammar/wording improvements, no semantic changesdiego2007-03-081-229/+230
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22488 b3059339-0415-0410-9bf9-f77b7e298cf2
* Merge all .PHONY target declarations.diego2007-03-071-10/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22485 b3059339-0415-0410-9bf9-f77b7e298cf2
* mplayer.1kraymer2007-03-061-2/+8
| | | | | | | | | | | | | | | | | | r22408: add -tv driver=help entry, also add dshow tv driver r22409: 10l: dshow isnt in svn yet r22453: add -xvfwopts compdata suboption to man page r22461: -nomouseinput is no longer X11 only. help_mp-de.h r22228: Select the first charmap in the font, if FreeType did not autoselect any. r22276: Reallocate event_images_t, removing limit on simultanious events count. r22292: make message translatable r22331: remove some #if 0 code r22426: warn users about DRM asf files, patch by zuxy meng r22428: wrong capitolization, thats a comma not a period git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22480 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22469Gabrov2007-03-053-8/+58
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22470 b3059339-0415-0410-9bf9-f77b7e298cf2
* -nomouseinput is no longer X11 only.diego2007-03-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22461 b3059339-0415-0410-9bf9-f77b7e298cf2
* add -xvfwopts compdata suboption to man pagecompn2007-03-041-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22453 b3059339-0415-0410-9bf9-f77b7e298cf2
* add xvfwopts compdata and vfw2menc documentation and change to better ↵compn2007-03-021-2/+42
| | | | | | mencoder example git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22413 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l: dshow isnt in svn yetcompn2007-03-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22409 b3059339-0415-0410-9bf9-f77b7e298cf2
* add -tv driver=help entry, also add dshow tv drivercompn2007-03-021-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22408 b3059339-0415-0410-9bf9-f77b7e298cf2
* rename to *_proposal.txtmichael2007-03-011-0/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22405 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify quorum and majority requirements in respect to debians voting systemmichael2007-03-011-4/+18
| | | | | | | maybe we should just copy and paste the description from debian and add these into it? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22404 b3059339-0415-0410-9bf9-f77b7e298cf2
* url with a good description of how to determine the winner from the votesmichael2007-03-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22403 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explain how to select all DVB channels on a frequency.reimar2007-03-011-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22402 b3059339-0415-0410-9bf9-f77b7e298cf2
* s/admin/leader/michael2007-03-011-18/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22400 b3059339-0415-0410-9bf9-f77b7e298cf2
* weaken veto rightmichael2007-03-011-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22398 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify root vs adminmichael2007-03-011-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22392 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling fixes by ivanmichael2007-03-011-19/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22391 b3059339-0415-0410-9bf9-f77b7e298cf2
* new policy draftmichael2007-03-011-0/+291
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22386 b3059339-0415-0410-9bf9-f77b7e298cf2
* grammar/spellingdiego2007-02-271-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22363 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l to me for bad todo itemscompn2007-02-241-3/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22338 b3059339-0415-0410-9bf9-f77b7e298cf2
* iive says xvmc stuff is long donecompn2007-02-241-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22337 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove some old and add new TODOcompn2007-02-241-27/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22336 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Fix some common typos, appropiate --> appropRiate,diego2007-02-244-4/+4
| | | | | | | handEling --> handling, dependAnt --> dependEnt. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22334 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22326Gabrov2007-02-234-192/+199
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22327 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2007-02-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22311 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: typo fixes, usefuLL --> useful and aswell --> as welldiego2007-02-223-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22307 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Fix some common typos, sepErate --> sepArate, deciSSion --> deciSion.diego2007-02-211-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22301 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove remnants of the nonfunctional "grab_frames" command.uau2007-02-191-3/+0
| | | | | | | The command has been a no-op for years. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22273 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify that language must be a 3 letter codemichael2007-02-181-4/+5
| | | | | | | dont clarify the country code 2 vs. 3 issue as there where few comments about that ... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22265 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark myself as MPlayer sync/core maintaineruau2007-02-181-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22263 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some typo fixes in svn-howtoreimar2007-02-181-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22256 b3059339-0415-0410-9bf9-f77b7e298cf2
* wording, typos fixvoroshil2007-02-171-534/+534
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22241 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22201: some clarification about dvb-out playbackvoroshil2007-02-161-5/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22235 b3059339-0415-0410-9bf9-f77b7e298cf2
* update wishlist, approved by diegocompn2007-02-161-15/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22230 b3059339-0415-0410-9bf9-f77b7e298cf2
* random small fixesdiego2007-02-141-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22220 b3059339-0415-0410-9bf9-f77b7e298cf2
* demuxers must ignore unknown lang/country codes, it seems we all agree that ↵michael2007-02-141-0/+2
| | | | | | | | | | | this should be stated clearly it follows from the fact that new language and country codes are added to the ISO standards from time to time and that a compliant demuxer must not reject a valid file which uses such a new code which was not know when the demuxer was written git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22217 b3059339-0415-0410-9bf9-f77b7e298cf2
* some clarification about dvb-out playbacknicodvb2007-02-111-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22201 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r22150gpoirier2007-02-101-9/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22195 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify description of reserved_count in frame header patch by (Clemens ↵michael2007-02-101-2/+3
| | | | | | Ladisch cladisch,fastmail,net) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22192 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22150: key-fifo-size default changedkraymer2007-02-091-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22187 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typo, line break, wordingkraymer2007-02-091-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22179 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r22107gpoirier2007-02-061-32/+36
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22164 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22104: Add global field dominance flag instead of duplicating this "everywhere"voroshil2007-02-051-37/+70
| | | | | | | | | | | | | | r22107: Move -vo gl suboptions that should be irrelevant for the average user r22108: formatting fixes for r22104 r22113: insert line break for readability r22123: tinterlace mode 4 leaves height unchanged. r22127: Fix vqscale description to match at least somewhat the code. r22137: formatting/wording r22138: wording/formatting r22150: key-fifo-size default changed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22157 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22129: Link to the mencoder-users list for mencoder stuffvoroshil2007-02-052-181/+183
| | | | | | | | r22140: vp6vfw.dll appears to no longer crash under Linux. r22141: Move all "Encoding with the XXX codec family" sections together. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22156 b3059339-0415-0410-9bf9-f77b7e298cf2
* key-fifo-size default changedreimar2007-02-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22150 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix unintentional line breakkraymer2007-02-051-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22146 b3059339-0415-0410-9bf9-f77b7e298cf2
* some more docbook paths, patch by Torinthieldiego2007-02-051-8/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22144 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22104gpoirier2007-02-051-3/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22143 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22123: tinterlace mode 4 leaves height unchanged.kraymer2007-02-051-10/+13
| | | | | | | | | | | r22127: Fix vqscale description to match at least somewhat the code. r22137: formatting/wording r22138: wording/formatting r22139: Try to clarify scale filter usage hint. remove duplicate word git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22142 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move all "Encoding with the XXX codec family" sections together.diego2007-02-051-177/+177
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22141 b3059339-0415-0410-9bf9-f77b7e298cf2
* vp6vfw.dll appears to no longer crash under Linux.diego2007-02-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22140 b3059339-0415-0410-9bf9-f77b7e298cf2
* wording/formattingdiego2007-02-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22138 b3059339-0415-0410-9bf9-f77b7e298cf2
* formatting/wordingdiego2007-02-051-2/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22137 b3059339-0415-0410-9bf9-f77b7e298cf2
* Link to the mencoder-users list for mencoder stuffreimar2007-02-041-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22129 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix vqscale description to match at least somewhat the code.reimar2007-02-041-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22127 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22123Gabrov2007-02-041-90/+132
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22125 b3059339-0415-0410-9bf9-f77b7e298cf2
* tinterlace mode 4 leaves height unchanged.reimar2007-02-041-1/+1
| | | | | | | "full-height" is not exactly wrong but it definitely is confusing. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22123 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22107: Move -vo gl suboptions that should be irrelevant for the average userkraymer2007-02-031-29/+33
| | | | | | | | | to a separate section further down. version bump to r22113 (r22108 and r22113 previously applied) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22118 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22089: x264's crf takes a float argumentkraymer2007-02-031-4/+29
| | | | | | | | | r22104: Add global field dominance flag instead of duplicating this "everywhere" Patch by Carl Eugen Hoyos (cehoyos (at) ag or at) r22108: formatting fixes for r22104 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22116 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22062: alphabetical orderkraymer2007-02-031-69/+74
| | | | | | | | r22074: (doesn't apply) r22075: Document -noidx. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22115 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21959: Apply ancient double-click patch that nobody cares to comment on.kraymer2007-02-031-13/+30
| | | | | | | | | | | | | | r21989: fix typo r22008: Address age-old FIXMEs about tdfx_vid, tdfxfb and 3dfx vo drivers. r22014: Clarify -delay. r22016: Remove confusing line about forcing MP3 demuxing. r22060: describe -psprobe r22061: typo, new sentences on lines of their own r22113: insert line break for readability git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22114 b3059339-0415-0410-9bf9-f77b7e298cf2
* insert line break for readabilitykraymer2007-02-031-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22113 b3059339-0415-0410-9bf9-f77b7e298cf2
* formatting fixes for r22104kraymer2007-02-031-5/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22108 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move -vo gl suboptions that should be irrelevant for the average userreimar2007-02-031-24/+28
| | | | | | | to a separate section further down. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22107 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add global field dominance flag instead of duplicating this "everywhere"reimar2007-02-021-2/+22
| | | | | | | Patch by Carl Eugen Hoyos (cehoyos (at) ag or at) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22104 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22089 (again)gpoirier2007-02-011-58/+58
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22103 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r22089gpoirier2007-02-011-12/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22102 b3059339-0415-0410-9bf9-f77b7e298cf2
* r22060: describe -psprobevoroshil2007-01-311-2/+14
| | | | | | | | | | | r22061: typo, new sentences on lines of their own r22062: alphabetical order r22074: typo r22075: Document -noidx. r22089: x264's crf takes a float argument git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22093 b3059339-0415-0410-9bf9-f77b7e298cf2
* x264's crf takes a float argumentlorenm2007-01-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22089 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document -noidx.diego2007-01-301-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22075 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2007-01-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22074 b3059339-0415-0410-9bf9-f77b7e298cf2
* better back_ptr_div16 description by (Clemens Ladisch ((( cladisch ( ↵michael2007-01-301-4/+5
| | | | | | fastmail (( net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22069 b3059339-0415-0410-9bf9-f77b7e298cf2
* Expand property documentationreimar2007-01-291-49/+52
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22065 b3059339-0415-0410-9bf9-f77b7e298cf2
* List available propertiesreimar2007-01-291-0/+54
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22064 b3059339-0415-0410-9bf9-f77b7e298cf2
* alphabetical orderdiego2007-01-291-63/+63
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22062 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo, new sentences on lines of their owndiego2007-01-291-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22061 b3059339-0415-0410-9bf9-f77b7e298cf2
* describe -psprobenicodvb2007-01-281-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22060 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced up to r21221ptt2007-01-271-245/+265
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22031 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21989: fix typovoroshil2007-01-271-10/+7
| | | | | | | | | r22008: Address age-old FIXMEs about tdfx_vid, tdfxfb and 3dfx vo drivers. r22014: Clarify -delay. r22016: Remove confusing line about forcing MP3 demuxing. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22027 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r22016Gabrov2007-01-261-10/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22022 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove confusing line about forcing MP3 demuxing.diego2007-01-251-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22016 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify -delay.diego2007-01-251-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22014 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l to Gabrov for breaking docs build.rathann2007-01-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22012 b3059339-0415-0410-9bf9-f77b7e298cf2
* Address age-old FIXMEs about tdfx_vid, tdfxfb and 3dfx vo drivers.diego2007-01-241-8/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22008 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21989Gabrov2007-01-214-67/+455
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21990 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typoGabrov2007-01-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21989 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21959: Apply ancient double-click patch that nobody cares to comment on.voroshil2007-01-211-1/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21987 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21959gpoirier2007-01-181-17/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21961 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21959Gabrov2007-01-183-823/+855
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21960 b3059339-0415-0410-9bf9-f77b7e298cf2
* Apply ancient double-click patch that nobody cares to comment on.reimar2007-01-181-0/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21959 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21930: gcc_bug++;voroshil2007-01-183-18/+45
| | | | | | | | | | | r21931: update x264's subq otion description r21932: update and factorize information about x264's multi-threading mode r21933: fixes suggested by Diego r21934: get rid of two spaces after a period (instead of one) r21954: "-lavdopts fast" has applied to mpeg4 and h264 for a while git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21958 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21954: "-lavdopts fast" has applied to mpeg4 and h264 for a whilekraymer2007-01-171-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21955 b3059339-0415-0410-9bf9-f77b7e298cf2
* "-lavdopts fast" has applied to mpeg4 and h264 for a whilelorenm2007-01-171-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21954 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21952Gabrov2007-01-172-498/+571
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21953 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21727: Must refer to option name instead of internal variablekraymer2007-01-171-17/+22
| | | | | | | | | | r21758: Subtitle formats are listed in subreader.h, not libmpdemux/demuxer.h. r21848: clarify a few things about the interaction between *cmp and mbd options r21865: Audio track switching works with DVDs as well. r21882: sync to x264 r607 (update description of threads) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21950 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21691: added smb:// to the list of allowed input urlskraymer2007-01-171-12/+21
| | | | | | | | | | r21692: mentioned file:// and smb:// as alternative stream outputs for mencoder r21722: ffv1 and ffvhuff haven't required vstrict=-2 for a while r21724: small wording/markup improvements r21725: wording and markup improvements git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21949 b3059339-0415-0410-9bf9-f77b7e298cf2
* get rid of two spaces after a period (instead of one)gpoirier2007-01-151-13/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21934 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixes suggested by Diegogpoirier2007-01-151-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21933 b3059339-0415-0410-9bf9-f77b7e298cf2
* update and factorize information about x264's multi-threading modegpoirier2007-01-151-6/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21932 b3059339-0415-0410-9bf9-f77b7e298cf2
* update x264's subq otion descriptiongpoirier2007-01-151-1/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21931 b3059339-0415-0410-9bf9-f77b7e298cf2
* gcc_bug++;diego2007-01-151-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21930 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21882: sync to x264 r607 (update description of threads)voroshil2007-01-141-9/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21922 b3059339-0415-0410-9bf9-f77b7e298cf2
* translation status updatevoroshil2007-01-141-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21921 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling, wording fixvoroshil2007-01-141-48/+40
| | | | | | | patch from Andrew Savchenko bircoph at mail dot ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21920 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21917: typo fixesvoroshil2007-01-142-12/+50
| | | | | | | | | r21897: Rephrase mga_vid section. r21896: Document vo_tdfx_vid. r21882: sync to x264 r607 (update description of threads) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21918 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fixes:gpoirier2007-01-141-2/+2
| | | | | | | | | 1) missing space 2) "vtrict" instead of "vstrict" patch by Andrew Savchenko % Bircoph A list P ru % git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21917 b3059339-0415-0410-9bf9-f77b7e298cf2
* Rephrase mga_vid section.diego2007-01-131-8/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21897 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document vo_tdfx_vid.diego2007-01-131-0/+45
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21896 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync tag updatevoroshil2007-01-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21886 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21879: fix wrong option names that were suggested to use to producevoroshil2007-01-121-1/+342
| | | | | | | | | r21861: explain how to use MEncoder to create QuickTime-compatible files slightly modified patch from Andrew Savchenko bircoph at mail dot ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21885 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling, wordingvoroshil2007-01-121-119/+115
| | | | | | | | | patch from Andrew Savchenko bircoph at mail dot ru with small fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21884 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync to x264 r607 (update description of threads)lorenm2007-01-111-6/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21882 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21865: Audio track switching works with DVDs as well.voroshil2007-01-111-2/+2
| | | | | | | r21867: upgrade copyright years git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21881 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix wrong option names that were suggested to use to producegpoirier2007-01-111-2/+2
| | | | | | | | quicktime-compatible files: they were using the old name, prior to the switch to x264's parser git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21879 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typovoroshil2007-01-111-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21878 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync tag bumptorinthiel2007-01-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21876 b3059339-0415-0410-9bf9-f77b7e298cf2
* upgrade copyright yearsgpoirier2007-01-1018-10/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21867 b3059339-0415-0410-9bf9-f77b7e298cf2
* Audio track switching works with DVDs as well.diego2007-01-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21865 b3059339-0415-0410-9bf9-f77b7e298cf2
* explain how to use MEncoder to create QuickTime-compatible filesgpoirier2007-01-101-2/+318
| | | | | | | | | | Mainly based on a patch by Mark Pilgrim % pilgrim A gmail P com % Original thread: Date: Oct 19, 2006 9:50 PM Subject: [MPlayer-DOCS] Interested in contributing case studies git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21861 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21848: clarify a few things about the interaction between *cmp and mbd optionsvoroshil2007-01-081-6/+6
| | | | | | | r21849: fix typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21857 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21848: clarify a few things about the interaction between *cmp and mbd optionsvoroshil2007-01-081-4/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21856 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typogpoirier2007-01-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21849 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify a few things about the interaction between *cmp and mbd optionsgpoirier2007-01-072-6/+13
| | | | | | | fix encoding example that featured a option that didn't have any effect (because of the interaction mentioned above) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21848 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21624Gabrov2007-01-061-295/+354
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21847 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21748Gabrov2007-01-061-180/+194
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21844 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21741Gabrov2007-01-061-87/+112
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21837 b3059339-0415-0410-9bf9-f77b7e298cf2
* add autodetection support for docbook stuff installed in /opt, such as ↵gpoirier2007-01-041-0/+4
| | | | | | macports do for ex. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21824 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21760, typostorinthiel2007-01-041-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21814 b3059339-0415-0410-9bf9-f77b7e298cf2
* translated r21748torinthiel2007-01-041-0/+99
| | | | | | | by Eric Wang eric7wang gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21813 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21537Gabrov2007-01-021-93/+168
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21812 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21737Gabrov2007-01-021-157/+218
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21811 b3059339-0415-0410-9bf9-f77b7e298cf2
* better wording and typos fixingvoroshil2007-01-021-218/+225
| | | | | | | Slightly modified patch from Andrew Savchenko birkoph at mail dot ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21810 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21791: avoid a possible confusion, as suggested by Wanderervoroshil2007-01-021-3/+3
| | | | | | | r21802: I've found a mistake in encoding-guide: git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21809 b3059339-0415-0410-9bf9-f77b7e298cf2
* I've found a mistake in encoding-guide:rtogni2006-12-311-1/+1
| | | | | | | | | | | | --- With MPEG-4 ASP codecs such as x264, --- But x264 is MPEG-4 AVC, not ASP. Patch by Andrew Savchenko )Bircoph list ru(, approved by Guillaume git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21802 b3059339-0415-0410-9bf9-f77b7e298cf2
* avoid a possible confusion, as suggested by Wanderergpoirier2006-12-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21791 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r21758gpoirier2006-12-291-12/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21785 b3059339-0415-0410-9bf9-f77b7e298cf2
* spellfixnicodvb2006-12-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21784 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21612Gabrov2006-12-281-2130/+2318
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21782 b3059339-0415-0410-9bf9-f77b7e298cf2
* file added: Chinese translation for cd-dvd.xmlkraymer2006-12-271-0/+277
| | | | | | | patch by Kun Niu (haoniukun gmail com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21778 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21741Gabrov2006-12-261-35/+37
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21777 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21741Gabrov2006-12-261-96/+154
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21770 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21748Gabrov2006-12-261-246/+285
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21769 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21612Gabrov2006-12-261-77/+93
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21768 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21686Gabrov2006-12-261-66/+104
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21767 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translation of menc-feat-telecine sect1 in encoding-guide.xml.voroshil2006-12-251-360/+379
| | | | | | | | | | | First two sect2 sections was translated by Andrew Savchenko. Now translation of documentation is complete, but encoding-guide.xml still needs additional checks for technical terms and better spelling. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21766 b3059339-0415-0410-9bf9-f77b7e298cf2
* audio.xml & bugreports.xml synced with r21764Gabrov2006-12-252-99/+181
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21765 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translation of menc-feat-vcd-dvd sect1 in encoding-guide.xmlvoroshil2006-12-241-192/+187
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21764 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translation of menc-feat-x264 sect1 in encoding-guide.xmlvoroshil2006-12-241-360/+354
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21763 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21758: Subtitle formats are listed in subreader.h, not libmpdemux/demuxer.h.voroshil2006-12-241-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21762 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21748: Reformatting round continuedvoroshil2006-12-246-29/+25
| | | | | | | r21760: Directly point to the Subversion instructions. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21761 b3059339-0415-0410-9bf9-f77b7e298cf2
* Directly point to the Subversion instructions.diego2006-12-241-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21760 b3059339-0415-0410-9bf9-f77b7e298cf2
* Subtitle formats are listed in subreader.h, not libmpdemux/demuxer.h.diego2006-12-241-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21758 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21748torinthiel2006-12-235-620/+592
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21751 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reformatting round continuedtorinthiel2006-12-235-24/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21748 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21741: Massive <simpara> -> <para>, as no <simpara>'s are actually needed.voroshil2006-12-237-7/+13
| | | | | | | r21744: Mention that you can use different image formats with mf:// git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21745 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mention that you can use different image formats with mf://torinthiel2006-12-231-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21744 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21741 (or just tag bump)torinthiel2006-12-235-12/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21743 b3059339-0415-0410-9bf9-f77b7e298cf2
* And <simpara> -> <para> continued, those languages somehow slipped by duringtorinthiel2006-12-2312-634/+634
| | | | | | | previous commit. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21742 b3059339-0415-0410-9bf9-f77b7e298cf2
* Massive <simpara> -> <para>, as no <simpara>'s are actually needed.torinthiel2006-12-2337-1649/+1649
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21741 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21736: Add <keycombo> barkup for key combinationsvoroshil2006-12-233-20/+29
| | | | | | | r21737: Add <menuchoice> <guimenu> <guisubmenu> <guimenuitem> markup for menus. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21738 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add <menuchoice> <guimenu> <guisubmenu> <guimenuitem> markup for menus.torinthiel2006-12-232-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21737 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add <keycombo> markup for key combinationstorinthiel2006-12-232-11/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21736 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21722: ffv1 and ffvhuff haven't required vstrict=-2 for a whilevoroshil2006-12-221-10/+18
| | | | | | | | | r21724: small wording/markup improvements r21725: wording and markup improvements r21727: Must refer to option name instead of internal variable git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21729 b3059339-0415-0410-9bf9-f77b7e298cf2
* Must refer to option name instead of internal variable voroshil2006-12-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21727 b3059339-0415-0410-9bf9-f77b7e298cf2
* wording and markup improvementsdiego2006-12-221-2/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21725 b3059339-0415-0410-9bf9-f77b7e298cf2
* small wording/markup improvementsdiego2006-12-221-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21724 b3059339-0415-0410-9bf9-f77b7e298cf2
* ffv1 and ffvhuff haven't required vstrict=-2 for a whilelorenm2006-12-211-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21722 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed wrong sync tagvoroshil2006-12-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21719 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21691: added smb:// to the list of allowed input urlsvoroshil2006-12-211-5/+4
| | | | | | | | r21692: mentioned file:// and smb:// as alternative stream outputs for mencoder r21697: typo fix in denoise3d's chroma_tmp option description git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21718 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21686: [cosmetocs] minor fixes after reformatting roundvoroshil2006-12-214-42/+56
| | | | | | | | r21705: Still some reformatting: r21706: [cosmetics] <simpara> -> <para>, for consistency git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21717 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typos, spelling fixesvoroshil2006-12-2114-184/+183
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21716 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed:voroshil2006-12-211-282/+281
| | | | | | | | | | A lot of typos Issue with ' leading in line Some translation errors Spelling git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21713 b3059339-0415-0410-9bf9-f77b7e298cf2
* consistent naming for revision tagsdiego2006-12-215-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21712 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove very outdated Italian translation.diego2006-12-2111-7909/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21711 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typosvoroshil2006-12-211-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21710 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 21706torinthiel2006-12-212-240/+327
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21709 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 21537torinthiel2006-12-211-99/+174
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21708 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move message translation outside <screen> tagstorinthiel2006-12-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21707 b3059339-0415-0410-9bf9-f77b7e298cf2
* [cosmetics] <simpara> -> <para>, for consistencytorinthiel2006-12-211-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21706 b3059339-0415-0410-9bf9-f77b7e298cf2
* Still some reformatting:torinthiel2006-12-212-32/+45
| | | | | | | | - some (hopefully) more sane linebreaks - remove stray propmt from example git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21705 b3059339-0415-0410-9bf9-f77b7e298cf2
* new file: DOCS/xml/zh_CN/mencoder.xmlkraymer2006-12-201-0/+709
| | | | | | | provided by Kun Nio, haoniukun gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21703 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translation of menc-feat-video-for-windows sect1 in encoding-guide.xmlvoroshil2006-12-201-26/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21700 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21697gpoirier2006-12-201-14/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21698 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fix in denoise3d's chroma_tmp option descriptiongpoirier2006-12-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21697 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translation of menc-feat-xvid sect1 in encoding-guide.xmlvoroshil2006-12-201-167/+160
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21696 b3059339-0415-0410-9bf9-f77b7e298cf2
* mentioned file:// and smb:// as alternative stream outputs for mencodernicodvb2006-12-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21692 b3059339-0415-0410-9bf9-f77b7e298cf2
* added smb:// to the list of allowed input urlsnicodvb2006-12-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21691 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translation of menc-feat-enc-libavcodec sect1 in encoding-guide.xmlvoroshil2006-12-191-236/+241
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21688 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync tag bumped to 21686torinthiel2006-12-192-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21687 b3059339-0415-0410-9bf9-f77b7e298cf2
* [cosmetics] minor fixes after reformatting roundtorinthiel2006-12-192-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21686 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 21537torinthiel2006-12-193-100/+150
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21685 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 21624torinthiel2006-12-191-159/+197
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21684 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 21612torinthiel2006-12-193-173/+303
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21683 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21465: [cosmetics] Reindent XML sourcekraymer2006-12-191-725/+717
| | | | | | | (uses different style than master file) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21682 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21508: emphasis the fact that leaving black borders really hurts qualitykraymer2006-12-192-10/+12
| | | | | | | | r21656: document hqdn3d and dn3d's 4th parameter r21659: more sensible names for denoiser options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21681 b3059339-0415-0410-9bf9-f77b7e298cf2
* update the list of files I maintainnicodvb2006-12-181-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21680 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21425: Some fixes for previous commit, 10l for mekraymer2006-12-181-5/+5
| | | | | | | r21462: mention all other image formats git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21679 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21423: Consistent capitalization of table entrieskraymer2006-12-181-34/+45
| | | | | | | r21424: Reformat examples: [...] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21678 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove outdated html docs, Chinese translationkraymer2006-12-1811-6066/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21668 b3059339-0415-0410-9bf9-f77b7e298cf2
* svn move xml/zh to xml/zh_CNkraymer2006-12-186-1/+1
| | | | | | | | | * this is the appropriate, unique name * fixes docbook compile warnings * fixes docbook-generated text ("Warning", "Note", ..) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21665 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21651: add missing line breakvoroshil2006-12-171-9/+25
| | | | | | | | | r21654: add man page entry for new -dvd-speed option r21656: document hqdn3d and dn3d's 4th parameter r21659: more sensible names for denoiser options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21662 b3059339-0415-0410-9bf9-f77b7e298cf2
* Trnaslated section "CODEC SPECIFIC ENCODING OPTIONS (MENCODER ONLY)"voroshil2006-12-171-1456/+1578
| | | | | | | | | Now man page translaton is complete. However, translation contains many FIXME issues and needs additional checks. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21660 b3059339-0415-0410-9bf9-f77b7e298cf2
* more sensible names for denoiser optionsgpoirier2006-12-171-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21659 b3059339-0415-0410-9bf9-f77b7e298cf2
* typokraymer2006-12-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21658 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21654: add man page entry for new -dvd-speed optionkraymer2006-12-171-1/+17
| | | | | | | r21655: (*added) make messages for success/failure of setting dvd-speed more clear git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21657 b3059339-0415-0410-9bf9-f77b7e298cf2
* document hqdn3d and dn3d's 4th parametergpoirier2006-12-171-4/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21656 b3059339-0415-0410-9bf9-f77b7e298cf2
* add man page entry for new -dvd-speed optionkraymer2006-12-171-0/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21654 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21561: update vbuf_size and suggest 400 for HDTV videokraymer2006-12-171-10/+18
| | | | | | | | | | r21606: wording r21621: mpegts uses 3-letter language codes r21648: Make -embeddedfonts enabled by default with FontConfig >= 2.4.2. r21651: add missing line break git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21653 b3059339-0415-0410-9bf9-f77b7e298cf2
* add missing line breakkraymer2006-12-171-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21651 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21624: RedHat RPMs are long gone. Greysector repository is going away, and I'vevoroshil2006-12-172-7/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21650 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21621: mpegts uses 3-letter language codesvoroshil2006-12-171-6/+10
| | | | | | | r21648: Make -embeddedfonts enabled by default with FontConfig >= 2.4.2. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21649 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make -embeddedfonts enabled by default with FontConfig >= 2.4.2.eugeni2006-12-171-3/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21648 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partially revert r20940, we had some local modifications.torinthiel2006-12-173-0/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21644 b3059339-0415-0410-9bf9-f77b7e298cf2
* CVS -> SVNtorinthiel2006-12-171-1/+1
| | | | | | | ... and do it correctly git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21643 b3059339-0415-0410-9bf9-f77b7e298cf2
* - there's no <book lang=""> for ages, it's automatedtorinthiel2006-12-171-11/+6
| | | | | | | - another CVS -> SVN git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21642 b3059339-0415-0410-9bf9-f77b7e298cf2
* Initial Chinese translation, by Kun Niu, haoniukun gmail comtorinthiel2006-12-176-1/+933
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21641 b3059339-0415-0410-9bf9-f77b7e298cf2
* RedHat RPMs are long gone. Greysector repository is going away, and I'verathann2006-12-154-12/+10
| | | | | | | taken over the maintenance of MPlayer in Livna. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21624 b3059339-0415-0410-9bf9-f77b7e298cf2
* mpegts uses 3-letter language codesnicodvb2006-12-141-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21621 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21612: replace &quot; with ", better readabilityvoroshil2006-12-1412-58/+58
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21614 b3059339-0415-0410-9bf9-f77b7e298cf2
* transliteration -> translation for "dB" and "intra"voroshil2006-12-141-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21613 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace &quot; with ", better readabilitytorinthiel2006-12-1412-50/+50
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21612 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21599: vstrict=0 is required to create DVDs decodable by standalone dvd playersvoroshil2006-12-132-12/+19
| | | | | | | r21606: wording git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21610 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling fixvoroshil2006-12-131-11/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21609 b3059339-0415-0410-9bf9-f77b7e298cf2
* wordingdiego2006-12-121-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21606 b3059339-0415-0410-9bf9-f77b7e298cf2
* vstrict=0 is required to create DVDs decodable by standalone dvd playersgpoirier2006-12-121-6/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21599 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r21561gpoirier2006-12-111-8/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21593 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21506 and miscgpoirier2006-12-111-6/+45
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21592 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21486gpoirier2006-12-111-6/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21591 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21561: update vbuf_size and suggest 400 for HDTV videovoroshil2006-12-101-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21568 b3059339-0415-0410-9bf9-f77b7e298cf2
* update vbuf_size and suggest 400 for HDTV videonicodvb2006-12-091-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21561 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21558Gabrov2006-12-093-128/+227
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21559 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21537: General reformatting round:voroshil2006-12-0918-4406/+4890
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21541 b3059339-0415-0410-9bf9-f77b7e298cf2
* General reformatting round:torinthiel2006-12-0818-4463/+5111
| | | | | | | | | | | | - fix some " -> &quot; - reindent with more consistency - visual markup of <sect?> tags - break overly long lines - add missing <replaceable> tags in examples - cola truck standing by git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21537 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21531: Document geq filter.kraymer2006-12-071-1/+32
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21534 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21529: spellingvoroshil2006-12-071-6/+38
| | | | | | | | r21531: Document geq filter. one FIXME issue resolved git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21533 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typovoroshil2006-12-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21532 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document geq filter.diego2006-12-071-0/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21531 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21529: spellingkraymer2006-12-071-3/+3
| | | | | | | add missing part of sentence git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21530 b3059339-0415-0410-9bf9-f77b7e298cf2
* spellingdiego2006-12-071-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21529 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21503: updated documentation of -mpegopts :tele*kraymer2006-12-071-11/+9
| | | | | | | r21506: wording fix suggested by Diego git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21527 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 30.11.2006jheryan2006-12-071-236/+231
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21526 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translated section "GENERAL ENCODING OPTIONS"voroshil2006-12-061-118/+126
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21521 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21503: updated documentation of -mpegopts :tele*voroshil2006-12-051-8/+8
| | | | | | | r21506: wording fix suggested by Diego git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21512 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21508: emphasis the fact that leaving black borders really hurts qualityvoroshil2006-12-051-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21511 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translation of "VIDEO FILTERS" section.voroshil2006-12-051-935/+1042
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21510 b3059339-0415-0410-9bf9-f77b7e298cf2
* emphasis the fact that leaving black borders really hurts qualitygpoirier2006-12-051-1/+2
| | | | | | | (confirmed after I benchmarked both: with and without a thin black border) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21508 b3059339-0415-0410-9bf9-f77b7e298cf2
* wording fix suggested by Diegonicodvb2006-12-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21506 b3059339-0415-0410-9bf9-f77b7e298cf2
* updated documentation of -mpegopts :tele*nicodvb2006-12-041-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21503 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21372: Some punctuation cosmetics and better wordingkraymer2006-12-043-11/+11
| | | | | | | | | r21374: Fix URL r21376: URL fix r21395: Better wording for previous commit git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21494 b3059339-0415-0410-9bf9-f77b7e298cf2
* help_mp-de.h:kraymer2006-12-041-19/+61
| | | | | | | | | | | | | | | | | | | | | | | r21367: If a glyph is not found in the current font, switch to another one. r21476: Open embedded fonts directly from memory. [...] mplayer.1: r21357: Cycling through video tracks works with libavformat as well. r21398: improve description of lavf's i_certify_that_my_video_stream_does_not_use_b_frames r21399: fix suggested by Diego r21410: document new meaning of dia=-1 introduced by lavc r7192 r21413: mark lavc's uneven multi-hexagon search as slow, remove stray '.' r21430: documented -mpegopts :[va]buf_size r21441: Audio track switching works for AVI and libavformat as well. r21446: Remove long-deprecated -vop option. r21449: Merge dga/nodga suboption of vo_vesa, no short forms. r21452: document s3fb video out driver r21484: documented -mpegopts :tele_src and :tele_dest r21486: Improoving readability of pullup filter section r21487: document s3fb suboption, [...] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21493 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21484: documented -mpegopts :tele_src and :tele_destvoroshil2006-12-041-6/+31
| | | | | | | | r21486: Improoving readability of pullup filter section r21487: document s3fb suboption, note that it's a Linux-only driver (to the best of my knowledge) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21491 b3059339-0415-0410-9bf9-f77b7e298cf2
* slight clarificationdiego2006-12-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21488 b3059339-0415-0410-9bf9-f77b7e298cf2
* document s3fb suboption, note that it's a Linux-only driver (to the best of ↵gpoirier2006-12-041-1/+7
| | | | | | my knowledge) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21487 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improoving readability of pullup filter sectionvoroshil2006-12-041-4/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21486 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented -mpegopts :tele_src and :tele_destnicodvb2006-12-041-0/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21484 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21452gpoirier2006-12-031-14/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21479 b3059339-0415-0410-9bf9-f77b7e298cf2
* One FIXME (CC subtitles related) resolved.voroshil2006-12-031-7/+7
| | | | | | | Some typos fixed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21475 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21462: mention all other image formatsvoroshil2006-12-031-93/+126
| | | | | | | | r21465: [cosmetics] Reindent XML source r21466: [cosmetics] Consistent XML source formatting git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21472 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21466torinthiel2006-12-031-109/+141
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21467 b3059339-0415-0410-9bf9-f77b7e298cf2
* [cosmetics] Consistent XML source formattingtorinthiel2006-12-031-8/+43
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21466 b3059339-0415-0410-9bf9-f77b7e298cf2
* [cosmetics] Reindent XML sourcetorinthiel2006-12-031-102/+102
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21465 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21462torinthiel2006-12-031-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21463 b3059339-0415-0410-9bf9-f77b7e298cf2
* mention all other image formatstorinthiel2006-12-031-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21462 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix two overlooked typos in previous sync cause build errorvoroshil2006-12-031-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21458 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix translation error in previous syncvoroshil2006-12-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21457 b3059339-0415-0410-9bf9-f77b7e298cf2
* muxer FIXME resolvedvoroshil2006-12-031-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21456 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21423: Consistent capitalization of table entriesvoroshil2006-12-031-27/+43
| | | | | | | | r21424: Reformat examples: ... r21425: Some fixes for previous commit, 10l for me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21455 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed missing tag updatevoroshil2006-12-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21454 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21430: documented -mpegopts :[va]buf_sizevoroshil2006-12-031-13/+25
| | | | | | | | | | r21441: Audio track switching works for AVI and libavformat as well. r21446: Remove long-deprecated -vop option. r21449: Merge dga/nodga suboption of vo_vesa, no short forms. r21452: document s3fb video out driver git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21453 b3059339-0415-0410-9bf9-f77b7e298cf2
* document s3fb video out drivergpoirier2006-12-031-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21452 b3059339-0415-0410-9bf9-f77b7e298cf2
* Merge dga/nodga suboption of vo_vesa, no short forms.diego2006-12-021-5/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21449 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21446Gabrov2006-12-021-8/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21447 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove long-deprecated -vop option.diego2006-12-021-7/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21446 b3059339-0415-0410-9bf9-f77b7e298cf2
* Audio track switching works for AVI and libavformat as well.diego2006-12-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21441 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21438Gabrov2006-12-027-275/+136
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21439 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translated section "AUDIO FILTERS"voroshil2006-12-021-275/+286
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21432 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typovoroshil2006-12-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21431 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented -mpegopts :[va]buf_sizenicodvb2006-12-021-0/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21430 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21395torinthiel2006-12-011-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21427 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync r21425torinthiel2006-12-011-54/+125
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21426 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some fixes for previous commit, 10l for metorinthiel2006-12-011-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21425 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reformat examples:torinthiel2006-12-011-26/+41
| | | | | | | | | - break overly long lines - indent continuation lines - add missing <replaceable> tags git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21424 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistent capitalization of table entriestorinthiel2006-12-011-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21423 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21410: document new meaning of dia=1 introduced by lavc r7192voroshil2006-12-011-2/+2
| | | | | | | r21413: mark lavc's uneven multi-hexagon search as slow, remove stray '.' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21414 b3059339-0415-0410-9bf9-f77b7e298cf2
* mark lavc's uneven multi-hexagon search as slow, remove stray '.'gpoirier2006-12-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21413 b3059339-0415-0410-9bf9-f77b7e298cf2
* document new meaning of dia=-1 introduced by lavc r7192gpoirier2006-12-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21410 b3059339-0415-0410-9bf9-f77b7e298cf2
* move reserved_bytes out of packet_footer. this makes all packets uniform.ivo2006-11-301-2/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21405 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21398: improve description of lavf's ↵voroshil2006-11-301-1/+4
| | | | | | | | | i_certify_that_my_video_stream_does_not_use_b_frames r21399: fix suggested by Diego git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21402 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21372: Some punctuation cosmetics and better wordingvoroshil2006-11-304-11/+11
| | | | | | | | | | r21374: Fix URL, it has moved. r21376: URL fix r21394: Typo r21395: Better wording for previous commit git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21401 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix suggested by Diegogpoirier2006-11-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21399 b3059339-0415-0410-9bf9-f77b7e298cf2
* improve description of lavf's ↵gpoirier2006-11-301-0/+3
| | | | | | i_certify_that_my_video_stream_does_not_use_b_frames git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21398 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better wording for previous committorinthiel2006-11-291-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21395 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typotorinthiel2006-11-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21394 b3059339-0415-0410-9bf9-f77b7e298cf2
* URL fixdiego2006-11-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21376 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21374torinthiel2006-11-291-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21375 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix URL, it has moved.torinthiel2006-11-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21374 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21372torinthiel2006-11-291-233/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21373 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some punctuation cosmetics and better wordingtorinthiel2006-11-291-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21372 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make me maintainer of demux_nuv since I am the only onereimar2006-11-281-0/+1
| | | | | | | touching it since years git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21362 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21298: "D" interactive key also works with yadif nowvoroshil2006-11-281-3/+3
| | | | | | | r21357: Cycling through video tracks works with libavformat as well. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21359 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cycling through video tracks works with libavformat as well.diego2006-11-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21357 b3059339-0415-0410-9bf9-f77b7e298cf2
* help messages:kraymer2006-11-271-2/+13
| | | | | | | | | | | | | | | | r21306: fix compilation for win32 dll codec support for intel osx r21328: localization of parser-m*cmd.c messages r21332: insert line break for overly long line (second line indented) man page: r21221: improve description of x264's deadzone* options r21228: fix typos noticed by Diego r21254: nits and picks by The Wanderer :) r21255: typo in deadzone_inter r21298: "D" interactive key also works with yadif now git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21334 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21168torinthiel2006-11-271-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21307 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ 21298gpoirier2006-11-261-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21299 b3059339-0415-0410-9bf9-f77b7e298cf2
* "D" interactive key also works with yadif nowgpoirier2006-11-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21298 b3059339-0415-0410-9bf9-f77b7e298cf2
* rename all *_nom (nominator) to the correct *_num (numerator)ivo2006-11-261-10/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21294 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21255 (improved deadzone desc.)gpoirier2006-11-261-1/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21271 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21186: Remove "OSD only" tags; those options always exist.voroshil2006-11-261-9/+19
| | | | | | | | | | r21221: improve description of x264's deadzone* options r21228: fix typos noticed by Diego r21254: nits and picks by The Wanderer :) r21255: typo in deadzone_inter git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21261 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo in deadzone_interlorenm2006-11-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21255 b3059339-0415-0410-9bf9-f77b7e298cf2
* nits and picks by The Wanderer :)gpoirier2006-11-261-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21254 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typos noticed by Diegogpoirier2006-11-251-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21228 b3059339-0415-0410-9bf9-f77b7e298cf2
* improve description of x264's deadzone* optionsgpoirier2006-11-251-0/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21221 b3059339-0415-0410-9bf9-f77b7e298cf2
* a few more clarifications for codec_specific_data by Ralph Giles and memichael2006-11-251-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21211 b3059339-0415-0410-9bf9-f77b7e298cf2
* add two missing descriptions (index.syncpoints and info_packet.count)ivo2006-11-241-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21193 b3059339-0415-0410-9bf9-f77b7e298cf2
* specify the bitnumber for frame_flags, instead of a decimal bitmaskivo2006-11-241-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21192 b3059339-0415-0410-9bf9-f77b7e298cf2
* specify, where possible, the type of the tags in the tag description sectionivo2006-11-241-44/+44
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21191 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21161: MSGTR for libmpcodecs/vd.ckraymer2006-11-241-13/+13
| | | | | | | | r21162: MSGTRs for mencoder.c r21186: Remove "OSD only" tags; those options always exist. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21190 b3059339-0415-0410-9bf9-f77b7e298cf2
* codec_specific_data clarificationmichael2006-11-241-0/+7
| | | | | | | if anyone disagrees or has suggestions to improve it then shout git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21189 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r21186gpoirier2006-11-241-10/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21188 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix another typoivo2006-11-241-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21187 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove "OSD only" tags; those options always exist.uau2006-11-241-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21186 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix sync comment, it was left out in last commitkraymer2006-11-232-4/+7
| | | | | | | r21158: documented :format=pes[12] in -mpegopts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21184 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21078: add a link to Michael's de-interlacing filters, and replace the crappy kraymer2006-11-235-289/+45
| | | | | | | | | | | | | pp=fd video filter with yadif as it's soooo much better r21079: Add a new MPEG encoding example using lavf r21152: typo: Bitrate is printed in kb/s, not Mb/s on the status line. r21153: Miscellaneous updates for the introduction and the requirements section. r21154: Remove outdated and superfluous sound card section. r21155: Remove outdated and superfluous video cards section. r21168: x264 supports interlaced encoding for some time git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21183 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix some typosivo2006-11-231-26/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21181 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better translation of "demuxer" word.voroshil2006-11-221-30/+29
| | | | | | | | Fixed overlooked untranslated phrases. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21173 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21152: typo: Bitrate is printed in kb/s, not Mb/s on the status line.voroshil2006-11-224-220/+27
| | | | | | | | | | | r21153: Miscellaneous updates for the introduction and the requirements section. r21154: Remove outdated and superfluous sound card section. r21155: Remove outdated and superfluous video cards section. r21158: documented :format=pes[12] in -mpegopts r21168: x264 supports interlaced encoding for some time git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21171 b3059339-0415-0410-9bf9-f77b7e298cf2
* x264 supports interlaced encoding for some timegpoirier2006-11-221-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21168 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21154gpoirier2006-11-211-216/+29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21160 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r21152torinthiel2006-11-211-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21159 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented :format=pes[12] in -mpegoptsnicodvb2006-11-211-2/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21158 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove outdated and superfluous video cards section.diego2006-11-211-153/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21155 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove outdated and superfluous sound card section.diego2006-11-211-24/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21154 b3059339-0415-0410-9bf9-f77b7e298cf2
* Miscellaneous updates for the introduction and the requirements section.diego2006-11-211-46/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21153 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo: Bitrate is printed in kb/s, not Mb/s on the status line.diego2006-11-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21152 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21078: add a link to Michael's de-interlacing filters...voroshil2006-11-212-6/+18
| | | | | | | r21079: Add a new MPEG encoding example using lavf git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21150 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo / small fixeskraymer2006-11-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21118 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a new MPEG encoding example using lavfgpoirier2006-11-191-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21079 b3059339-0415-0410-9bf9-f77b7e298cf2
* add a link to Michael's de-interlacing filters, and replace the crappy gpoirier2006-11-191-4/+8
| | | | | | | pp=fd video filter with yadif as it's soooo much better git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21078 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r21026gpoirier2006-11-191-201/+157
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21072 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r21004gpoirier2006-11-191-38/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21069 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20933, patch by Jerome Ferrarigpoirier2006-11-191-30/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21068 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync tag updatevoroshil2006-11-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21067 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translated section "DECODING/FILTERING OPTIONS"voroshil2006-11-191-264/+282
| | | | | | | Small translations fixes in previous sections. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21066 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20876, patch by Jerome Ferrarigpoirier2006-11-191-19/+136
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21061 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r21058Gabrov2006-11-197-359/+375
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21059 b3059339-0415-0410-9bf9-f77b7e298cf2
* new slave command: radio_step_freqvoroshil2006-11-191-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21058 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update section "AUDIO FILTERS"; Some sync w/ r21026; kraymer2006-11-191-142/+570
| | | | | | | | Add translator list; Wording of "default:", etc. patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21044 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20876, patch by Jerome Ferrarigpoirier2006-11-181-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21041 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20876, patch by Jerome Ferrarigpoirier2006-11-181-240/+108
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21040 b3059339-0415-0410-9bf9-f77b7e298cf2
* help_mp-ru.h sync with r21001voroshil2006-11-181-200/+153
| | | | | | | mplayer.1 sync with r21026 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21037 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix wrong 60000/10001 fractionkraymer2006-11-186-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21034 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20969: document new key binding for switching video streams in MPEG-TSkraymer2006-11-181-54/+58
| | | | | | | | | | | r20993: [..] Remove the binding for 'b'. r21017: group together "quant_type" and quant_*_matrix since they are related r21019: group together xvid's rate control options r21020: group together B-frames options with I,P frames options r21026: TAB switches between programs git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21032 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21012: group together "quality" control optionskraymer2006-11-181-114/+114
| | | | | | | | r21013: Move xvid 'grayscale' option close to 'interlacing' r21015: group together "debug" and "psnr", note that "threads" option is featured on 1.2.x release git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21031 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20876: rename: XviD -> Xvid (man page part)kraymer2006-11-181-24/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21030 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21008: remove xvid3's mpeg_quant, replace it by xvid4's quant_typekraymer2006-11-181-52/+27
| | | | | | | | r21010: remove xvid3's divx5bvop and replace it by xvid4's closed_gop r21011: group together xvid's 'closed_gop' and 'packed' options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21029 b3059339-0415-0410-9bf9-f77b7e298cf2
* TAB switches between programsnicodvb2006-11-181-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21026 b3059339-0415-0410-9bf9-f77b7e298cf2
* group together B-frames options with I,P frames optionsgpoirier2006-11-181-21/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21020 b3059339-0415-0410-9bf9-f77b7e298cf2
* group together xvid's rate control optionsgpoirier2006-11-181-19/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21019 b3059339-0415-0410-9bf9-f77b7e298cf2
* group together "quant_type" and quant_*_matrix since they are relatedgpoirier2006-11-181-10/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21017 b3059339-0415-0410-9bf9-f77b7e298cf2
* group together "debug" and "psnr", note that "threads" option is featured on ↵gpoirier2006-11-181-7/+7
| | | | | | 1.2.x release git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21015 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move xvid 'grayscale' option close to 'interlacing'gpoirier2006-11-181-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21013 b3059339-0415-0410-9bf9-f77b7e298cf2
* group together "quality" control optionsgpoirier2006-11-181-94/+94
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21012 b3059339-0415-0410-9bf9-f77b7e298cf2
* group together xvid's 'closed_gop' and 'packed' optionsgpoirier2006-11-181-17/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21011 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove xvid3's divx5bvop and replace it by xvid4's closed_gopgpoirier2006-11-181-14/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21010 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21004: remove xvid3's quant_range, move xvid4 [min|max]_[i|p|b]quant ↵kraymer2006-11-181-36/+26
| | | | | | | | | options there instead r21005: document new "D" keybinding for deinterlacing [..] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21009 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove xvid3's mpeg_quant, replace it by xvid4's quant_typegpoirier2006-11-181-15/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21008 b3059339-0415-0410-9bf9-f77b7e298cf2
* r21001: Add *BSD BT848 radio supportkraymer2006-11-181-25/+8
| | | | | | | r21003: Xvid3 support is no more: Remove Xvid3-specific options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21007 b3059339-0415-0410-9bf9-f77b7e298cf2
* document new "D" keybinding for deinterlacing, introduced inkraymer2006-11-181-0/+2
| | | | | | | r20989: Add deinterlace property, patch by Carl Eugen Hoyos [..] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21005 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove xvid3's quant_range, move xvid4 [min|max]_[i|p|b]quant options there ↵gpoirier2006-11-181-32/+22
| | | | | | instead git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21004 b3059339-0415-0410-9bf9-f77b7e298cf2
* Xvid3 support is no more: Remove Xvid3-specific optionsgpoirier2006-11-181-22/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21003 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add *BSD BT848 radio supportvoroshil2006-11-181-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21001 b3059339-0415-0410-9bf9-f77b7e298cf2
* Since vobsub_lang and sub_select do the same, 'b' and 'j' were boundreimar2006-11-171-1/+1
| | | | | | | to the same thing. Remove the binding for 'b'. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20993 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20972: defined MSGTR_OSDVideovoroshil2006-11-171-1/+3
| | | | | | | r20969: document new key binding for switching video streams in MPEG-TS git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20986 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20969gpoirier2006-11-171-6/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20985 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify syncpoint placement recommanditionsmichael2006-11-171-3/+13
| | | | | | | (note i would also like to add a "there MUST be 1 syncpoint per second" rule) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20982 b3059339-0415-0410-9bf9-f77b7e298cf2
* seekingmichael2006-11-171-0/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20981 b3059339-0415-0410-9bf9-f77b7e298cf2
* dts & synchronous decodermichael2006-11-171-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20980 b3059339-0415-0410-9bf9-f77b7e298cf2
* document new key binding for switching video streams in MPEG-TSkraymer2006-11-161-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20969 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removing redundant entry, kraymer is doing all this work while maintaining ↵reynaldo2006-11-161-1/+0
| | | | | | translations git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20953 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20879torinthiel2006-11-161-47/+42
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20948 b3059339-0415-0410-9bf9-f77b7e298cf2
* missing small update about libsmb in previous commitvoroshil2006-11-151-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20944 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20933: libvorbis is not necessary for Vorbis playback, small wording ↵voroshil2006-11-151-4/+1
| | | | | | | | | improvement. ------------------------------------------------------------------------ git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20943 b3059339-0415-0410-9bf9-f77b7e298cf2
* Output UTF-8 instead of legacy encodings by default.diego2006-11-159-68/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20940 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20878: [cosmetics] (skipped)kraymer2006-11-152-14/+8
| | | | | | | | r20879: [small fixes] r20933: libvorbis is not necessary for Vorbis playback, small wording improvement. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20939 b3059339-0415-0410-9bf9-f77b7e298cf2
* revert last 2 commits on nut.txtods152006-11-151-16/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20938 b3059339-0415-0410-9bf9-f77b7e298cf2
* [cosmetics] Fix indentationtorinthiel2006-11-141-49/+49
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20935 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r20933torinthiel2006-11-141-6/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20934 b3059339-0415-0410-9bf9-f77b7e298cf2
* libvorbis is not necessary for Vorbis playback, small wording improvement.diego2006-11-141-4/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20933 b3059339-0415-0410-9bf9-f77b7e298cf2
* add character encoding infokraymer2006-11-141-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20932 b3059339-0415-0410-9bf9-f77b7e298cf2
* Introduce step_property command.reimar2006-11-141-0/+3
| | | | | | | Patch by Carl Eugen Hoyos [cehoyos <at> ag or at] with modifications by me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20931 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20900: Missing : in -vf expand ar examplevoroshil2006-11-141-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20929 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ 20637, patch by Francois franz A ephack P netgpoirier2006-11-141-86/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20928 b3059339-0415-0410-9bf9-f77b7e298cf2
* bump date of NUT spec for previous commitods152006-11-141-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20927 b3059339-0415-0410-9bf9-f77b7e298cf2
* allow info packets to appear in mid-stream, outside of main headers.ods152006-11-141-5/+15
| | | | | | | these SHOULD NOT appear in non-realtime-streams git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20926 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update libao2 description, delete completely outdated "audio plugins" partuau2006-11-141-60/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20907 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20900gpoirier2006-11-131-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20902 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20900: Missing : in -vf expand ar examplekraymer2006-11-131-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20901 b3059339-0415-0410-9bf9-f77b7e298cf2
* Missing : in -vf expand ar examplereimar2006-11-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20900 b3059339-0415-0410-9bf9-f77b7e298cf2
* rename: XviD -> Xvidgpoirier2006-11-134-25/+25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20899 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20876gpoirier2006-11-131-31/+32
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20898 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20872: Clarify -dumpaudio, it is not useful normallyvoroshil2006-11-131-33/+34
| | | | | | | r20876: rename: XviD -> Xvid git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20897 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update missing tags of previous commitvoroshil2006-11-136-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20896 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20876: rename: XviD -> Xvidvoroshil2006-11-136-143/+204
| | | | | | | | | | | r20866: Recommend gcc 3.4+. r20870: Restore PowerPC gcc note that I mistakenly removed. r20873: Misc issues noticed by Torinthiel. r20878: [cosmetics]... r20879: [small fixes]... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20895 b3059339-0415-0410-9bf9-f77b7e298cf2
* pts definition by mansmichael2006-11-131-4/+12
| | | | | | | dts definition and decode_delay definition by me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20886 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 20876torinthiel2006-11-132-10/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20885 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync with r20879torinthiel2006-11-131-140/+153
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20884 b3059339-0415-0410-9bf9-f77b7e298cf2
* [small fixes]torinthiel2006-11-131-10/+10
| | | | | | | | | | | - punctuation - improve markup of <screen> - fix odd '>|' as a shell redirection operator - sentence order - key names git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20879 b3059339-0415-0410-9bf9-f77b7e298cf2
* [cosmetics]torinthiel2006-11-131-104/+170
| | | | | | | | | | - fix end-tag not being in the same column as start-tag - some more indentation fixes - blank lines added/removed for consistency and visual markup - visual separation of sect* tags git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20878 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20866: Recommend gcc 3.4+.kraymer2006-11-137-44/+44
| | | | | | | | | | r20870: Restore PowerPC gcc note that I mistakenly removed. r20872: Clarify -dumpaudio, it is not useful normally r20873: Misc issues noticed by Torinthiel. r20876: rename: XviD -> Xvid git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20877 b3059339-0415-0410-9bf9-f77b7e298cf2
* rename: XviD -> Xvidkraymer2006-11-135-57/+57
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20876 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20873Gabrov2006-11-123-13/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20875 b3059339-0415-0410-9bf9-f77b7e298cf2
* Misc issues noticed by Torinthiel.diego2006-11-121-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20873 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify -dumpaudio, it is not useful normallyreimar2006-11-121-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20872 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r20870torinthiel2006-11-121-8/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20871 b3059339-0415-0410-9bf9-f77b7e298cf2
* Restore PowerPC gcc note that I mistakenly removed.diego2006-11-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20870 b3059339-0415-0410-9bf9-f77b7e298cf2
* Recommend gcc 3.4+.diego2006-11-121-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20866 b3059339-0415-0410-9bf9-f77b7e298cf2
* least restrictive dts ordering rule which ensures frames are in decoding ordermichael2006-11-121-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20862 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20859Gabrov2006-11-114-54/+58
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20860 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20834: The -gui command line option is back.kraymer2006-11-111-6/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20859 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1. convert single quotation mark to double one for better lookingkraymer2006-11-111-72/+73
| | | | | | | | 2. wording of "resolution", and some sync w/ en/mplayer.1 r20774 patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20858 b3059339-0415-0410-9bf9-f77b7e298cf2
* add encoding info to some man pageskraymer2006-11-115-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20854 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove very outdated and unmantained Swedish man pagekraymer2006-11-111-7327/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20853 b3059339-0415-0410-9bf9-f77b7e298cf2
* s/by/be/michael2006-11-111-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20852 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20834: The -gui command line option is back.voroshil2006-11-101-7/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20849 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translated section "VIDEO OUTPUT DRIVERS"voroshil2006-11-101-443/+484
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20848 b3059339-0415-0410-9bf9-f77b7e298cf2
* within array MUST for time_base_idmichael2006-11-101-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20846 b3059339-0415-0410-9bf9-f77b7e298cf2
* clearer time_base_id descriptionmichael2006-11-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20845 b3059339-0415-0410-9bf9-f77b7e298cf2
* time_base_countmichael2006-11-101-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20839 b3059339-0415-0410-9bf9-f77b7e298cf2
* stream_countmichael2006-11-101-0/+8
| | | | | | | a few more words for forward_ptr and file_id_string git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20838 b3059339-0415-0410-9bf9-f77b7e298cf2
* The -gui command line option is back.diego2006-11-101-5/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20834 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20774: Adding ability to check allowed frequency range.kraymer2006-11-101-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20833 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark file as UTF-8-encoded.diego2006-11-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20832 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20657: (does not apply)kraymer2006-11-094-37/+106
| | | | | | | | | | | | | | | | | r20658: (cosmetics) Unify and clarify blank lines usage r20682: (does not apply) r20683: mention :tsaf on every instance of -mpegopts format=dvd r20699: (does not apply) r20700: A bunch of missing <systemitem class="library"> tags r20701: Don't break a paragraph in a middle of a thought r20702: (does not apply) r20703: Better wording, especially if hyperlinks are not visible r20704: Better URL markup r20705: Unify ./configure script handling r20739: Remove remnants of long-gone libfame. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20815 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20648: Document ao_openal.kraymer2006-11-091-11/+37
| | | | | | | | | | | | | r20664: Clarify state of openal ao. r20684: reccomend the usage of :tsaf with :format=dvd in -mpegopts r20690: consistency/grammar r20707: spellfix and improvement suggested by Wanderer r20739: Remove remnants of long-gone libfame. r20773: - explain lavc lmin option more clearly - document lavc mblmin and mblmax options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20813 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20774gpoirier2006-11-081-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20805 b3059339-0415-0410-9bf9-f77b7e298cf2
* Updated for controversial changes and irc-only decisionsrtogni2006-11-081-0/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20799 b3059339-0415-0410-9bf9-f77b7e298cf2
* partial syncgpoirier2006-11-081-0/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20798 b3059339-0415-0410-9bf9-f77b7e298cf2
* dts, width/height explanationmichael2006-11-081-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20796 b3059339-0415-0410-9bf9-f77b7e298cf2
* size and stream_id docsmichael2006-11-081-0/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20794 b3059339-0415-0410-9bf9-f77b7e298cf2
* clearer frame_code explanationmichael2006-11-081-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20791 b3059339-0415-0410-9bf9-f77b7e298cf2
* simple 1 line definition of what a keyframe ismichael2006-11-081-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20788 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20774voroshil2006-11-081-3/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20784 b3059339-0415-0410-9bf9-f77b7e298cf2
* partial sync with latest manpage commitsgpoirier2006-11-081-2/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20778 b3059339-0415-0410-9bf9-f77b7e298cf2
* Generated XSL files should be in UTF-8.diego2006-11-081-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20777 b3059339-0415-0410-9bf9-f77b7e298cf2
* Adding ability to check allowed frequency range.voroshil2006-11-081-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20774 b3059339-0415-0410-9bf9-f77b7e298cf2
* - explain lavc lmin option more clearlycorey2006-11-081-2/+23
| | | | | | | - document lavc mblmin and mblmax options git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20773 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync with en/mplayer.1 r20739gpoirier2006-11-071-430/+556
| | | | | | | patch by S Jin jinsh2 A yahoo P com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20761 b3059339-0415-0410-9bf9-f77b7e298cf2
* Adding myself to man page translation and stram sections.voroshil2006-11-071-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20755 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20739: Remove remnants of long-gone libfame.voroshil2006-11-072-16/+7
| | | | | | | Fixed line in man page, started from a quote character. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20751 b3059339-0415-0410-9bf9-f77b7e298cf2
* Initial (partially, about 40%) translation.voroshil2006-11-071-0/+4905
| | | | | | | | | | | | | | | | | | | | Patch from Andrew Savchenko birkoph at list ru with small fixes. Translated sections: menc-feat-dvd-mpeg4 Sections to translate: menc-feat-telecine menc-feat-enc-libavcodec menc-feat-xvid menc-feat-x264 menc-feat-video-for-windows menc-feat-vcd-dvd git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20741 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove remnants of long-gone libfame.diego2006-11-062-12/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20739 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced to 3.11.2006jheryan2006-11-0619-26/+49
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20735 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typo (noticed by jerome.ferrari lappis com)kraymer2006-11-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20726 b3059339-0415-0410-9bf9-f77b7e298cf2
* Initial partial translation of man page voroshil2006-11-051-0/+10238
| | | | | | | | | | | | | | | | | (synced with last SVN). TODO: Translate sections: "VIDEO OUTPUT DRIVERS" "DECODING/FILTERING OPTIONS" "AUDIO FILTERS" "VIDEO FILTERS" "GENERAL ENCODING OPTIONS" "CODEC SPECIFIC ENCODING OPTIONS" Resolve all FIXME issues. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20723 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20699: Missing <option> tagvoroshil2006-11-051-25/+21
| | | | | | | | | | | | r20700: A bunch of missing <systemitem class="library"> tags r20701: Don't break a paragraph in a middle of a thought r20702: Remove ugly indentation in <screen> tags r20703: Better wording, especially if hyperlinks are not visible r20704: Better URL markup r20705: Unify ./configure script handling git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20721 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r20705torinthiel2006-11-051-341/+85
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20709 b3059339-0415-0410-9bf9-f77b7e298cf2
* spellfix and improvement suggested by Wanderernicodvb2006-11-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20707 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify ./configure script handlingtorinthiel2006-11-051-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20705 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better URL markuptorinthiel2006-11-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20704 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better wording, especially if hyperlinks are not visibletorinthiel2006-11-051-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20703 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove ugly indentation in <screen> tagstorinthiel2006-11-051-6/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20702 b3059339-0415-0410-9bf9-f77b7e298cf2
* Don't break a paragraph in a middle of a thoughttorinthiel2006-11-051-3/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20701 b3059339-0415-0410-9bf9-f77b7e298cf2
* A bunch of missing <systemitem class="library"> tagstorinthiel2006-11-051-7/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20700 b3059339-0415-0410-9bf9-f77b7e298cf2
* Missing <option> tagtorinthiel2006-11-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20699 b3059339-0415-0410-9bf9-f77b7e298cf2
* better wording for note about utf-8kraymer2006-11-051-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20698 b3059339-0415-0410-9bf9-f77b7e298cf2
* note for translators to use utf-8 encoding for help_mp files and xml docskraymer2006-11-051-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20697 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20693Gabrov2006-11-053-11/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20695 b3059339-0415-0410-9bf9-f77b7e298cf2
* markup fixkraymer2006-11-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20693 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync w/ en/mplayer.1 (6)kraymer2006-11-051-48/+832
| | | | | | | | | | | | Add section "VIDEO OUTPUT DRIVERS" Only mid part (still a big part) unfinished (3 FILTERs' sections and 2 MENCODER's sections) patch by Sheldon Jin (jinsh2 yahoo.com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20691 b3059339-0415-0410-9bf9-f77b7e298cf2
* consistency/grammardiego2006-11-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20690 b3059339-0415-0410-9bf9-f77b7e298cf2
* Split too long line into a number of small onevoroshil2006-11-051-1/+3
| | | | | | | as noticed by Thorinthiel. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20688 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20682: punctuation, full stop -> commavoroshil2006-11-051-3/+2
| | | | | | | fixed missing untranslated part git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20686 b3059339-0415-0410-9bf9-f77b7e298cf2
* (cosmetics) remove unneeded tabstorinthiel2006-11-051-41/+39
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20685 b3059339-0415-0410-9bf9-f77b7e298cf2
* reccomend the usage of :tsaf with :format=dvd in -mpegoptsnicodvb2006-11-051-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20684 b3059339-0415-0410-9bf9-f77b7e298cf2
* mention :tsaf on every instance of -mpegopts format=dvdnicodvb2006-11-051-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20683 b3059339-0415-0410-9bf9-f77b7e298cf2
* punctuation, full stop -> commatorinthiel2006-11-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20682 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20677Gabrov2006-11-0419-44/+77
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20678 b3059339-0415-0410-9bf9-f77b7e298cf2
* Corrigendum 1michael2006-11-041-2/+3
| | | | | | | | | | | change chapter_id from v to s to allow negative chapter_id as required by the spec text change was unanimously accepted (rich, oded, myself) this change should not break any existing muxers or demuxers, with the exception of assumtations about (non)overlapping chapters git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20674 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/xml/hu to UTF-8kraymer2006-11-0418-6507/+6507
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20667 b3059339-0415-0410-9bf9-f77b7e298cf2
* SHOULD not -> SHOULD NOTods152006-11-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20666 b3059339-0415-0410-9bf9-f77b7e298cf2
* intromichael2006-11-041-0/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20665 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify state of openal ao.reimar2006-11-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20664 b3059339-0415-0410-9bf9-f77b7e298cf2
* no real change needed for r20657voroshil2006-11-041-6/+10
| | | | | | | r20658: (cosmetics) Unify and clarify blank lines usage git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20661 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync with r20637torinthiel2006-11-041-7/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20660 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r20658torinthiel2006-11-041-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20659 b3059339-0415-0410-9bf9-f77b7e298cf2
* (cosmetics) Unify and clarify blank lines usagetorinthiel2006-11-041-5/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20658 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move "and" to end of list, improves grammartorinthiel2006-11-041-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20657 b3059339-0415-0410-9bf9-f77b7e298cf2
* attempt to fix the unbound future frame issue with keyframes on the muxer sidemichael2006-11-031-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20649 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document ao_openal.diego2006-11-031-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20648 b3059339-0415-0410-9bf9-f77b7e298cf2
* 2nd try for a keyframe definitionmichael2006-11-031-5/+9
| | | | | | | based on richs comment git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20647 b3059339-0415-0410-9bf9-f77b7e298cf2
* partial syncgpoirier2006-11-031-2/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20646 b3059339-0415-0410-9bf9-f77b7e298cf2
* add missing tag updatevoroshil2006-11-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20643 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20637:libmpdvdkit no longer exists.voroshil2006-11-031-5/+4
| | | | | | | no real change need for r20614 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20642 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20620: better description for -correct-ptskraymer2006-11-031-6/+11
| | | | | | | | | r20621: typo, roff markup r20633: libmpdvdkit2 --> libdvdcss r20639: fix typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20641 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20571: cvidix trickskraymer2006-11-033-9/+17
| | | | | | | | | r20572: (doesn't apply) r20614: another missing <application> r20637: libmpdvdkit no longer exists. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20640 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typokraymer2006-11-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20639 b3059339-0415-0410-9bf9-f77b7e298cf2
* keyframe definitionmichael2006-11-031-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20638 b3059339-0415-0410-9bf9-f77b7e298cf2
* libmpdvdkit no longer exists.diego2006-11-031-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20637 b3059339-0415-0410-9bf9-f77b7e298cf2
* I'm effectively maintaining libdvdcss and libdvdread.diego2006-11-031-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20636 b3059339-0415-0410-9bf9-f77b7e298cf2
* main header typomichael2006-11-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20635 b3059339-0415-0410-9bf9-f77b7e298cf2
* move file up so its found first, this probably improves readabilitymichael2006-11-031-47/+48
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20634 b3059339-0415-0410-9bf9-f77b7e298cf2
* libmpdvdkit2 --> libdvdcssdiego2006-11-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20633 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo, roff markupdiego2006-11-031-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20621 b3059339-0415-0410-9bf9-f77b7e298cf2
* better description for -correct-ptsuau2006-11-031-3/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20620 b3059339-0415-0410-9bf9-f77b7e298cf2
* - random fixestorinthiel2006-11-031-228/+233
| | | | | | | | | - cosmetics, remove undesired indentation - cosmetics, unify empty lines usage git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20617 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync w/ en/mplayer.1 (5).kraymer2006-11-031-75/+405
| | | | | | | | | | add section "ENVIRONMENT VARIABLES" update 2 sections: "FILES", "EXAMPLES ..." patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20616 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with r20614torinthiel2006-11-031-83/+142
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20615 b3059339-0415-0410-9bf9-f77b7e298cf2
* another missing <application>torinthiel2006-11-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20614 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace some chars with &#<somecode>; to allow make vim working properly ↵voroshil2006-11-021-2/+2
| | | | | | with unicode on koi8r locale. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20608 b3059339-0415-0410-9bf9-f77b7e298cf2
* some non russian/english characters (in people's names) copypasted from ↵voroshil2006-11-011-4/+2
| | | | | | english page. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20596 b3059339-0415-0410-9bf9-f77b7e298cf2
* The col utility eats non-ASCII characters without the -p option it seems.diego2006-11-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20585 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Reformat section.diego2006-11-011-23/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20584 b3059339-0415-0410-9bf9-f77b7e298cf2
* paragraph about groff and UTF-8diego2006-11-011-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20583 b3059339-0415-0410-9bf9-f77b7e298cf2
* encoding is now UTF-8diego2006-11-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20581 b3059339-0415-0410-9bf9-f77b7e298cf2
* trivial sync with r20551voroshil2006-11-0117-18/+29
| | | | | | | | | update missing sync tag in ports.xml (r20561) r20571: cvidix tricks, based on patch by Reimar no real change need for r20572 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20578 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync r20551 and some wording fixestorinthiel2006-10-311-12/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20575 b3059339-0415-0410-9bf9-f77b7e298cf2
* Bump sync tag, r20551torinthiel2006-10-3110-10/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20574 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert broken encoding translationtorinthiel2006-10-315-1657/+1657
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20573 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typo fix: missing "get".corey2006-10-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20572 b3059339-0415-0410-9bf9-f77b7e298cf2
* cvidix tricks, based on a patch by Reimardiego2006-10-311-0/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20571 b3059339-0415-0410-9bf9-f77b7e298cf2
* update 3 sections: "AUDIO OUTPUT OPTIONS", "AUDIOkraymer2006-10-311-600/+647
| | | | | | | | | OUTPUT DRIVERS", "VIDEO OUTPUT OPTIONS" and some wordings. patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20569 b3059339-0415-0410-9bf9-f77b7e298cf2
* --with-codecsdir --> --codecsdirdiego2006-10-317-16/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20562 b3059339-0415-0410-9bf9-f77b7e298cf2
* --with-codecsdir --> --codecsdirdiego2006-10-311-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20561 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20534: An example of using -vf ass.kraymer2006-10-311-1/+9
| | | | | | | r20535: wording/roff fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20559 b3059339-0415-0410-9bf9-f77b7e298cf2
* :Little typojheryan2006-10-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20557 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced to 26.10.2006 with respect to later utf-8 conversion.jheryan2006-10-3115-5272/+4916
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20556 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/xml/en and help_mp-en.h to UTF-8kraymer2006-10-3118-20/+20
| | | | | | | | (running help_mp-en.h through iconv didn't change the file so only the charset file needed to be changed) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20551 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/xml/cs and help/help_mp-cs.h* to UTF-8kraymer2006-10-3018-6223/+6223
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20545 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/xml/es and help/help_mp-es.h* to UTF-8kraymer2006-10-3017-2704/+2704
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20542 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/xml/pl and help/help_mp-pl* to UTF-8kraymer2006-10-3018-4222/+4222
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20540 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/fr and help/help_mp-fr.* to UTF-8kraymer2006-10-3018-4498/+4498
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20537 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc fixes by Sheldon Jin (jinsh2 yahoo com)diego2006-10-301-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20536 b3059339-0415-0410-9bf9-f77b7e298cf2
* wording/roff fixdiego2006-10-301-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20535 b3059339-0415-0410-9bf9-f77b7e298cf2
* An example of using -vf ass.eugeni2006-10-301-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20534 b3059339-0415-0410-9bf9-f77b7e298cf2
* better wording for MSGTR_MENU_Nonekraymer2006-10-302-5/+6
| | | | | | | | r20500: Add some <application> tags. (+ wording for a title) r20514: Warn about vo_gl scaled-osd broken with -ass git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20533 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/de from ISO-8859-1 to UTF-8kraymer2006-10-3018-3191/+3191
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20531 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert DOCS/ru from koi8r to UTF-8voroshil2006-10-3017-4611/+4611
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20530 b3059339-0415-0410-9bf9-f77b7e298cf2
* Warn about vo_gl scaled-osd broken with -assreimar2006-10-291-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20514 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some <application> tags.diego2006-10-291-3/+4
| | | | | | | patch by Andrew Savchenko, Bircoph list ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20500 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partially synced with en/mplayer.1 (3).kraymer2006-10-281-164/+359
| | | | | | | | Section "OSD/SUBTITLE OPTIONS" of zh/mplayer.1 updated. And some wordings. patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20497 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20477: Add missing parenthesiskraymer2006-10-281-4/+4
| | | | | | | typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20492 b3059339-0415-0410-9bf9-f77b7e298cf2
* indentation fixods152006-10-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20484 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing parenthesis. Patch by Andrew Savchenko, Bircoph <at> list <dot> ru.corey2006-10-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20477 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify pts related stuffmichael2006-10-281-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20476 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync with en/mplayer.1 (2)kraymer2006-10-271-303/+611
| | | | | | | | | zh/mplayer.1 is mainly updated with section of "DEMUXER/STREAM OPTIONS" patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20475 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a note about charset configuration to the Apache section.diego2006-10-271-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20474 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20468Gabrov2006-10-272-63/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20469 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20445Gabrov2006-10-271-2/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20468 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix translation inconsistencies, noticed by Torinthiel.voroshil2006-10-271-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20463 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix a multitude of roff errors and warnings.diego2006-10-261-12/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20461 b3059339-0415-0410-9bf9-f77b7e298cf2
* various orthography and wording fixeskraymer2006-10-261-31/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20460 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20426: -chapter works with dvd:// and dvdnav://kraymer2006-10-261-2/+9
| | | | | | | r20445: finally document -correct-pts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20459 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20412: Fix some inconsistencies pointed out by Torinthiel.kraymer2006-10-265-102/+24
| | | | | | | | | | r20417: s/DarwinPorts/MacPorts/ r20419: Yet some more CVS->CVS r20442: Remove confusing and probably wrong paragraph about libdvdcss. r20449: Typo fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20458 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improve translation of autogenerated labelstorinthiel2006-10-261-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20457 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clearly state that main.xml is generatedtorinthiel2006-10-261-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20456 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20341torinthiel2006-10-261-34/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20455 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20379: Remove doubled -dvd-device information.voroshil2006-10-264-102/+30
| | | | | | | | | | | | | | | r20392: misc fixes. r20399: Remove bio2jack from list of required software. r20401: <replacable> tag aren't needed in literal example. r20412: Fix some inconsistences pointed out by Torinthiel. r20417: s/DarwinPorts/MaxPorts/ r20419: Yet more CVS->SVN. ... r20442: Remove confusing and probably wrong paragraph about libdvdcss. r20449: Typo fix. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20453 b3059339-0415-0410-9bf9-f77b7e298cf2
* Transtale a skipped titletorinthiel2006-10-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20452 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20449torinthiel2006-10-251-224/+53
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20450 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typo fixtorinthiel2006-10-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20449 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20442torinthiel2006-10-251-66/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20447 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partially synced with r20426, patch by S Jin jinsh2 A yahoo P comgpoirier2006-10-251-193/+808
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20446 b3059339-0415-0410-9bf9-f77b7e298cf2
* finally document -correct-ptsods152006-10-251-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20445 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove confusing and probably wrong paragraph about libdvdcss.diego2006-10-251-58/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20442 b3059339-0415-0410-9bf9-f77b7e298cf2
* Microsync, just to keep documentation buildingtorinthiel2006-10-242-2/+305
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20439 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20412torinthiel2006-10-241-444/+109
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20438 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20401torinthiel2006-10-241-9/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20437 b3059339-0415-0410-9bf9-f77b7e298cf2
* -chapter works with dvd:// and dvdnav://nicodvb2006-10-231-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20426 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20423Gabrov2006-10-233-17/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20424 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20419gpoirier2006-10-231-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20420 b3059339-0415-0410-9bf9-f77b7e298cf2
* Yet some more CVS->CVSgpoirier2006-10-231-3/+2
| | | | | | | No need to mention that lavc wrt mplayer and OpenZaurus, it's obvious that where there is an MPlayer, there's a lavc git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20419 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20417gpoirier2006-10-231-22/+142
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20418 b3059339-0415-0410-9bf9-f77b7e298cf2
* s/DarwinPorts/MacPorts/gpoirier2006-10-231-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20417 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix some inconsistencies pointed out by Torinthiel.diego2006-10-231-6/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20412 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20399: Remove bio2jack from list of required software.kraymer2006-10-233-19/+7
| | | | | | | | r20401: <replaceable> tags aren't needed in literal example r20408: swap telecine and pulldown, typo noticed by RC git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20411 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20408gpoirier2006-10-231-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20409 b3059339-0415-0410-9bf9-f77b7e298cf2
* swap telecine and pulldown, typo noticed by RCgpoirier2006-10-231-2/+2
| | | | | | | | | Original thread: Date: Oct 23, 2006 1:48 AM Subject: Re: [MPlayer-advusers] terminology misunderstanding: pulldown vs telecine git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20408 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add sync tag, patch by Sheldon Jin, jinsh2 yahoo com.diego2006-10-231-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20407 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20405Gabrov2006-10-234-32/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20406 b3059339-0415-0410-9bf9-f77b7e298cf2
* man/hu/mplayer.1 synced with r20375Gabrov2006-10-231-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20405 b3059339-0415-0410-9bf9-f77b7e298cf2
* add missing dots as in r20328gpoirier2006-10-231-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20403 b3059339-0415-0410-9bf9-f77b7e298cf2
* it's "die Syntax" not "der Syntax"attila2006-10-232-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20402 b3059339-0415-0410-9bf9-f77b7e298cf2
* <replaceable> tags aren't needed in literal exampletorinthiel2006-10-231-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20401 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove bio2jack from list of required software.diego2006-10-221-10/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20399 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20392: misc fixeskraymer2006-10-221-12/+10
| | | | | | | fixed typo in help messages git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20396 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20379: Remove doubled -dvd-device information.kraymer2006-10-221-8/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20393 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc fixesdiego2006-10-221-9/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20392 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some more spelling fixestorinthiel2006-10-221-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20391 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20375gpoirier2006-10-221-5/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20389 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20379gpoirier2006-10-221-7/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20388 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20341gpoirier2006-10-221-16/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20387 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20361gpoirier2006-10-221-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20386 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20361gpoirier2006-10-221-282/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20385 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync r20379 + small fixestorinthiel2006-10-221-78/+44
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20382 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove doubled -dvd-device information.torinthiel2006-10-221-6/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20379 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20369: Warn about dangers of -use-filedir-conf optionkraymer2006-10-221-1/+4
| | | | | | | r20375: capitalization at beginning of sentence git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20376 b3059339-0415-0410-9bf9-f77b7e298cf2
* capitalization at beginning of sentencekraymer2006-10-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20375 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove mkdir warningskraymer2006-10-221-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20374 b3059339-0415-0410-9bf9-f77b7e298cf2
* Warn about dangers of -use-filedir-conf optionrtogni2006-10-221-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20369 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove outdated reference to "tvout-voodoo"; fixes compilationkraymer2006-10-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20367 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20352: fix XviD spelling. replace some old DivX5's.voroshil2006-10-221-5/+5
| | | | | | | r20361: remove some DivX version numbers git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20364 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20358: Make documentation links point to the online version.kraymer2006-10-223-21/+11
| | | | | | | | r20361: remove some DivX version numbers remove two leftover paragraphs from r20341 (Remove obsolete parts, some updates) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20362 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove some DivX version numberskraymer2006-10-222-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20361 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make documentation links point to the online version.diego2006-10-221-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20358 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20352Gabrov2006-10-222-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20356 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix "typo"kraymer2006-10-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20353 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix XviD spellingkraymer2006-10-224-11/+11
| | | | | | | replace some old DivX5's git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20352 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20350Gabrov2006-10-224-296/+80
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20351 b3059339-0415-0410-9bf9-f77b7e298cf2
* man/hu/mplayer.1 synced with 20336Gabrov2006-10-221-93/+55
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20349 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20341: Remove obsolete parts, some updates.kraymer2006-10-222-260/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20348 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20336gpoirier2006-10-211-73/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20345 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20318: capitalization fixes, add missing dots to sentences voroshil2006-10-212-287/+27
| | | | | | | | | | r20321: --enable-faad-external and --enable-libmaad fixes r20328: some random fixes (rewording, spelling,...) r20341: Remove obsolete parts, some updates. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20344 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove obsolete parts, some updates.diego2006-10-212-273/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20341 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed sync tagkraymer2006-10-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20338 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20317: Greatly simplify synopsis roff markup and add a bit of consistency.kraymer2006-10-211-75/+26
| | | | | | | | r20332: added a ". ..." line before gmplayer r20336: escape -mf git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20337 b3059339-0415-0410-9bf9-f77b7e298cf2
* escape -mfkraymer2006-10-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20336 b3059339-0415-0410-9bf9-f77b7e298cf2
* added a ". ..." line before gmplayerptt2006-10-211-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20332 b3059339-0415-0410-9bf9-f77b7e298cf2
* little fix, sorryptt2006-10-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20331 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20317ptt2006-10-211-73/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20330 b3059339-0415-0410-9bf9-f77b7e298cf2
* some random fixes (wording, spelling..)kraymer2006-10-212-20/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20328 b3059339-0415-0410-9bf9-f77b7e298cf2
* add German translation of codecs.xmlkraymer2006-10-211-0/+917
| | | | | | | | | | | parts of the video section translated by Christian Obst (christian_obst gmx de) audio codecs section translated by Carl Eugen (cehoyos ag.or at) rest by myself German translation complete :D git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20327 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20321gpoirier2006-10-201-4/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20322 b3059339-0415-0410-9bf9-f77b7e298cf2
* --enable-external-faad doesn't exist any morekraymer2006-10-201-3/+4
| | | | | | | | --enable-libmad is not necessary for libmad support (both noticed by Carl Eugen) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20321 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r20318gpoirier2006-10-201-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20319 b3059339-0415-0410-9bf9-f77b7e298cf2
* capitalization fixes, add missing dots to sentenceskraymer2006-10-201-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20318 b3059339-0415-0410-9bf9-f77b7e298cf2
* Greatly simplify synopsis roff markup and add a bit of consistency.diego2006-10-201-73/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20317 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ 20054gpoirier2006-10-191-119/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20314 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ 20310gpoirier2006-10-191-5/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20311 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20183: Recommend gcc 4.x on PowerPCvoroshil2006-10-192-3/+39
| | | | | | | r20304: What is the meaning of the numbers on the status line during the encoding process? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20307 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20288: vf uspp description: it now uses snow, not mpeg4kraymer2006-10-192-7/+45
| | | | | | | r20304: What is the meaning of the numbers on the status line during the encoding process? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20306 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20295, patch by Francois Badier %frabad A gmail P com%gpoirier2006-10-191-107/+132
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20305 b3059339-0415-0410-9bf9-f77b7e298cf2
* What is the meaning of the numbers on the status line during the encoding ↵gpoirier2006-10-191-0/+37
| | | | | | | | | process? Taken after Nico's explanation on MEncoder-users ML git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20304 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r19738gpoirier2006-10-181-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20295 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20288ptt2006-10-181-4/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20294 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20288gpoirier2006-10-181-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20293 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20083gpoirier2006-10-181-37/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20292 b3059339-0415-0410-9bf9-f77b7e298cf2
* vf uspp description: it now uses snow, not mpeg4lorenm2006-10-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20288 b3059339-0415-0410-9bf9-f77b7e298cf2
* rewording of config file usagekraymer2006-10-172-6/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20283 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20257: Disable loading of file-specific configuration file from the samekraymer2006-10-172-20/+28
| | | | | | | | | | | | | directory as the played file. Add a command-line switch to enable it. r20260: Update x264 option names that changed with r20060 r20264: small grammar fix r20265: Use American spelling of "gray" instead for British's "grey" for XviD option r20277: Update x264 option names that changed with r20060 r20279: mention new -use-filedir-conf option in general config description r20280: remove me=3 leftover (x264) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20282 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/20280gpoirier2006-10-171-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20281 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove me=3 leftover (x264)kraymer2006-10-171-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20280 b3059339-0415-0410-9bf9-f77b7e298cf2
* mention new -use-filedir-conf option in general config descriptionkraymer2006-10-171-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20279 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with 20277gpoirier2006-10-171-6/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20278 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update x264 option names that changed with r20060lorenm2006-10-161-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20277 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync up to r20265 + some li'l fixptt2006-10-161-17/+25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20273 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r19715gpoirier2006-10-161-12/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20271 b3059339-0415-0410-9bf9-f77b7e298cf2
* Woops, forgot to bump sync taggpoirier2006-10-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20270 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync w/ 20260gpoirier2006-10-161-20/+184
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20269 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use American spelling of "gray" instead for British's "grey" for XviD ↵gpoirier2006-10-162-4/+4
| | | | | | option, while keeping backward compatibility git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20265 b3059339-0415-0410-9bf9-f77b7e298cf2
* small grammar fixdiego2006-10-161-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20264 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20257gpoirier2006-10-161-2/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20263 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20237gpoirier2006-10-161-22/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20262 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update x264 option names that changed with r20060gpoirier2006-10-161-13/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20260 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20132gpoirier2006-10-161-87/+101
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20259 b3059339-0415-0410-9bf9-f77b7e298cf2
* Disable loading of file-specific configuration file from the same rtogni2006-10-151-0/+5
| | | | | | | | directory as the played file. Add a command-line switch to enable it. Patch by reimar, manpage patch by me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20257 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20254: bump date, small consistency fixkraymer2006-10-151-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20255 b3059339-0415-0410-9bf9-f77b7e298cf2
* bump date, small consistency fixdiego2006-10-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20254 b3059339-0415-0410-9bf9-f77b7e298cf2
* escape - (bobdeint)kraymer2006-10-152-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20253 b3059339-0415-0410-9bf9-f77b7e298cf2
* Implement bob (pseudo?) deinterlacing for xvmc.reimar2006-10-152-0/+8
| | | | | | | | Patch from Tomas Janousek (tomi at nomi cz) with modifications by Carl Eugen Hoyos (cehoyos at ag or at) and me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20250 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20237: Escape some more - signs.kraymer2006-10-151-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20249 b3059339-0415-0410-9bf9-f77b7e298cf2
* man/hu/mplayer.1 synced with r20237Gabrov2006-10-151-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20248 b3059339-0415-0410-9bf9-f77b7e298cf2
* convert chinese man page to UTF-8kraymer2006-10-151-1731/+1731
| | | | | | | | add svn:mime-type mentioning UTF-8 charset patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20247 b3059339-0415-0410-9bf9-f77b7e298cf2
* syn with r20043, Patch by Emmanuel Turlay %bluesmanu AH gmail P com%gpoirier2006-10-151-28/+63
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20244 b3059339-0415-0410-9bf9-f77b7e298cf2
* Actually convert sync tag to subversion style (and found out that this file ↵gpoirier2006-10-151-5/+5
| | | | | | is WAY outdated) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20242 b3059339-0415-0410-9bf9-f77b7e298cf2
* Bump sync tag, remove useless FIXMEgpoirier2006-10-151-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20240 b3059339-0415-0410-9bf9-f77b7e298cf2
* missing console messages are (also) replaced by English versionskraymer2006-10-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20239 b3059339-0415-0410-9bf9-f77b7e298cf2
* update mailman linkskraymer2006-10-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20238 b3059339-0415-0410-9bf9-f77b7e298cf2
* Escape some more - signs.diego2006-10-151-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20237 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sebastian now coordinates translations, some cosmetics.diego2006-10-151-4/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20234 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: indentationkraymer2006-10-154-1561/+1815
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20231 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20176Gabrov2006-10-151-20/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20226 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove removed/renamed files.diego2006-10-152-715/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20225 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add standard svn:eol-style and svn:keywords properties, remove svn:executable.diego2006-10-151-0/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20224 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20183Gabrov2006-10-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20223 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20194Gabrov2006-10-151-25/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20222 b3059339-0415-0410-9bf9-f77b7e298cf2
* Deleting formats.xml and users-vs-dev.xml.Gabrov2006-10-152-719/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20221 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20083Gabrov2006-10-151-11/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20220 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync mail-lists.xml removal.diego2006-10-143-156/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20212 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync: radio w/r20051, history.xml w/r14025, usage.xml w/r20041, install.xml ↵gpoirier2006-10-146-461/+360
| | | | | | | | | w/r20183, documentation.xml r20085 patches by Jerome Ferrari and Pierre Roudier git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20211 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20189: Some more consistency for the -pvr options, typo.kraymer2006-10-141-21/+21
| | | | | | | r20194: some little consistency fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20206 b3059339-0415-0410-9bf9-f77b7e298cf2
* some minor fixes & sync to r20194ptt2006-10-121-153/+54
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20195 b3059339-0415-0410-9bf9-f77b7e298cf2
* some little consistency fixesptt2006-10-121-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20194 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20172: Update paragraph about libdvdcss and libdvdread.voroshil2006-10-121-17/+4
| | | | | | | | | r20173: Merge two libdvdcss/libdvdread paragraphs. r20176: small consistenct/format fix. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20190 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some more consistency for the -pvr options, typo.diego2006-10-121-11/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20189 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20183: Recommend gcc 4.x on PowerPC.kraymer2006-10-121-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20186 b3059339-0415-0410-9bf9-f77b7e298cf2
* Recommend gcc 4.x on PowerPC.diego2006-10-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20183 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20132: little typo fixeskraymer2006-10-121-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20178 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20176: small consistency/format fixkraymer2006-10-121-20/+13
| | | | | | | | | | r20173: Merge the two libdvdcss/libdvdread paragraphs. r20172: Update paragraph about libdvdcss and libdvdread. r19751: Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it. r19739: readvcd link fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20177 b3059339-0415-0410-9bf9-f77b7e298cf2
* small consistency/format fixkraymer2006-10-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20176 b3059339-0415-0410-9bf9-f77b7e298cf2
* initial import of cd-dvd.xml (german translation)kraymer2006-10-121-0/+444
| | | | | | | | based on a prliminary patch by Christian Korff (mail christiankorff de) with lots of fixes and overall completion by me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20175 b3059339-0415-0410-9bf9-f77b7e298cf2
* Merge the two libdvdcss/libdvdread paragraphs.diego2006-10-121-7/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20173 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update paragraph about libdvdcss and libdvdread.diego2006-10-121-9/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20172 b3059339-0415-0410-9bf9-f77b7e298cf2
* little typo fixesptt2006-10-091-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20132 b3059339-0415-0410-9bf9-f77b7e298cf2
* done! sync'ed with r20061, hoping not to have written 'strafalcioni'ptt2006-10-091-83/+232
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20131 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'ed with r19361ptt2006-10-091-28/+154
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20130 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20061Gabrov2006-10-081-70/+92
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20123 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20119Gabrov2006-10-088-111/+47
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20120 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cosmetics: remove lone (evil ;-) ) tabreimar2006-10-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20115 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20083: Unify labels of two solutions to similar problems.kraymer2006-10-071-12/+19
| | | | | | | | | r20082: Missing space before '(' r20081: Remove unnecessary </itemizedlist><itemizedlist>, .. r20080: (cosmetics) add some empty lines to improve readability git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20099 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: reformatting, aligningkraymer2006-10-072-255/+309
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20098 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20085: fix FIXME: move history to appendixkraymer2006-10-072-6/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20097 b3059339-0415-0410-9bf9-f77b7e298cf2
* - missing space before '('torinthiel2006-10-061-3/+2
| | | | | | | | - spelling fix - removal of stray comment git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20089 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20085torinthiel2006-10-062-6/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20088 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20080: (cosmetics) add some empty lines to improve readability.voroshil2006-10-063-14/+23
| | | | | | | | | | r20081: Remove unnecessery </itemizedlist><itemizedlist> [...] r20082: Missing space before '(' r20083: Unify labels on two solutions [...] r20085: fix FIXME: move history to appendix. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20087 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix FIXME: move history to appendixkraymer2006-10-052-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20085 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20083torinthiel2006-10-051-9/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20084 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify labels of two solutions to similar problems.torinthiel2006-10-051-2/+2
| | | | | | | | Same problem, same solution, one was not labeled, one was labeled 'Workaround', where both are ideal solutions. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20083 b3059339-0415-0410-9bf9-f77b7e298cf2
* Missing space before '('torinthiel2006-10-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20082 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unnecessary </itemizedlist><itemizedlist>,torinthiel2006-10-051-6/+0
| | | | | | | as it makes no sense and only confuses. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20081 b3059339-0415-0410-9bf9-f77b7e298cf2
* (cosmetics) add some empty lines to improve readabilitytorinthiel2006-10-051-0/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20080 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync 20074torinthiel2006-10-051-32/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20079 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove stray $ from sync tag.diego2006-10-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20072 b3059339-0415-0410-9bf9-f77b7e298cf2
* Convert sync tags to Svn revision numbers (except encoding-guide.xml for now)gpoirier2006-10-0516-17/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20070 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 2.10.2006jheryan2006-10-051-62/+204
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20069 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 2.10.2006jheryan2006-10-057-541/+342
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20068 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20061: document new x264 options through r579. (ssim, interlaced, ↵kraymer2006-10-051-74/+91
| | | | | | | | | | | deadzone_intra/inter) r20060: Remove the x264 option parser, and pass the options on to libx264 as a string instead. (..) r20053: Mark ao_sdl as SDL-only. r20052: Add SDL-specific keys. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20066 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix build failuregpoirier2006-10-052-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20065 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r20051torinthiel2006-10-051-10/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20064 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20054: Remove outdated/duplicate parts from the SDL section.voroshil2006-10-051-59/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20063 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19592: grammar/wording/markup fixes (was missed, due to wrong sync tag in ↵voroshil2006-10-051-22/+26
| | | | | | | | | | r19637 commit) r20051: some reformatting Additionally some typos fixed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20062 b3059339-0415-0410-9bf9-f77b7e298cf2
* document new x264 options through r579. (ssim, interlaced, deadzone_intra/inter)lorenm2006-10-051-2/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20061 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove the x264 option parser, and pass the options on to libx264 as a ↵lorenm2006-10-051-63/+55
| | | | | | | | | string instead. This provides automatic support for all current and future x264 options. A few options had to be reorganized: partitions, deblockalpha/beta, me, direct_pred. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20060 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20054: Remove outdated/duplicate parts from the SDL section.kraymer2006-10-041-61/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20056 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove outdated/duplicate parts from the SDL section.diego2006-10-041-58/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20054 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark ao_sdl as SDL-only.diego2006-10-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20053 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add SDL-specific keys.diego2006-10-041-0/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20052 b3059339-0415-0410-9bf9-f77b7e298cf2
* some reformattingdiego2006-10-041-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20051 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20049Gabrov2006-10-041-48/+50
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20050 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync to r20024, more to follow (hopefully soon)torinthiel2006-10-048-395/+138
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20049 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20041: Add IDs to some examples/tables.kraymer2006-10-044-17/+17
| | | | | | | r20043: Fix hz vs Hz typo. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20048 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix russian docs build error, caused by my r20046 commitvoroshil2006-10-041-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20047 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20041: Add IDs to some examples/tables.voroshil2006-10-043-17/+15
| | | | | | | | r20043: (Fix hz with Hz typo) no real change was needed Also fixed some small typos and translation errors git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20046 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix hz vs Hz typo.diego2006-10-042-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20043 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused files.diego2006-10-042-270/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20042 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add IDs to some examples/tables.diego2006-10-043-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20041 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sync tags consistent.diego2006-10-0421-21/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20035 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove stray $ from sync tags.diego2006-10-042-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20034 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove outdate, obsolete and inflammatory rants section made in r19973 of ↵gpoirier2006-10-042-224/+0
| | | | | | English doc git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20033 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a note about checking XML documentation build.diego2006-10-041-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20031 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20028: faacopts :object is in the range 1..4, not 0..3kraymer2006-10-041-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20030 b3059339-0415-0410-9bf9-f77b7e298cf2
* Comment out sections that break the build.diego2006-10-041-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20029 b3059339-0415-0410-9bf9-f77b7e298cf2
* faacopts :object is in the range 1..4, not 0..3nicodvb2006-10-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20028 b3059339-0415-0410-9bf9-f77b7e298cf2
* Recent updates, to r 20024torinthiel2006-10-041-6/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20027 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove trailing periods in listing, insert dashes for "MPEG n"skraymer2006-10-032-13/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20020 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20008: correct parameter value case for -pvr vmode optionkraymer2006-10-031-22/+22
| | | | | | | r20000: updated en and fr man pages with changes introduced by new pvr layer git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20019 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed typos and some translation errors.voroshil2006-10-011-110/+83
| | | | | | | | Better translation of some technical terms. Patch from Andrew Savchenko bircoph list ru. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20010 b3059339-0415-0410-9bf9-f77b7e298cf2
* correct parameter value case for -pvr vmode optionben2006-09-292-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20008 b3059339-0415-0410-9bf9-f77b7e298cf2
* updated en and fr man pages with changes introduced by new pvr layerben2006-09-272-48/+49
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20000 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync section removal.diego2006-09-276-451/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19997 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixes by jerome ferrarigpoirier2006-09-271-97/+111
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19996 b3059339-0415-0410-9bf9-f77b7e298cf2
* Lots of fixes by Jerome Ferrarigpoirier2006-09-271-208/+213
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19995 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some fixes by Jerome Ferrarigpoirier2006-09-271-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19994 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19974: Update gcc section. Some rewording.voroshil2006-09-271-13/+9
| | | | | | | r19975: Also mention sysctl for adjusting RTC settings. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19991 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19973: Remove outdate, obsolete and inflammatory rants section.voroshil2006-09-272-251/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19990 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19975: Also mention sysctl for adjusting RTC settings.kraymer2006-09-271-19/+14
| | | | | | | r19974: Update gcc section, some rewording. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19989 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: reformatting, aligningkraymer2006-09-277-7634/+7916
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19988 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19973: Remove outdate, obsolete and inflammatory rants sectionkraymer2006-09-272-259/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19987 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19979: after a long time, finally i could add -endpos option to mplayer..kraymer2006-09-271-21/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19986 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync up to rev.19134ptt2006-09-251-28/+210
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19981 b3059339-0415-0410-9bf9-f77b7e298cf2
* nit: Subversion revision numbers are referenced as r12345.diego2006-09-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19980 b3059339-0415-0410-9bf9-f77b7e298cf2
* after a long time, finally i could add -endpos option to mplayer executable.ptt2006-09-251-20/+24
| | | | | | | | as oded told me on 1006 02 24, i applied it, blame me if some problem occurs, i hope not, since i tried it for a while.... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19979 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'd up to rev.18570ptt2006-09-251-5/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19978 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'd up to (yet) CVS rev.1.1289 thanks to translation by daniele forghieriptt2006-09-251-29/+131
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19977 b3059339-0415-0410-9bf9-f77b7e298cf2
* Also mention sysctl for adjusting RTC settings.diego2006-09-241-1/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19975 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update gcc section, some rewording.diego2006-09-241-15/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19974 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove outdate, obsolete and inflammatory rants section.diego2006-09-242-227/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19973 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced to 14.9.2006jheryan2006-09-228-63/+672
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19935 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19927: Fix typos noticed by Paul TT.kraymer2006-09-221-3/+3
| | | | | | | | r19895: When the hardware sample format is AC3, do not force using an hardcoded device name. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19934 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove some unbreakable lines roff errors.gpoirier2006-09-221-8/+8
| | | | | | | | The remaining ones are a 1:1 copy of the English version, but somehow roff doesn't complain about them in that version Of well... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19933 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync up to (yet) CVS rev. 1.1260ptt2006-09-221-29/+121
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19931 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r19927gpoirier2006-09-221-8/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19928 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix typos noticed by Paul TT.diego2006-09-221-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19927 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmeticsdiego2006-09-221-52/+53
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19926 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed mention of dvdnav_eventnicodvb2006-09-191-3/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19913 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with r19881gpoirier2006-09-191-18/+61
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19906 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow shared libavcodec, but explain the implications.rathann2006-09-191-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19905 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add (if applicable) footnote to binary codecs in the feature list.rathann2006-09-181-4/+12
| | | | | | | Mention overriding default vo/ao. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19904 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r19895Gabrov2006-09-181-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19896 b3059339-0415-0410-9bf9-f77b7e298cf2
* When the hardware sample format is AC3, do not force using an hardcodedcladisch2006-09-181-1/+1
| | | | | | | | | | device name. The setting of the non-audio bit is now done by changing the default value of the AES0 parameter in the ALSA configuration structures. This works with user-specified devices, too. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19895 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix "groff comment issue" (' at beginning of line)kraymer2006-09-181-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19887 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19881: Shorten scale filter parameter names to avoid excessive line length.kraymer2006-09-181-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19886 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add hint about how to check man pages for markup errors.diego2006-09-181-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19885 b3059339-0415-0410-9bf9-f77b7e298cf2
* roff markup fixesdiego2006-09-183-12/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19882 b3059339-0415-0410-9bf9-f77b7e298cf2
* Shorten scale filter parameter names to avoid excessive line length.diego2006-09-181-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19881 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r19879Gabrov2006-09-176-374/+201
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19880 b3059339-0415-0410-9bf9-f77b7e298cf2
* better description of set_mouse_pos.nicodvb2006-09-171-1/+2
| | | | | | | | People seem to expect that mplayer suddenly begins to move the user's mouse like a ghost git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19877 b3059339-0415-0410-9bf9-f77b7e298cf2
* more appropriate translation for INTERACTIVE CONTROLkraymer2006-09-171-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19872 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19865: Wording improvements, document only one half of -mouse-movements ↵kraymer2006-09-171-4/+10
| | | | | | | | | flag option. r19859: documented -[no]mouse-movements git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19871 b3059339-0415-0410-9bf9-f77b7e298cf2
* translation by Vladimir Voroshilov, voroshil gmail comvoroshil2006-09-171-0/+1156
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19870 b3059339-0415-0410-9bf9-f77b7e298cf2
* Wording improvements, document only one half of -mouse-movements flag option.diego2006-09-161-9/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19865 b3059339-0415-0410-9bf9-f77b7e298cf2
* minor wording/spelling changesdiego2006-09-161-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19864 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented set_mouse_posnicodvb2006-09-161-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19861 b3059339-0415-0410-9bf9-f77b7e298cf2
* documented -[no]mouse-movementsnicodvb2006-09-161-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19859 b3059339-0415-0410-9bf9-f77b7e298cf2
* translation by Vladimir Voroshilov, voroshil gmail comvoroshil2006-09-161-0/+2546
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19851 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19839: Add repeated screenshot mode to vf_screenshot.kraymer2006-09-151-2/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19840 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add repeated screenshot mode to vf_screenshot.eugeni2006-09-152-3/+8
| | | | | | | It is triggered by "screenshot 1". git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19839 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19829: Improve TrueType font installation sectionvoroshil2006-09-144-260/+172
| | | | | | | | | | | r19828: Move subtitles and OSD section from the installation to the usage chapter r19827: Slightly restructure font installation section r19825: Truetype fonts now preferred over bitmap fonts, rewrite the font installation r19823: Remove mpsub section, the format is documented in DOCS/tech r19820: Marillat packages binary codecs, not bitmap fonts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19837 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19832: remove leftover parenthesiskraymer2006-09-134-142/+150
| | | | | | | | r19829: Improve TrueType font installation section. r19828: Move subtitles and OSD section from the installation to the usage chapter. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19833 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove leftover parenthesiskraymer2006-09-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19832 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19825: TrueType fonts now preferred over bitmap fonts, rewrite the font ↵kraymer2006-09-133-99/+53
| | | | | | | | | | | installation. r19827: Slightly restructure font installation section. + small fix in video.xml git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19830 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improve TrueType font installation section.diego2006-09-131-19/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19829 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move subtitles and OSD section from the installation to the usage chapter.diego2006-09-134-125/+131
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19828 b3059339-0415-0410-9bf9-f77b7e298cf2
* Slightly restructure font installation section.diego2006-09-132-3/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19827 b3059339-0415-0410-9bf9-f77b7e298cf2
* TrueType fonts now preferred over bitmap fonts, rewrite the font installation.diego2006-09-131-88/+39
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19825 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19823: Remove mpsub section, the format is documented in DOCS/tech.kraymer2006-09-131-47/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19824 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove mpsub section, the format is documented in DOCS/tech.diego2006-09-131-46/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19823 b3059339-0415-0410-9bf9-f77b7e298cf2
* various fixes, rewordingkraymer2006-09-132-90/+90
| | | | | | | based on suggestions by Kurt Lettmaier (k.lettmaier onlinehome de) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19822 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19820: Marillat packages binary codecs, not bitmap fonts.kraymer2006-09-131-3/+4
| | | | | | | (+ rewording) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19821 b3059339-0415-0410-9bf9-f77b7e298cf2
* Marillat packages binary codecs, not bitmap fonts.diego2006-09-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19820 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19809: link fix: The codecs page was merged into the download pagevoroshil2006-09-123-106/+5
| | | | | | | r19810: Remove bogus and outdated codecs installation section git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19813 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19810: Remove bogus and outdated codecs installation section.kraymer2006-09-121-110/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19812 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19809: link fix: The codecs page was merged into the download page.kraymer2006-09-123-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19811 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove bogus and outdated codecs installation section.diego2006-09-121-104/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19810 b3059339-0415-0410-9bf9-f77b7e298cf2
* link fix: The codecs page was merged into the download page.diego2006-09-123-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19809 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19801: Mailing list page URL changed.kraymer2006-09-122-24/+29
| | | | | | | | | | | | | r19794: separate independant clauses with a semicolon, as suggested by The Wanderer r19793: Fixes suggested by The Wanderer r19779: RTC is no longer the default timing method. r19767: Remove outdated hint about patching kernel sources. r19760: remove trailing slash from link r19752: Fixes suggested by Diego r19751: Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19806 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19799: ability to pass channel name (not only number) to radio_set_channelkraymer2006-09-121-14/+46
| | | | | | | | | | | | | r19788: small wording/spelling fixes r19785: keypad 7 returns to nearest dvdnav menu r19778: mention dvdnav keys bindings r19777: mention that 'h' and 'k' work with dvb input, too r19763: -nortc is now the default, document -rtc instead. Change the description of -rtc and -softsleep. r19751: Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19805 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix missing link change from previous commitvoroshil2006-09-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19804 b3059339-0415-0410-9bf9-f77b7e298cf2
* No real change for r19801: already have correct urlvoroshil2006-09-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19803 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mailing list page URL changed.diego2006-09-111-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19801 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19793: Fixes suggested by the Wanderervoroshil2006-09-111-3/+4
| | | | | | | r19794: semicolon... no real changes in translation is needed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19797 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clarify binary codecs section.diego2006-09-111-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19796 b3059339-0415-0410-9bf9-f77b7e298cf2
* Many translation and typo fixes.voroshil2006-09-111-97/+73
| | | | | | | patch by Andrew Savchenko bircoph list ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19795 b3059339-0415-0410-9bf9-f77b7e298cf2
* separate independant clauses with a semicolon, as suggested by The Wanderergpoirier2006-09-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19794 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixes suggested by The Wanderergpoirier2006-09-101-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19793 b3059339-0415-0410-9bf9-f77b7e298cf2
* r19779: RTC is no longer the default timing methodvoroshil2006-09-102-7/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19792 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r19790Gabrov2006-09-103-36/+52
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19791 b3059339-0415-0410-9bf9-f77b7e298cf2