summaryrefslogtreecommitdiff
path: root/multimedia/mplayer-share
AgeCommit message (Collapse)AuthorFilesLines
2006-04-13-use the "try2" distfile, it already contains the fix for the PCM decoderdrochner4-32/+46
which we had a patch for -add another patch from the Mplayer site which fixes CVE-2006-0579 (ASF demuxer overflows) bump PKGREVISIONS of mplayer, mencoder and gmplayer
2006-03-17Make action line begin from tab character removing two spaces.taca1-2/+2
2006-03-11Use PKGMANDIR instead of "man".reed1-2/+2
2006-03-09Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk.jlam1-2/+2
Remove deprecated ossaudio.buildlink3.mk.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-02-03Update to 1.0rc7nb2: Adapt for new mplayer-fonts package.wiz3-113/+11
Fix a few pkglint warnings while here.
2005-12-31Prevent configure from finding compilers that exist outside of whatkristerw2-10/+15
is handled by the pkgsrc wrappers.
2005-12-11Convert aalib to options framework, adding an 'x11' option, and removewiz1-2/+2
aalib-x11 and aview-x11. SDL dependencies change, so bump PKGREVISION (and BUILDLINK_RECOMMENDED) for affected packages. Addresses PR 32046 by Leonard Schmidt.
2005-12-10Security fix for SA17892:salo2-1/+84
"A vulnerability in FFmpeg libavcodec can be exploited by malicious people to cause a DoS (Denial of Service) and potentially to compromise a user's system." http://secunia.com/advisories/17892/ Fix from ffmpeg CVS repository, libavcodec/utils.c rev. 1.162: "default_get_buffer() cleanup fixes probably exploitable heap overflow heap overflow found by (Simon Kilvington)"
2005-12-09Add DTS support via libdca, not enabled by default.salo1-2/+9
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+3
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-26Add mplayer-internal-faad option to use mplayer's internal faad library.ben1-6/+13
The default is to depend on an external faad library, so bump PKGREVISION.
2005-11-24Add mplayer option for faad2, which uses faad2 from pkgsrc.ben2-5/+13
2005-11-11Reverted the last change. Added a comment to why that changed had brokenrillig1-2/+4
things.
2005-11-05Replaced an overly complex expression with the roughly equivalentrillig1-2/+2
${PKGBASE}.
2005-10-24Call isspace(3) with unsigned char, instead of char, to handleminskim2-1/+37
non-ASCII characters properly. Based on patches provided by Kevin Kim Bump PKGREVISION for mplayer and gmplayer.
2005-10-05Remove some more *LEGACY* settings that are over a month old andwiz1-19/+1
thus were before 2005Q3.
2005-10-02More master sites updates from Leonard Schmidt in PR 31271.wiz1-2/+5
2005-09-15Update MASTER_SITES, from Leonard Schmidt on tech-pkg.wiz2-8/+11
2005-08-27Security fix for mplayer as given indogcow2-1/+18
http://www.sven-tantau.de/public_files/mplayer/mplayer_20050824.txt . bump PKGREVISION of affected pkgs.
2005-08-25Add RCS Id, noted by Matthew Luckie.wiz11-0/+11
2005-07-21Add ggi option for mplayer, from Christoph Egger in private mail.wiz1-3/+10
2005-07-21Fix compilation with aalib option.wiz3-8/+14
2005-07-18Add an aalib option to mplayer. Patch from Leonard Schmidt on tech-pkg.wiz1-3/+10
2005-06-17Create directories before installing files into them.jlam1-1/+3
2005-06-08Legacy option settings belong to PKG_LEGACY_OPTIONS, not PKG_SUGGESTED_OPTIONS.dillo1-3/+3
Store warnings in PKG_OPTIONS_DEPRECATED_WARNINGS.
2005-06-02- only include supported options in PKG_SUGGESTED_OPTIONSdillo1-12/+9
- don't include deprecated variables in BUILD_DEF - no need to .undef .for loop variables
2005-06-02convert to options framework, noted by Geert Hendrickxdillo1-2/+2
2005-06-01Check that PKGNAME is defined before using it.jlam1-3/+3
2005-06-01Convert the mplayer* and mencoder* packages to the options framework.jmmv3-85/+238
This means that the MPLAYER_ENABLE_RUNTIME_CPU_DETECTION, MPLAYER_DISABLE_DRIVERS and MPLAYER_USE_MEDIALIB become deprecated (although still recognized). Visible changes in the resulting binary packages should be minimum by default (everything that was enabled before still is, and the same dependencies are kept). A notable addition, though, is the support for user-defined menus, closing PR pkg/29784. Also note that (almost) all dependencies have now a corresponding option to disable them in case you want to get a minimalist mplayer package. 'make show-options' is your friend ;) With thanks to wiz@ and dillo@ for their comments and help.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+3
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-31Apply a set of fixes to improve support of other OSes (specially DragonFly).jmmv16-9/+265
All these changes are already in mplayer's repository. Patches provided by Joerg Sonnenberger in private mail.
2005-05-30Recognize 0xf706d as faad codec. Needed e.g. for 21c3 videos.wiz3-6/+20
Bump PKGREVISION.
2005-05-30regen with updated line numberswiz4-16/+16
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-18update to 1.0pre7drochner6-67/+113
some relevant changes: -RTSP/MMST security patches now in main distribution -documentation improvements -x86_64 support fixes -integrated Tremor decoder for Ogg/Vorbis -expose support for 422P and 444P raw formats -dropped support of old FAAD2 versions (<= 1.1) -support for 32 bit float and extended WAV files -support for multichannel WAV files -ALAC (QuickTime lossless audio) support via lavc -vqf demuxer -support for Real multirate files -more user-friendly info about audio and subtitle tracks in Ogg files -streaming improvements -ffmpeg updates -MEncoder usability improvements -many fixes and cleanups
2005-04-16two security patches: Real RTSP heap overflow, MMST heap overflowdrochner3-1/+41
(both patches published on the mplayer website) bump PKGREVISION of affected pkgs
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests.agc1-1/+5
2005-01-06SSE(2) support is always present on amd64 - ifdef out the sysctldrochner2-1/+25
2005-01-05update to 1.0pre6drochner4-46/+189
This release updates and enhances documentation and translations, adds full X86-64 support, adds 18 new codecs, updates various codecs, adds special CPU saving options for low end machines, adds better support for MacOS X and Windows, and adds uncountable fixes and enhancements all over the place.
2004-12-17Update "mplayer" packages to version 1.0pre5try2 (as 1.0rc5pl2).tron2-13/+12
Changes since version 1.0pre5: - buffer overflow in mp3lib fixed - heap overflow in Real rtsp streaming code fixed - stack overflow in mmst streaming code fixed - unnecessary bmp demuxer removed because of buffer overflows - heap overflow in pnm streaming code fixed This fixes the vulnerabilities reported by iDEFENSE recently.
2004-11-06Fix faad2 test in configure script on -current;wiz2-1/+15
based on PR 26412 by Tom Spindler. Bump PKGREVISION on all affected packages.
2004-08-18Add dependency on libtheora; bump PKGREVISION.wiz1-1/+2
2004-07-24Unlocking a mutex before destroying it makes libpthread much happier.wiz2-1/+18
2004-07-20Remove external Matroska support from mplayer packages.salo3-20/+5
The new internal demuxer is the only one supported now, works better and support for the external one will be removed in next releases.
2004-07-17Update to 1.0pre5:wiz17-717/+104
DOCS * small additions, corrections, updates all over the place * audio output driver section added to the man page * several bug fixes and improvements in the MEncoder documentation * DVD ripping guide extended and improved * AUTHORS file massively extended * German man page partially updated * Hungarian XML documentation translation started Ports * encrypted DVD playback on Windows fixed (again) * Cygwin and MinGW now accept the same -dvd-device syntax * LIVE.COM now works under MinGW * foundations for MinGW crosscompilation * disabled SSE on MinGW as it caused crashes * AC3 passthrough for ao_win32 * improved vo_quartz (YUV, multiple screens support) * vo_quartz made default on Mac OS X * ao_macosx fixed and made default again on Mac OS X * RealVideo binary codecs support on Mac OS X (still buggy) * bigendian fixes in vf.c, vo_tga * OpenBSD portability fixes * OpenBSD/VAX support * AMD64 support Drivers * support for more Radeons (9800 XT among them) in VIDIX * Radeon related bug fixes in VIDIX * vo_gl2 now supports GUI, fix for flickering borders in fullscreen * support 24 and 32 bit PCM files, bigendian fixes * ao_sdl now converts unsupported formats instead of quitting * ENCA support * merged ao_alsa9 and ao_alsa1x drivers into ao_alsa * NeoMagic TV-out support through VESA * JACK audio output driver * vo_sdl fixes (wrong flags and screensaver disabling) * vo_directx fixes Decoders * MSZH/ZLIB, FLI, QTRLE, RoQ video and RoQ audio support moved to FFmpeg * FFmpeg Cinepak and CYUV decoders preferred * audio format 0xff support (is AAC) * "raw" audio in MOV supported * Indeo audio (iac25) support via binary codec * upgrade libfaad2 to the FAAD 2.0 release * MPEG2 chroma422/444 support * Winnov WINX and WNV1 support via binary codec Demuxers * Ogg subtitle handling and other bug fixes * Matroska improvements * support seeking in Real files without -idx * support seeking in Real files without index with -forceidx Streaming * ASF, MMST streaming fixes * URL escaping fixed * NSA (Nullsoft audio) streaming support * embedded RAM playlist support * multibyte URL support * rtp:// now supported even with LIVE.COM compiled in * miscellaneous bug fixes Filters * vf_softskip: frame skipping filter for MEncoder * vf_harddup: frame duplication filter for MEncoder * vf_pullup minor fixes and improvements * AltiVec-optimized YUV to RGB converter * vf_spp memory corruption fix on reallocation FFmpeg/libavcodec * MPEG2 encoding with 8, 9, 10, 11 bit intra DC precision * DC clipping fix, intra_dc_precision > 0 support * Cinepak fixes and palette support * support skipping of MB rows during decoding * Vorbis in NUT fixed * NUT updated to latest specification * segfault and artifact fixes in SVQ3 decoder * motion estimation code: overflow and chroma fixes * change qscale -> lambda for the motion estimation * noise preserving sum of squares comparison function in ME code * fixed memory overwrite in truemotion decoder * clip input motion vectors, better error tolerance on bad vectors * FLAC decoder cleanup (partial demuxer/decoder separation) * memalign hack for SSE/SSE2 on that alternative OS :) * lots of AltiVec optimizations * qscale + qprd fix * QTrle4 support * H.261 decoder * coefficient saturation fix in H.263 * H.263 MCBPC fix * per line lowpass filter in MMX and faster C lowpass filter * SVQ1 encoder * as usual, lots of bug fixes and optimizations Others * fullscreen fixes for many window managers * fix crash on original Pentiums and older * dvd://start-end support * netstream (mpst://) support fixed * support comments in plaintext playlists * loader/ dependency removed * keepaspect option extended to all video output drivers * WMA to Ogg conversion and simple subtitle editing script added to TOOLS * support for more lame options * new set of GUI icons * memory conserving implementation of GUI potmeters * X11 code reindented * further gcc 3.4 support fixes * mixer API written for changing volume through libaf * -rtc-device option for specifying the RTC device * desktop/menu icon added * miscellaneous bug fixes and cleanups * multi-threaded encoding with lavc * fixed a bug with Real files introduced in pre4 * -use-stdin renamed to -noconsolecontrols
2004-07-16fix ?= typo: we want to add arts to MPLAYER_DISABLE_DRIVERS on Solaris.grant1-2/+2