pkgsrc/multimedia
wiz d74b1fa4ab Update to 0.8.0 from Leonardo Taccari in PR 49670.
Release 0.8.0
-------------

   Diogo Franco Kovensky released this Feb 17, 2015 - 63 commits to master
   since this release

   Warning: for the first 4 hours of the release, the v0.8.0 tag pointed
   to git master instead of the release. This was fixed later.

Changes
-------

   Changes that may break users' config files have been annotated with a
   (!).
     * (!) vo_opengl_old has been removed. OpenGL rendering now requires
       hardware that can do at least OpenGL 2.1, the oldest version
       supported by vo_opengl.
     * (!) vf_pp has been removed. A version of it can still be accessed
       through lavfilter (e.g. --vf=lavfi=[pp...]), but it receives no QP
       information. Also, vf_dlopen no longer passes QP information to its
       loaded plugin either (it's always 0).
     * (!) vf_softpulldown, vf_swapuv, vf_phase, vf_divtc and vf_ilpack
       have all been removed. Ports or alternative versions of these
       filters are available through libavfilter (vf_lavfi).
     * vf_pullup and vf_noise now are simply wrappers to their libavfilter
       equivalents. Both are only currently available on FFmpeg (not
       Libav).
     * (!) ao_portaudio has been removed. There is good support for the
       native audio drivers of all major desktop platforms, as well as
       ao_sdl and ao_openal as fallbacks.
     * (!) vo_opengl's lscale suboption has been renamed to scale; lradius
       is now scale-radius, lparam1 and lparam2 are now respectively
       scale-param1 and scale-param2; lscale-down is now scale-down. The
       cscale suboption remains as is.
     * (!) Several of the vo_opengl radius-preset aliases supported by
       scale have been removed; use scale-radius to set if needed. For
       example, use --vo=opengl:scale=lanczos:scale-radius=2 instead of
       scale=lanczos2. The default radius is recommended for most filters.
     * (!) vo_opengl no longer supports the stereo suboption. The anaglyph
       effect can be reproduced with the stereo3d filter. The quadbuffer
       support, which requires expensive specialized hardware to begin
       with, is removed.
     * (!) The approx-gamma suboption to vo_opengl has been removed. The
       BT.1886 specification says that it's actually how it's supposed to
       be done so it is now the default when srgb or icc-profile are
       enabled. This does not include BT.1886's gamma drop.
     * (!) The no-scale-sep and indirect suboptions to vo_opengl have been
       removed. These are now autodetected and enabled whenever they would
       have benefit.
     * (!) The --lua and --lua-opts parameters / options are now called
       --script and --script-opts, respectively. The lua subdir of the mpv
       config dir is also now expected to be called scripts instead.
     * (!) The --fixed-vo option has been removed. It has been the default
       for a long time anyway, and disabling fixed-vo is not useful.
     * vo_opengl_hq has been updated to take into account new features.
       fancy-downscaling and sigmoid-upscaling are enabled, "mitchell" is
       now the default for scale-down.
     * The sub-visibility OSD message is now clearer about whether
       subtitles are hidden or just not available / selected.
     * The device IDs given to --audio-device for use with ao_coreaudio
       now use UIDs, so they don't change when devices are added/removed
       or after reboots.
     * --msg-level now also accepts ',' as separator.
     * (Client API) The client API now refuses to initialize if the
       LC_NUMERIC locale is not "C".
     * (Client API) The native type of the msg-level parameter is now a
       key-value list. Setting or reading it as a string still works.
     * (Slave API) The get_property command is now deprecated.
     * Documentation updates.
     * PDF documentation is now disabled by default due to rst2pdf being
       fickle, causing weird build errors.
     * Print desync messages with negative A/V sync as well. While rare,
       it could happen with some uses of --autosync.

Bug fixes
---------

     * (Windows) Avoid resizing the video window when player is minimized,
       might address bug #1547.
     * (NetBSD) Fix build with v4l2.
     * (Linux) Attempt to address conflicts with the pulseaudio mixer.
       (bug #1578)
     * Multiple cdda:// fixes. (bugs #1555, #1560)
     * VP9 timestamps no longer cause "missing PTS" warnings with new
       enough FFmpeg builds.
     * Fix a crash when using H.264 hardware decoding on new enough
       libavcodecs. (bug #1587)

New features
------------

     * vo_opengl now supports frame blending to eliminate stuttering when
       the video framerate does not nicely match the display framerate
       through the smoothmotion suboption. This is not meant to
       artificially increase the video's FPS, so there is no "soap opera
       effect" or difficulties with some video types (e.g. anime).
     * vo_opengl now supports sigmoidal upscaling (e.g. for fullscreen),
       which reduces ringing induced by upscaling, enabled through the
       sigmoid-upscaling suboption.
     * vo_opengl now supports ewa_lanczos (Jinc) scaling, which provides
       higher quality with less aliasing. It supports an experimental
       scale-antiringing parameter, which tries to further reduce video
       ringing.
     * vo_opengl now has a linear-scaling suboption, that makes the
       scalers work in linear light. Implied by the srgb, icc-profile or
       the new sigmoid-upscaling suboption.
     * vo_opengl has improved downscaling for higher downscale ratios when
       fancy-downscaling is enabled.
     * Add --keep-open=always to make --keep-open apply to all files
       instead of only the last.
     * mpv now filters the tags that are printed on the console to try to
       hide useless metadata. The filter works as a whitelist, and can be
       configured with the --display-tags option.
     * Add a --sub-scale-by-window option that, when set to 'no', prevents
       subtitles from changing their pixel size when the window changes
       sizes.
     * vo_opengl now technically has GLES 2 and 3 support (but not GLES
       1). GLES 3 support is only tested on Mesa's software emulation.
       GLES 2 has been tested on nvidia drivers. Both GLES modes are
       feature deficient and inefficient due to GLES limitations, so they
       should not be preferred over the standard OpenGL mode.
     * (X11) vo_opengl now supports the icc-profile-auto option on X11
       hosts.
     * The 'A' key now by default cycles through a list of preset aspect
       ratios. Meant to be used to work around broken files.
     * There is now a "force" mode for --loop. Works like "inf", but tries
       to open files/streams even if there was an error on the previous
       attempt.
     * There is now a --log-file option to write mpv's log messages to a
       specifed file.
     * There is now a --audio-file-auto option to automatically load an
       external audio file with certain constraints. Will only load
       external audio if the playing file has a video stream. Set to
       "exact" by default. (bug #967)
     * There is now a --network-timeout option to specify a timeout in
       seconds for network access. If 0 (default), uses the libavformat
       default. If a protocol that doesn't support timeouts is used, this
       option is ignored.
     * (X11) The XF86 special keys are now all mappable in input.conf. All
       keys documented in XF86keysym.h are available, but only as their
       numeric codes.
     * (Linux) The DVB implementation now supports DVB-S2 through S2API.
     * (Linux) The VDR format for channels.conf is now supported and
       preferred. See
       http://linuxtv.org/vdrwiki/index.php/Syntax_of_channels.conf for
       the syntax. Tuning to DVB-S2 channels requires the VDR-format
       channels.conf.
     * (Linux) There is now a --dvbin-full-transponder option for handling
       special broadcast cases where PIDs switch, or just to work around
       incomplete PID data.
     * (Client API) There is now an opengl_cb VO, which receives the
       OpenGL context from the libmpv client. This allows a client to
       render libmpv video directly to a provided OpenGL context without
       having to use --wid embedding.
     * (Client API) The aforementioned --wid parameter can now be set at
       any time, but has no effect if a file is already loaded.
     * (Client API) The list of DVD titles can now be queried.
     * (Client API) There is now a filtered-metadata property, containing
       only the tags allowed by --display-tags.
     * (Client API) There is now support for XEmbed --wid targets, such as
       a GtkSocket's gtk_socket_get_id().
     * (Client API) There is now a file-format property with a symbolic
       name for the file format. In some cases this might be a comma
       separated list of various different extensions due to libavformat
       idiosyncrasies.
     * (Client API) There is now a mouse command for generating mouse
       events over the video window.
     * (Client API) There is now a partially-seekable property that
       indicates whether a file is only considered seekable because of the
       stream cache, but would not be seekable otherwise (e.g. realtime
       stream, or HTTP with no resume support). Small relative seeks may
       be fine, but larger seeks will likely fail.
     * (Client API) There is now an MPV_EVENT_QUEUE_OVERFLOW event that is
       posted whenever events have to be dropped because the queue is
       full. No further events are posted until the
       MPV_EVENT_QUEUE_OVERFLOW is consumed to avoid duplicated posting.
     * (Client API) There is now a helper mpv_wait_async_requests()
       function that blocks until all known async requests have completed.
       (bug #1542)
     * (Client API) There is now a detected-hwdec property that returns
       the detected hardware decoder when one is successfully opened. This
       probably only returns a valid value after playback has started.
     * (Client API) There are now audio_add, audio_remove and audio_reload
       counterparts to the equivalent sub_ commands for handling external
       audio files.
2015-02-19 09:16:15 +00:00
..
acidrip Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
adobe-flash-plugin
adobe-flash-plugin11 Update adobe-flash-plugin11 to 11.2.202.440 for APSA15-01 (CVE-2015-0311). 2015-01-27 11:24:57 +00:00
alevt
audiocd-kio Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
avidemux Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
bitstream Import bitstream-1.0 as multimedia/bitstream. 2014-08-09 20:26:25 +00:00
bsdav Explicitly set MKPROFILE=yes to get consistent build results when 2013-12-08 02:56:22 +00:00
ccxstream Fix typo. 2015-02-07 15:02:04 +00:00
cfourcc
clutter-gst Update clutter-gst to 2.0.12 2015-01-17 16:02:53 +00:00
deforaos-player Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
dirac Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
divxplayer
dragon Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
dumpmpeg
dvb-apps Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
dvd-slideshow Use ffmpeg1 instead of ffmpeg. 2014-08-12 18:22:06 +00:00
dvdauthor compat.h needs config.h 2014-11-30 02:49:28 +00:00
dvdbackup
dvdrip Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
dvdstyler Really fix pkglocaledir. 2014-09-27 10:35:48 +00:00
dvdview
farsight2 Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
ffmpeg1 Update to ffmpeg1-1.2.12. Security update for: 2015-02-15 10:50:01 +00:00
ffmpeg2 Changes 2.5.4: 2015-02-14 15:41:42 +00:00
ffmpeg2theora Preserve environment. 2014-12-11 22:13:58 +00:00
ffmpeg010 Add ALTERNATIVES files for the ffmpeg packages. 2014-12-12 08:48:17 +00:00
ffmpegthumbnailer Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
ffmpegthumbs Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
ffplay1 Reset PKGREVISION after update. 2014-12-30 13:49:20 +00:00
ffplay2 Changes 2.5: 2014-12-06 09:18:41 +00:00
flashplayer
flvstreamer fix SunOS build by linking -lsocket -lnsl 2015-01-18 21:20:46 +00:00
fuppes Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
fxtv
gecko-mediaplayer Update gecko-mplayer to 1.0.9. 2014-09-13 02:46:11 +00:00
ggrab Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
gmediaserver Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gmencoder Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gmplayer Add -mstackrealign -mpreferred-stack-boundary=4 to CFLAGS on i386 for all 2014-12-03 15:08:02 +00:00
gnash Revbump after updating boost 2014-11-07 19:39:24 +00:00
gnome-media Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
gnome-mplayer Recursive bump by audio/libdiscid 0.50 -> 0.61 2014-11-21 23:22:17 +00:00
goggles Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
gopchop Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gpac Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
gst-plugins0.10-bad Fix description which seems to have been copied from *-ugly. 2014-12-01 08:19:19 +00:00
gst-plugins0.10-base Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gst-plugins0.10-dvdread
gst-plugins0.10-ffmpeg Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gst-plugins0.10-gnonlin
gst-plugins0.10-good Fix compile with clang on i386. 2015-02-18 19:21:54 +00:00
gst-plugins0.10-hal
gst-plugins0.10-mpeg2dec
gst-plugins0.10-ogg
gst-plugins0.10-resindvd Bump ABI depends since libdvdnav-5 removed a library. 2014-10-04 12:49:05 +00:00
gst-plugins0.10-theora
gst-plugins0.10-ugly
gst-plugins0.10-v4l2
gst-plugins0.10-vp8
gst-plugins0.10-x264 recursive bump from x264-devel build number change (i.e. API change) 2014-04-10 05:57:43 +00:00
gst-plugins0.10-xvid
gst-plugins1-bad Update to 1.4.5. All pkgsrc patches were integrated :-) 2015-01-03 18:09:30 +00:00
gst-plugins1-base Update to 1.4.5. All pkgsrc patches were integrated :-) 2015-01-03 18:09:30 +00:00
gst-plugins1-dvdread Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-egl-gl Import gst-plugins1-gl-1.4.5 as multimedia/gst-plugins1-egl-gl. 2015-01-30 11:09:45 +00:00
gst-plugins1-egl-opengl Import gst-plugins1-opengl-1.4.5 as multimedia/gst-plugins1-egl-opengl. 2015-01-30 11:10:20 +00:00
gst-plugins1-good Update to 1.4.5. All pkgsrc patches were integrated :-) 2015-01-03 18:09:30 +00:00
gst-plugins1-libav Update to 1.4.5. All pkgsrc patches were integrated :-) 2015-01-03 18:09:30 +00:00
gst-plugins1-mpeg2dec Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-ogg Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-omx Import gst-omx-1.2.0 as multimedia/gst-plugins1-omx. 2015-01-30 01:37:08 +00:00
gst-plugins1-resindvd Update to 1.4.4: 2014-11-23 15:54:00 +00:00
gst-plugins1-theora Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-ugly Update to 1.4.5. All pkgsrc patches were integrated :-) 2015-01-03 18:09:30 +00:00
gst-plugins1-v4l2 this builds under netbsd now, add it to ONLY_FOR_PLATFORM 2014-11-29 13:48:11 +00:00
gst-plugins1-vpx Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-x264 Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst123 Improve COMMENT. 2014-10-01 14:32:59 +00:00
gstreamer0.10 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gstreamer1 Update to 1.4.5. All pkgsrc patches were integrated :-) 2015-01-03 18:09:30 +00:00
gtranscode
gxine Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
handbrake Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
hwdecode-demos Resort, fixes use of undefined variable as mentioned by obache@ 2014-09-23 15:09:54 +00:00
juk Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
kaffeine Revbump after updating boost 2014-11-07 19:39:24 +00:00
kdemultimedia3 Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
kdenlive Revbump after updating boost 2014-11-07 19:39:24 +00:00
kmix Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
kmplayer Revbump after updating boost 2014-11-07 19:39:24 +00:00
kmplayer-kde3 Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
kscd Recursive bump by audio/libdiscid 0.50 -> 0.61 2014-11-21 23:22:17 +00:00
libaacs Fix build on NetBSD. 2015-02-05 17:34:09 +00:00
libass Changes 0.12.1: 2015-02-11 10:58:02 +00:00
libassetml recursive PKGREVISION bump for libass shlib major -> 5 2013-10-20 21:53:54 +00:00
libbdplus Changes 0.1.2: 2015-01-31 21:48:02 +00:00
libbluray Changes 0.7.0: 2015-01-31 21:45:30 +00:00
libdv Another case where endian.h needs types.h on MirBSD. 2013-12-03 21:46:46 +00:00
libdv-tools
libdvbcsa Import libdvbcsa-1.1.0 as multimedia/libdvbcsa. 2014-08-09 20:09:48 +00:00
libdvbpsi Support cwrappers for packages appending arguments in the wrappers. 2014-12-01 12:39:16 +00:00
libdvbpsi0
libdvdcss Fixed CONFIGURE_ARGS 2015-01-31 21:52:15 +00:00
libdvdnav Changes 5.0.3: 2015-01-31 21:26:44 +00:00
libdvdplay
libdvdread Changes 5.0.2: 2015-01-31 21:25:47 +00:00
libflash Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
libflashsupport
libflashsupport-pulse
libflashsupport10
libhdhomerun pkglint cleanups. 2014-10-05 16:27:25 +00:00
libkate Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
libkcddb Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
libkcompactdisc Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
libmatroska Remove c from USE_LANGUAGES, this is C++ source code. 2015-01-23 10:12:44 +00:00
libmediainfo Simplify PKGNAME. 2015-01-10 20:33:49 +00:00
libmp4v2
libmpeg2 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libmpeg3
libnms Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-10-24 09:45:34 +00:00
libogg Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
liboggz Expand --version-script removals for SunOS back out into package Makefiles 2014-09-10 15:59:33 +00:00
libquicktime Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
libtheora Don't use -fforce-addr. 2013-10-25 21:48:16 +00:00
libtheora-docs Fix previous. Theora.pdf is only created if many more dependencies 2015-02-09 21:56:49 +00:00
libva
libva-driver-vdpau Use PKG_SKIP_REASON for unsupported OSes. 2015-01-04 09:38:29 +00:00
libvdpau Use PKG_SKIP_REASON for unsupported OSes. 2015-01-04 09:38:29 +00:00
libvpx NetBSD ARMv7 hardfloat build fix 2014-11-14 11:51:01 +00:00
lsdvd Update lsdvd to 0.17. Changes: 2014-10-13 18:29:54 +00:00
mediainfo Simplify PKGNAME. 2015-01-10 20:33:49 +00:00
mediatomb Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
mencoder add patch from ffmpeg to fix the recent LZO integer overflow 2014-06-27 15:58:44 +00:00
ming not interesting anymore. 2014-09-28 03:00:45 +00:00
minidlna Use BSD icon style instead of Linux one, from John D. Baker in PR 49586 2015-01-20 09:59:33 +00:00
mjpegtools
mkv2mp4 Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
mkvtoolnix The last updates of libebml and libmatroska, despite only being X.Y.Z -> 2015-01-06 14:59:18 +00:00
mkvtoolnix-old The last updates of libebml and libmatroska, despite only being X.Y.Z -> 2015-01-06 14:59:18 +00:00
mlt Correction of MASTER_SITES. Previous was NOT wrong, but new is better. 2015-01-17 12:50:51 +00:00
mp4v2
mpeg-lib ftp.gimp.org is no longer. Update/remove links pointing there. 2014-08-19 10:42:55 +00:00
mpeg4ip
mpeg_encode Fix build on SunOS (socket libraries, use strerror()). 2014-09-23 14:29:50 +00:00
mpeg_play
mplayer Add -mstackrealign -mpreferred-stack-boundary=4 to CFLAGS on i386 for all 2014-12-03 15:08:02 +00:00
mplayer-plugin Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
mplayer-share Add -mstackrealign -mpreferred-stack-boundary=4 to CFLAGS on i386 for all 2014-12-03 15:08:02 +00:00
mplayerthumbs Update to KDE SC 4.14.3 2014-11-13 12:06:45 +00:00
mpv Update to 0.8.0 from Leonardo Taccari in PR 49670. 2015-02-19 09:16:15 +00:00
ogle
ogle_gui Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ogmtools Fix inttypes on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:16:58 +00:00
omxplayer make tty input handling work 2015-01-19 20:42:09 +00:00
openquicktime
p5-GStreamer Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-xmltv Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
phonon Update phonon to 4.8.2 2014-11-13 09:26:08 +00:00
phonon-backend-gstreamer Update to phonon-backend-gstreamer 4.8.0 2014-11-30 03:00:04 +00:00
phonon-backend-vlc Update phonon-backend-vls to 0.8.1 2014-11-30 03:07:09 +00:00
php-ming not interesting anymore. 2014-09-28 03:00:45 +00:00
pitivi Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
pspvc Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
py-gstreamer0.10 Mention gstreamer major version 0. 2014-08-08 21:50:58 +00:00
py-gstreamer1 Add PYTHON_VERSIONS_INCOMPATIBLE=26 due to devel/py-gobject3. 2014-08-11 06:16:44 +00:00
py-ming not interesting anymore. 2014-09-28 03:00:45 +00:00
realplayer-codecs
regionset Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
replex
ruby-gnome2-clutter-gstreamer Update ruby-gnome2 package to 2.2.3. 2014-11-09 06:27:02 +00:00
ruby-gnome2-gstreamer Update ruby-gnome2 package to 2.2.3. 2014-11-09 06:27:02 +00:00
ruby-ming not interesting anymore. 2014-09-28 03:00:45 +00:00
schroedinger
smpeg Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
smpeg2 Recursive bump for SDL2-using packages. 2015-02-09 08:43:13 +00:00
subtitleeditor Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
swfdec Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
swfdec-gnome Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
swfdec-mozilla Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
totem Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
totem-browser-plugin Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
totem-nautilus Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
totem-pl-parser Fix PLIST 2015-01-30 12:59:37 +00:00
transcode Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
tstools Update HOMEPAGE and MASTER_SITES (both were Server not found). Add LICENSE=mpl-1.1. 2014-12-21 12:12:42 +00:00
tvtime Fix empty shell 'if's. Uses libiconv. 2014-09-25 15:08:29 +00:00
ushare recursive bump from x264-devel builld number change (i.e. API change). 2014-04-10 05:39:14 +00:00
vlc The last updates of libebml and libmatroska, despite only being X.Y.Z -> 2015-01-06 14:59:18 +00:00
vlc2 Fix build on NetBSD-current with strtoi. 2015-01-23 16:15:42 +00:00
vlc21 Explicitly disable oss except on NetBSD-7+. 2015-01-24 20:42:22 +00:00
win32-codecs
x264-devel Fix building with -flto; do not force optimisation compiler flags 2015-01-21 18:15:17 +00:00
x265 Changes 1.5: 2015-02-12 09:02:42 +00:00
xanim Fix pointer vs value confusion. Bump revision. 2013-08-31 14:52:50 +00:00
xawtv Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
xfce4-mpc-plugin Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfmedia Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
xine-lib Older GCC releases don't like to use to pointers to fulfill the "g" 2015-02-04 20:50:16 +00:00
xine-ui Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
xine-v4l Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
xine-v4l2 Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
xvid4conf Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xvidcore Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
Makefile + gst-plugins1-egl-gl gst-plugins1-egl-opengl 2015-01-30 11:10:57 +00:00