MPV

mpv:coverity_scan

Last commit made on 2018-06-11
Get this branch:
git clone -b coverity_scan https://git.launchpad.net/mpv

Branch merges

Branch information

Name:
coverity_scan
Repository:
lp:mpv

Recent commits

cd89362... by Akemi <email address hidden>

cocoa-cb: fix building with Swift 4.2

init is a reserved keyword and Swift 4.2 got a bit stricter about using
it. this could be fixed by adding apostrophes around init but makes the
code uglier. hence i just renamed init to initialized and for
consistency uninit to uninitialized.

Fixes #5899

2e7a4f7... by Akemi <email address hidden>

build: manually add standard library search paths for linking

this reverts commit a174566 since the actually reason for failing has
been found. the isysroot flag overwrites the framework and library
search paths. though we only need to overwrite the former and there is
no way to just overwrite that one. we manually add the standard library
search paths to the very end of the linking command, so it won't
interfere with the search paths extracted by waf.

Fixes #5791

5865086... by Akemi <email address hidden>

cocoa-cb: remove pre-allocation of window, view and layer

the pre-allocation was needed because the layer allocated a opengl
context async itself and we couldn't influence that. so we had to start
the core after the context was actually allocated. furthermore a window,
view and layer hierarchy had to be created so the layer would create
a context.
now, instead of relying on the layer to create a context we do this
manually and re-use that context later when the layer wants to create
one async itself.

20dffe0... by Akemi <email address hidden>

vo_libmpv: pass vo struct to the control callback

f66ee85... by Stephen Hutchinson <email address hidden>

options.c: display additional metadata tags during video playback

The currently-displayed tags make sense for music files, but similar
information for video is more commonly - or at least should be - put
under other tags, while the audio-related tags are often used for
other information on video files (particularly with youtube-dl's
output).

4d2b865... by Julian

stats: remove superfluous line breaks

Those accidentally slipped in with 9975835bdeec3f2b04b136ef40c70b02487bb0e6
due to bad copy & paste.

157b242... by Anton Kindestam <email address hidden>

hwdec_drmprime_drm: Do not show error message during probing

Change the log-level of an error message that would sometimes show up
during hwdec probing, and could be misleading.

bca5951... by gall0ws <email address hidden>

 stream_file: enable cache for FUSE filesystems on OpenBSD and FreeBSD

8479449... by fatalis <email address hidden>

osc: fix accidentally skipping files when seeking with slider

When seeking near the end of the file and the next file loads, seeking
continues on the next file at the same position and then immediately
the file after that. This patch stops slider seeking when a new file is
loaded, which is the standard behavior of many other players.

36cc33f... by Jan Ekström

ao_alsa: simplify get_space()