Accepting request 419423 from home:alois:branches:multimedia:apps

Update to version 0.19.0

OBS-URL: https://build.opensuse.org/request/show/419423
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/mpv?expand=0&rev=53
This commit is contained in:
Martin Pluskal 2016-08-15 18:17:49 +00:00 committed by Git OBS Bridge
parent bd4845582e
commit 4c83996eda
7 changed files with 101 additions and 12 deletions

2
.gitattributes vendored
View File

@ -22,4 +22,4 @@
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
## Specific LFS patterns
waf-1.9.1 filter=lfs diff=lfs merge=lfs -text
waf-1.9.2 filter=lfs diff=lfs merge=lfs -text

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e413d57fec4ad43b9f9b848f38d13fb921313fc9a4a64bf1e906c8d0f7a46329
size 2763392

3
mpv-0.19.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3df5811942cd1d71f48eb4720092fdafec11885bf6dd6d1d3e6413f32e5d67e2
size 2770618

View File

@ -1,3 +1,92 @@
-------------------------------------------------------------------
Mon Aug 15 14:23:25 UTC 2016 - aloisio@gmx.com
- Update to version 0.19.0
Build system changes:
* build: add --htmldir option
* build: always require atomics
* wscript: add proper unversioned SONAME for Android
New features:
* client API: add stream_cb API for user-defined stream
implementations (bumps client API version to 1.22)
* vf_d3d11vpp: add video processor selection
* videotoolbox: add --hwdec=videotoolbox-copy for h/w
accelerated decoding with video filters
* vo_opengl: add a tscale=linear direct implementation
Removed features:
* audio/filter: remove delay audio filter
Added options and commands:
* command: add filename/no-ext sub-property that returns
filename without extension (#3404)
* command: add properties for HDR metadata
* command: add replaygain information properties to
track-list
* options: add vp9 to --hwdec-codecs
* player: add --audio-stream-silence
* player: add --audio-wait-open
* player: add --no-autoload-files
* videotoolbox: add yuv420p to --videotoolbox-format
Changed options and commands:
* options: un-restrict --audio-delay
* use - as command-name separator everywhere
* vo_opengl: reduce default 3dlut-size to 64x64x64 (since
accuracy is improved)
Deprecated options and commands:
* deprecate "balance" option/property (no replacement)
Fixes and Minor Enhancements:
* Windows: don't wait for GUI thread when polling for
events (#3393)
* af_lavcac3enc: error out properly if encoding fails
* af_volume: don't let softvol overwrite af_volume
volumedb sub-option
* ao_pulse: fix some volume control rounding issues
* ao_wasapi: in exclusive mode, do not output multichannel
by default
* audio: add heuristic to move auto-downmixing before
other filters
* audio: show an osd bar when changing ao-volume
* demux: make ALBUM replaygain tags optional (#3405)
* demux_raw: fix small typo to add s16be support
* demux_timeline: restore mkv edition switching
* libarchive: sanitize non-UTF8 archive entries
* macOS/vo_opengl: fix crash when glctx is NULL during
init (#3360)
* player: disable display-sync with spdif transcoding
* player: do not cut off terminal status line if it
contains newlines (#3340)
* player: fix display-sync timing if audio resumes slowly
* player: improve instant track switching (#3392)
* player: improve non-hr seeking with external audio tracks
* player: offset demuxer on start/seek properly with
audio/sub delay
* player: sync audio as well when enabling it mid-stream
* stream/stream_bluray: display list of available titles
in verbose mode
* sub: don't potentially discard too many subtitles on seek
* video: respect --deinterlace=auto
* vo_direct3d: add missing header (fixes Cygwin build)
* vo_opengl: angle: try D3D9 when D3D11 fails eglInitialize
* vo_opengl: angle: use WARP if there are no hw adapters
(makes it work on Windows 7 without hardware-accelerated
graphics)
* vo_opengl: increase 3DLUT accuracy at smaller LUT sizes
* vo_opengl: remove the 3dlut-size npot2 restriction
* vo_wayland: fix high CPU usage due to busy polling
* wayland_common: clip window size to the display output
size
* wayland_common: fix crashes when switching to fullscreen
before the video output is fully initialized
* wayland_common: fix fullscreen image switching bug
* wayland_common: prevent black bars on most non-native
aspect ratios
* wayland_common: remove untested/unusable wayland dnd code
* win32: mpv.rc: re-add version info
* x11: skip ICC update on every window move
* ytdl: Error out with http_dash_segments (unsupported for
now)
- Updated waf to 1.9.2
-------------------------------------------------------------------
Tue Jul 12 11:45:19 UTC 2016 - tchvatal@suse.com

View File

@ -19,10 +19,10 @@
#
%define _waf_ver 1.9.1
%define _waf_ver 1.9.2
%define lname libmpv1
Name: mpv
Version: 0.18.1
Version: 0.19.0
Release: 0
Summary: Advanced general-purpose multimedia player
License: GPL-2.0+ and BSD-3-Clause
@ -102,7 +102,7 @@ Obsoletes: mplayer2 < 20140101
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# PDF manual.
# JIT for lua.
%if 0%{?suse_version} > 1310
%if 0%{?suse_version} > 1320
BuildRequires: python-rst2pdf
%ifarch %ix86 x86_64
BuildRequires: pkgconfig(luajit)
@ -182,7 +182,7 @@ export CCFLAGS="%{optflags}"
--enable-libmpv-shared \
--enable-zsh-comp \
--enable-manpage-build \
%if 0%{?suse_version} > 1315
%if 0%{?suse_version} > 1320
--enable-pdf-build \
%endif
${myopts}
@ -209,7 +209,7 @@ install -D -m 0644 etc/mpv.conf %{buildroot}%{_sysconfdir}/%{name}/mpv.conf
%files
%defattr(-,root,root)
%if 0%{?suse_version} > 1315
%if 0%{?suse_version} > 1320
%doc build/DOCS/man/mpv.pdf
%endif
%doc Copyright LICENSE README.md RELEASE_NOTES

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c71b0372a4bea1c02e2ff5e1aa52484ab9d2e81076538be2cda4e85498d7021
size 98734

3
waf-1.9.2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7abb4fbe61d12b8ef6a3163653536da7ee31709299d8f17400d71a43247cea81
size 98906