diff --git a/mpv.changes b/mpv.changes index 43acb66..79cdf92 100644 --- a/mpv.changes +++ b/mpv.changes @@ -1,4 +1,40 @@ ------------------------------------------------------------------- +Wed May 6 12:49:29 UTC 2015 - mpluskal@suse.com + +- Update to 0.9.2 + * mpv's IRC channel moved from #mpv-player to #mpv on chat.freenode.net. + * Documentation updates. + * The default value for the --ytdl-format option is now best, in order to work around youtube-dl's 2015.04.26 release enabling DASH by default, as FFmpeg / Libav do not yet properly support DASH. + * When seeking, the current timestamp will show the predicted seek timestamp instead, until the final timestamp is resolved. Improves UI responsiveness on slow streams and/or large seeks. +- Changes for 0.9.0 + * Note: mpv is not compatible with Lua 5.3. Lua 5.1 or 5.2 is required. + * The minimum required libass version is now 0.12.1 or newer. + * The minimum required FFmpeg version is now 2.4.0 (equiv. Libav 11) or newer. + * The internal libmpg123 support was removed. This was already not used by default in the previous release. + * The LIRC support was removed. Configure LIRC remotes as input devices instead. + * The Linux Joystick support was removed. + * vf_screenshot was removed, as they are now handled at a VO level and is compatible with all VOs. + * --ass-use-margins has been renamed to --sub-use-margins and applies only to plain-text (non-ASS) subtitles (enabled by default). The new --ass-force-margins option applies only to ASS subtitles (disabled by default). To get the old behaviour back, enable both at the same time. + * The --sub-scale-with-window option now only applies to plain text (non-ASS) subtitles (enabled by default). The new --ass-scale-with-window option does the same but only with ASS subtitles (disabled by default). + * The range for the param1 for the gaussian vo_opengl scaler has been redefined. Instead of being an arbitrary 1-100 range, have a default value of 1.0, and anything higher is blurrier. + * The seek, playlist_next, playlist_prev, loadfile and loadlist parameters no longer accept numerical parameters where symbolic parameter names exist. + * vo_opengl changes: + * The smoothmotion suboption has been renamed to interpolation. The old name is still supported for now. + * The bilinear_slow scaler has been renamed to triangle. + * scale-down has been renamed to dscale and now has its own set of config options (e.g. dscale-radius). + * Scaler radius no longer defaults to 3 but to a preferred value that may be different for each filter. + * The scale-radius option may now go down as low as 0.5, which is the value used by the nearest filter. + * spline36 is the new cscale default for opengl-hq. This might break setups that use fbo-format=rgb8. To work around it, leave fbo-format as its default, or set to something higher than 8, or set cscale=bilinear, the previous default. + * vf_format no longer converts video to YUYV if there is no parameter. Video is now passed unchanged unless a format is specifically requested. + * The --colormatrix, --colormatrix-input-range, --colormatrix-output-range and --colormatrix-primaries options have been converted into vf_format suboptions. See commit 27715b7 and the manual for details. + * vf_mirror's implementation was replaced with calling into libavfilter's vf_hflip filter, thus depending on libavfilter to function. + * The device subption to ao_wasapi has been deprecated in favor of --audio-device. + * --video-rotate now allows 360 as an argument instead of stopping at 359. + * Several improvements to af_scaletempo. + * Options that have multiple options and also include a "yes" option now default to that if specified with no arguments. + * The default value of --cache-default is now 150000 (153.6 MB, ~146 MiB). + * JPEG screenshots now use the same subsampling as the source video. The images are still RGB regardless of source format though. +------------------------------------------------------------------- Thu Apr 23 11:27:19 UTC 2015 - mpluskal@suse.com - Correct category for library diff --git a/mpv.spec b/mpv.spec index b15eeec..7eee1b8 100644 --- a/mpv.spec +++ b/mpv.spec @@ -20,7 +20,7 @@ %define libname libmpv1 Name: mpv -Version: 0.8.3 +Version: 0.9.1 Release: 0 Summary: Advanced General Purpose Video Player License: GPL-2.0+ @@ -30,16 +30,21 @@ Source0: https://github.com/mpv-player/mpv/archive/v%{version}.tar.gz Source1: %{name}.changes BuildRequires: hicolor-icon-theme BuildRequires: ladspa-devel +BuildRequires: libavcodec-libav-devel +BuildRequires: libavdevice-libav-devel +BuildRequires: libavfilter-libav-devel +BuildRequires: libavformat-libav-devel +BuildRequires: libavutil-libav-devel BuildRequires: libjpeg-devel BuildRequires: libmng-devel +BuildRequires: libswscale-libav-devel BuildRequires: libv4l-devel BuildRequires: linux-kernel-headers BuildRequires: lirc-devel BuildRequires: lua-devel BuildRequires: luajit-devel BuildRequires: ncurses-devel -BuildRequires: perl -BuildRequires: pkgconfig +BuildRequires: pkg-config BuildRequires: pulseaudio-devel BuildRequires: python-docutils BuildRequires: python-rst2pdf @@ -57,12 +62,7 @@ BuildRequires: pkgconfig(enca) BuildRequires: pkgconfig(jack) BuildRequires: pkgconfig(lcms2) BuildRequires: pkgconfig(libass) -BuildRequires: libavcodec-libav-devel -BuildRequires: libavdevice-libav-devel -BuildRequires: libavfilter-libav-devel -BuildRequires: libavformat-libav-devel BuildRequires: pkgconfig(libavresample) -BuildRequires: libavutil-libav-devel BuildRequires: pkgconfig(libbluray) BuildRequires: pkgconfig(libbs2b) BuildRequires: pkgconfig(libcdio) @@ -70,7 +70,6 @@ BuildRequires: pkgconfig(libcdio_cdda) BuildRequires: pkgconfig(libcdio_paranoia) BuildRequires: pkgconfig(libguess) BuildRequires: pkgconfig(libiso9660) -BuildRequires: libswscale-libav-devel BuildRequires: pkgconfig(libudf) BuildRequires: pkgconfig(libva) BuildRequires: pkgconfig(libva-x11) diff --git a/v0.8.3.tar.gz b/v0.8.3.tar.gz deleted file mode 100644 index ee906d8..0000000 --- a/v0.8.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:091038c802866848e3647f2a50215fa64ead0dc36f9114457db8b353528689cf -size 2664730 diff --git a/v0.9.1.tar.gz b/v0.9.1.tar.gz new file mode 100644 index 0000000..f8e9174 --- /dev/null +++ b/v0.9.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d23688575d2cc4484f7feef628c690f68016e385622201894d02cb238ea179e +size 2698031