summaryrefslogtreecommitdiff
path: root/multimedia/gst-plugins
AgeCommit message (Collapse)AuthorFilesLines
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+1
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-02We need sys/time.h for timeval on DragonFly. Since time.h and sys/time.hjoerg2-4/+13
might conflict on some systems, conditionally include it only on DragonFly.
2005-10-21Modify the xvid plugin to play video/x-divx files.xtraeme2-1/+15
2005-10-12Update gst-plugins-* to 0.8.11:jmmv7-35/+92
Changes since 0.8.10: * new element: dvdsubdec * new element: imagemixer * new element: textrender * new element: x264enc * new element: oggparse * important fixes for esound synchronisation Bugs fixed since 0.8.10: * 166528 : [playbin] hang playing dvdnav:// location * 166783 : [PATCH] New plugin: imagemixer * 167122 : seeking DVD stops playback * 171563 : Vorbis support for Matroska muxer * 301312 : dvdsubdec element * 305754 : [PATCH] Internal GStreamer error: pad problem. * 306555 : chain-based text rendering element * 307326 : esdsink makes video choppy totem * 307361 : please expose shoutcast stream metadata through playbin * 308040 : gstadder: using adder with float audio results in corrupt... * 308484 : Totem gives error when seeking back to beginning of Ogg T... * 308633 : Matroska muxer always fails * 308638 : ffmpegcolorspace does not handle bgra32 correctly * 308772 : mad timestamp inconsistency * 308980 : gst-typefind incorrectly identifies m4a files encoded wit... * 309087 : artsdsink registers conflicting property " name " which cau... * 309150 : [xvimagesink/ximagesink] Incremenet framerate properties * 309179 : videomixer does not love static images and eos * 309218 : adder element does not supply duration values to data it ... * 309325 : Matroska: incorrect element size * 309354 : timestamp inconsitency in audioscale * 309375 : cdparanoia can't extract last track * 309503 : gst-plugins: xine wrapper compile problem with xine-lib-1... * 309524 : no debug category for gnome-vfs elements * 309532 : Matroska: Invalid free() * 309834 : Totem crashes when trying to Play Disc 'cdrecorder' * 310020 : Totem segfaults due to bad location * 310335 : [decodebin] problems with audio streams in a mkv * 310597 : gsttextrender cuts of pixels at the right and bottom of s... * 311006 : [spectrum] handle mono streams * 311070 : wavparse returns caps not in template * 311162 : [flacdec] doesn't handle 24-bit files * 311401 : alpha capsnego broken * 311487 : configure doesn't check for libGLU? * 311491 : ogg muxer can get pages out of order (patch) * 311583 : Skips when playing CD * 311600 : Add MPEG-2 support to mpeg1videoparse * 311662 : " uninitialized value " warning causes build to fail * 312121 : [modplug] crashes on query before song fully loaded * 312272 : Musicbrainz tags not registered for FLAC encoder * 313084 : Eats memory decoding mp3 * 313374 : Crashes in libgstcdparanoia when missing device permissions * 313600 : recent change to esdsink in the 0.8.x branch breaks playback
2005-08-21Update gst-plugins* to 0.8.10:jmmv5-41/+26
Changes since 0.8.9: * new videoscale algorithm: bilinear * important fixes for cd-based applications (Sound Juicer, gnome-cd) Bugs fixed since 0.8.9: * 140237 : Mp3 playback messes up on this file * 161079 : [videoscale] implement bilinear or bicubic methods for do... * 300305 : videobox in YUV adds green instead of black if right=(odd... * 300471 : videoscale from odd to even width adds a green line at th... * 301292 : caps nego problem in gst-adder * 304627 : asfdemux producing a strange framerate * 304754 : Say what devices couldn't be opened when cdparanoia thro... * 305150 : faad plugin doesn't recognize end-of-song? * 305428 : [audiorate] crashes if first buffer has offset of GST_BUF... * 305435 : libgstaudiofile.so uses af_virtual_file_new, which is not... * 305505 : Fail to compile plugin spc * 305524 : Cairo plugin does not compile with cairo 0.5 * 305658 : the adder plugin doesn't connect to more than one sinks * 306041 : gstreamer-plugins 0.8.8 stops Soundjuicer ripping properly * 306641 : gst-compprep segfaults when mpeg2enc plugin is installed ... * 306659 : [avidemux] certain avi file doesnt show video * 306660 : glsink fails to build when OpenGL is used instead of MESA * 306680 : mov with 8 bit raw pcm sound distorted * 306938 : memory leak in gsttypefind * 307354 : PATCH: gcc4 compile fix * 307459 : Can not rip the last track of CDs * 307606 : gstplaybasebin leaks mutex * 307804 : [cdio] gst_element_make_from_uri hangs on " cdda:// " in totem * 308644 : [matroska] Incorrect pixel-aspect-ratio in matroska demuxer * 308794 : [auparse] minor memory leak * 308827 : ogg muxer in 0.8 muxes wrong * 309005 : leaks in gstlibfame.c * 309043 : gstwavparse causes segfaults
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-3/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-08-02Don't use := with CONFIGURE_ARGS, as there are weird effects when somerillig1-6/+6
component of CONFIGURE_ARGS contains a reference to an undefined variable.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-2/+2
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-06-28regen (patch-aa and -ac changes).wiz1-3/+3
2005-06-28regen (correct file paths).wiz1-3/+3
2005-06-28regen (correct line numbers).wiz1-4/+4
2005-06-26Add fix for possible division-by-zero in .wav files parser.wiz3-2/+23
http://bugzilla.gnome.org/show_bug.cgi?id=309043 Bump PKGREVISION. Ok'd by jmmv.
2005-06-14Added a patch that removes preprocessor directives out of the macrorillig2-1/+32
expansion of another macro. Needed for at least gcc-2.95.
2005-06-14Added a patch needed for ISO C90 compilers. This fixes the build ofrillig2-1/+21
audio/gst-plugins-cdparanoia on NetBSD 1.6.2.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
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-25Update gst-plugins* to 0.8.9:jmmv4-10/+27
Changes since 0.8.8: * new element: ximagesrc * new plugin: video4linuxradio * new plugin: freeze Bugs fixed since 0.8.8: * 118033 : Autodetect audiosink at run-time * 141189 : [PATCH] [SPC] playback * 149158 : [qtdemux/faad] MP4 file encoded Nero AAC Codec 2.6.2.0 is... * 154431 : [mpeg] on PPC, gstreamer segfaults on any mpeg video * 161661 : [PATCH] screenshots via gstreamer * 162024 : [alsasink] doesn't probe HW buffer_size/period_size/perio... * 162355 : [PATCH] [cdparanoia] Fix for _QUERY_POSITION * 163443 : crash when searching in a file (cvs) * 165643 : [qtdemux] doesn't handle embedded URLs * 165726 : [PATCH] New plugin: freeze * 166113 : [faad] plugin won't compile against faad CVS (unreleased ... * 168390 : data caching (queue) breaks mms/asf * 168406 : asfdemux always uses 25fps * 168558 : [faad] Unsupported FAAD channel position 0x0 encountered ... * 168728 : [v4lsrc] Support for v4l radio (patch included) * 169073 : muine crashes on song change * 169081 : ogg broken stream fix * 169289 : Playbin should fallback on x11 when xvideo isn't available * 169333 : [pngdec, pngenc] Stride problems * 169400 : decodebin finalization bug * 169629 : [theoraenc] sharpness property * 170060 : Segmentation Fault when open a video file with external s... * 170066 : Leak in oggdemux * 170083 : nautilus restarts (crashes) when trying to view the prope... * 170249 : [nassink] playing .wav gives only noise * 170319 : id3demuxbin loses tags * 170387 : gstreamer fails to play free format mp3 using playbin * 170390 : adder fails to implement a release_pad function * 171341 : seeks on the silence plugin * 171371 : need wavpack decoder * 171530 : new plugin: libcdio-based cdda source * 171777 : Ogm seek support is broken * 171997 : gst-plugins structure addon for mikmod < = 3.2.0 just a on... * 172242 : gstspeed doesn't handle seek events correct * 172281 : Buffer overflows in gstspeed * 172563 : [videocrop] corrupts video when setting property in state... * 172697 : [PATCH] mpeg2dec skip-frame * 172845 : one pixel cropped off at left when rendering subtitles * 172854 : totem spawns error and stops when opening with a badly fo... * 172884 : When un-muting the sound volume is restored to 100% * 172946 : crash when playing a .mov quicktime file * 300337 : [PATCH] [switch] Does not set debug category * 300377 : Totem cannot read files from davs URIs (other GNOME apps ... * 300457 : Totem never errors if you try playing a mp3 stream withou... * 300495 : configure does not find v4l, v4l2, Xlib.h, and SDL * 301158 : 2 casts of buf in the gst_ximagesink_chain function (xima... * 301292 : caps nego problem in gst-adder * 301894 : Wavpack doesn't compile on FreeBSD. * 301944 : GstAdder doesn't EOS when all input channels did * 302188 : totem crashes on a mp3 file * 302222 : update for future Cairo 0.5 API * 302625 : mad element doesn't report bitrate for mp3 files with no ... * 302813 : volume inside playbin doesn't work after the first file h... * 302837 : [playbin] gst_tag_list_copy: assertion `GST_IS_TAG_LIST (... * 302864 : gst-plugins fails to compile with gcc4 * 303011 : compilation fails on GCC4 warnings * 303117 : Gstreamer plugins 0.8.8 musepack plugin build fails * 303253 : More gcc4 issues in 0.8 head plugins * 303650 : mpeg1videoparse does not recognize keyframes * 303936 : should use g++ to link with cpp code * 304125 : POTFILES.in fixes for gst-plugins * 304180 : [directfb] compilation fails with gcc-4 * 304284 : [dv1394src] doesn't compile with gcc4 * 304284 : [dv1394src] doesn't compile with gcc4 * 304537 : [dvdnav] dvdnav doesn't like gcc4 * 304538 : [hermes] doesn't like gcc4 * 304540 : [libmms] libmms doesn't like gcc4 * 304588 : totem crashes on invalid WAV file (channels=0) * 305012 : [ximage] doesn't compile with gcc4 * 305186 : alsasink borkage
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-05-04fix a bash'ism which caused the "dvdnav" gstreamer plugin not beingdrochner2-5/+14
linked against libdvdnav, causing runtime errors fix gst-plugins-dvdnav's PKGREVISION
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-22Update gst-plugins* to 0.8.8:jmmv7-146/+25
Changes since 0.8.7: * subtitle support * new element: puzzle * new plugin: amrnb * new element: dvdlpcmdec * new plugin: autodetect Bugs fixed since 0.8.7: * 100931 : [PATCH] subtitles * 132341 : [avidemux] 'DIB ' = > image upside-down * 135778 : [int2float] broken with audioconvert * 138666 : [playbin] cannot handle files with large initial delay in... * 139749 : [gstplay] libgstplay is *WAY* too slow * 140141 : [qtdemux] cannot playback gsm audio * 140845 : [strings] gst-plugins testsuite's embed.c still uses xvid... * 142272 : [PATCH] [qtdemux] doesn't work with sources that cannot seek * 143555 : [qtdemux] Movie fails to playback * 149162 : Importing m4a files in Rhythmbox leaks memory * 149274 : [PATCH] gst-plug mad gets id3v2 text tags in wrong encoding * 150284 : [matroskamux] fail to mux an MP3 * 150576 : [v4l2src] pad v4l2src0:src returned caps that are not a r... * 151661 : [PATCH] [mad] Possible bug in mad plugin * 152688 : [PATCH[mad/typefind] doesn't support completely broken mp... * 153434 : [PATCH] faac filter cannot create .aac files * 154000 : Relocation error on Linux PowerPC causing crash * 154064 : [mad] cant mix two mp3 * 155163 : [qtdemux] don't know audio FOURCC samr (from mobiles/3GPP... * 155346 : [build] faad plugin doesn't compile against 2.0-rc3 * 155575 : [alsasink] broken with hw:X or when used with either alsa... * 156001 : [mpeg] problem playing an mpeg file * 156379 : [ffmpegcolorspace] lack of YV12 capability * 159092 : thx.vob file seeker moves 'faster' than the actual movie * 159295 : [mikmod/modplug] amiga.mod file segfault totem * 159327 : [mpeg/dvd] playing thx.vob seeking is broken * 159970 : [typefinding] mpeg/audio typefind abort with musepack file * 160126 : multi.ogg is slow * 160505 : [adder] problem using adder plugin * 160730 : [PATCH] [mpegdemux] should remove pads on " new-media " event * 160957 : [adder] EOSs when the first stream EOSs * 161179 : [audioscale] quits with gmem assertion * 161191 : MP3 crashes rhythmbox * 161262 : [mpegdemux] cannot play a pes mpeg file * 161325 : [dvdnavsrc] gst-dvd example pipeline not linking (a52dec ... * 161667 : [PATCH][snapshot] seg fault in signal handler * 161675 : [ffmpegcolorspace] conversion of RGB depth=15 is wrong * 161726 : [ffmpegcolorspace] does not handle x-raw-rgb 24/32 BE _RGB * 161929 : [PATCH] [mpegdemux] sends no discont events on new pads * 162330 : [rtpgsmenc] gsmenc ! rtpgsmenc gives assertion `GST_PAD_D... * 162504 : [xvimagesink] goes black when going from playing - > ready... * 162626 : [videoscale] cannot handle lists of fractions * 162656 : [qtdemux] extracting more metadata from AAC/M4A * 162974 : [flacenc] Flac encoding is broken * 163159 : [videobox] plugin segfault (gst-plugin 0.8.7) * 163161 : [pngenc] only supports video/x-raw-rgb,bits=24,depth=24 * 163177 : [pngdec] Can't cope with png's without an alpha channel * 163309 : [PATCH] typefinding for formats used by libsndfile * 163323 : [pngenc] compression-level customisation support * 163348 : [pngenc] Leaks and other nasty stuff * 163449 : Stereo-to-Surround doesn't like seek * 163485 : [PATCH] tta plugin doesn't build with gcc 2.95.4. * 163634 : [playbin] doesn't like # in filenames * 163676 : [PATCH] [mpeg2dec] need to crop * 163867 : [mad] Totem could not play 384kbit lame 'free format' mp3... * 163891 : Gst-launch-ext will not play an MPEG video * 164069 : [clocking] Hang when playing audio file (.wav) with visua... * 164197 : [pngdec] & [pngenc] The decoded image is in RGB(LE) byte ... * 164209 : [ffmpegcolorspace] PIX_FMT_BGRA32 - > caps conversion is w... * 164265 : [PATCH][ffmpegcolorspace] Converting from an RGB image wi... * 164708 : [PATCH] EffectTV/Quark freed data in wrong place * 164826 : [patch] Avidemux doesn't handle seek on audiopads * 165013 : AVI with HuffYUV segfault * 165193 : Patch for ov51x v4ljpegsrc * 165290 : cannot play asf file with just wma version 2 audio * 165335 : [PATCH] GstAudioScale outgoing buffers don't have duratio... * 165340 : gst-launch-ext-0.8 fails to display video of an .avi file. * 165446 : musepack gst-plugin doesn't work with new libmusepack * 165509 : Mod playback still broken with mikmod * 165525 : Problem with mplex plugin * 165545 : Totem won't play low bitrate mp3 * 165736 : [alphacolor] BGRA handling is missing * 166207 : [PATCH] [ffmpegcolorspace] AYUV- > RGB is broken * 166208 : [cdparanoia] returns wrong number of tracks * 166600 : law encoder/decoder are leaking caps * 166892 : gnome-volume-control crashed * 166917 : deadlock in queue * 166931 : MP3 webradio do not work in Totem * 167117 : [dvdnavsrc] could use a better error message when DVD not... * 167482 : [PATCH] [avidemux] Compile fix for gcc 2.95 * 167483 : [PATCH] [tcpclientsrc] FreeBSD compile fix * 167509 : [PATCH] [tcpserversrc] Assumes a blocking socket * 167633 : [wavparse] div by 0 = > crash * 167639 : Support MusicBrainz metadata tags * 167704 : [PATCH] [tcpserversink] Don't depend on uninitialised values * 167878 : [buffer-frames-convert] buffer_frames_convert_link leaks ... * 167959 : Dirac plugins doesn't build. * 168002 : [build] Musepack header files not found * 168133 : [PATCH] [jpegenc] Memory leaks * 168134 : [PATCH] [gdkpixbufscale] Memory leak * 168254 : [PATCH] [jpegdec] Memory leaks * 168260 : [PATCH] [tcpserversink] free some memory * 168269 : [PATCH] [smoothwave] C99-ism * 168271 : [PATCH] [gdkpixbufscale] Memory/CPU leak * 168801 : autoaudio/videosink probe only in READY * 168885 : AMD64 build failure in gst/librfb/rfbdecoder.c * 168994 : cdparanoia plugin problem with CDs whose first track does... * 169146 : gst-plugins 0.8.9 building on gcc 2.95.3
2005-03-12Fix included (and installed) perl scripts to use the right interpreter.jmmv3-3/+113
While here, pull in a patch from CVS (which already is in 0.8.8) to make tunesbrowser be able to play aac files. Bump PKGREVISION to 2. Closes PR pkg/29653 by Antoine Reilles.
2005-02-24Add RMD160 digests.agc1-1/+2
2005-01-26Explicitly disable xvid. Fixes build if xvidcore is already installed.jmmv1-1/+2
2005-01-16Fix C99-isms to make this pkg build with gcc 2.95.kristerw2-1/+24
2005-01-13Explicitly disable multiple drivers. This fixes the build under Linux,jmmv3-15/+26
where OpenGL was not detected properly but was included in the PLIST. Also avoids the installation of the v4l plugin, which resulted in extra files in that system. Bump PKGREVISION to 1.
2005-01-06Update gst-plugins and gst-plugins-* to 0.8.7.jmmv3-7/+14
Changes since 0.8.6: * multichannel audio support * new element: apetag * new element: ttadec, ttaparse * new element: directfbvideosink * vcd fixes * playbin fixes * dvdread fixes * a52dec fixes * sunaudiosrc fixes * osssrc fixes * avidemux fixes * licensing updates Bugs fixed since 0.8.6: * 147919 : [playbin] broken wav seeking * 148559 : [monoscope] grinds to a halt * 149102 : gstreamer license problems * 149613 : [PATCH}Add proxy server support to the musicbrainz plugin * 151624 : Multichannel support * 152339 : [PATCH] [build] gst-plugins cross compiling * 154773 : [playbin] crashes trying to play short wave files (1 or 2... * 154775 : [qtdemux] Quicktime movie causing some weird debug spew * 154814 : Selection of totem crashing videos * 154815 : [PATCH] ffmpegcolorspace leaks caps * 155348 : Various MP3 files cannot be detected or played * 155879 : [libriff] Bug in lib-riff * 156798 : " An error occured " " Could not write to resource " this sa... * 157233 : [PATCH] playbin leak fixes * 158258 : Patch for polypsink to make it work with both threaded an... * 158382 : [PATCH] [build] debian speex detection patch * 158650 : [PATCH] [videocrop] video crop is completely buggered * 158704 : Fix/finish (S)VCD support * 159215 : [PATCH] Memory leaks in audioscale * 159296 : Playing benow.mp3 file cause totem to hang on EOS with de... * 159297 : dark.441-16-s.flac hangs on eos in totem with debug spew * 159301 : gstreamer.avi file plays, but have broken seeking in totem * 159338 : alaw/mulaw decoders caps warning * 159433 : [osssink] doesn't check for supported channels * 159512 : Progress bar with m4a (aac) broken * 159651 : [decodebin] totem crash * 159759 : DVD LCPM asserts * 159847 : [build] hardcoded path for musepack headers in configure * 159864 : avidemux sends GST_EVENT_DISCONTINUOUS * 159986 : [PATCH] Videorate doesn't handle seek and doesn't reset w... * 160276 : [PATCH] mpegdemux and dvddemux don't reset themselves in ... * 160439 : Can't compile gst-plugins without GCONF * 160514 : [avidemux] seek after EOF for truncated avi files (to non... * 160532 : [avidemux] avi[cvid+PCM] : no image, sound is noise * 160808 : 'ERROR: pipeline doesn't want to play' when using xvimage... * 160869 : [playbin] ogg file (theora/vorbis) causes segfault near end * 161039 : [PATCH] [deinterlace] rowstrides need fixing * 161538 : [playbin] AVI files with mp3 audio are out-of-sync in pla... * 161624 : [alsasink] crash at end of playing this file * 161980 : Volume control applet does not set value correctly. * 162819 : [audioscale] cleanup * 162913 : [mms] missing NULL terminator to g_object_set() in uri ha... * 162924 : [playbin] totem assertion failures when playing cd / pote... API changes since 0.8.6: - API additions: * A new cdparanoia property, device, has been added. * A new dvdnavsrc property, device, has been added. * A new dvdreadsrc property, device, has been added. * A new vcdsrc property, device, has been added. - API depreciations: * A cdparanoia property, location, has been marked for deprecation. * A dvdnavsrc property, location, has been marked for deprecation. * A dvdreadsrc property, location, has been marked for deprecation. * A vcdsrc property, location, has been marked for deprecation.
2004-12-28Update gst-plugins (and all gst-plugins-* packages) to 0.8.6:jmmv3-27/+6
Changes since 0.8.5: * New translation in this release: Norwegian Bokmaal * New translation in this release: Luca Ferretti * new element: polypsink * new element: musepack decoder * alsa fixes * playbin fixes * support for cd://, cdda:// and dv:// uri * v4lsrc fixes * id3demux fixes * avc-based Firewire camera support * speex fixes * tcp fixes * multifdsink improvements * ffmpegcolorspace fixes * chained ogg support Bugs fixed since 0.8.5: * 140994 : [mplex] configure failure * 143961 : MusePack codec support * 144389 : alsasink dies after some time playing * 144436 : opt / oggmux problem (endless interrupt event loop) * 150061 : gstreamer error in rhythmbox: vorbisdec(27925) vorbisdec.... * 150576 : pad v4l2src0:src returned caps that are not a real subset... * 151059 : [sdlvideosink] doesn't implement overlay properly * 151064 : asfdemux crash * 151122 : playing a m4a-file using " spider " doesn't work * 152750 : audioconvert crash * 154781 : [playbin/totem] avi file with just divx video (no audio) ... * 154784 : [playbin/totem] playing avi with 320x240 raw yuv video an... * 154788 : Xv video in another window * 154807 : auparse doesn't error out on invalid files * 154834 : [dvdreadsrc] immediate EOS when specifying a title > 0 * 154903 : cdparanoia plugin doesn't handle URIs * 154967 : [wavenc] missing cast and terminator in gst_event_new_dis... * 155008 : LoTr movie segfaulting with gstreamer+totem * 155223 : memleak in wavparse * 155814 : gst_bin_iterate() gets stuck on some images * 155864 : [oggdemux] regression with files without proper EOS flag * 156372 : gst-plugins fails to build on AMD64 * 156387 : [oggdemux] seeking is off by up to 30 secs (regression) * 156477 : Ogg Vorbis file fails to play. Works with ogg123 * 156488 : Introducing device for alsasink in gconf makes totem crash * 156565 : gst_bin_remove crashes deep down * 156910 : Rhythmbox crash at the end of this song * 157032 : Patch for dispose/finalize functions in gst-plugins * 157281 : crash with totem-gst * 157543 : [rtpgsmparse] missing NULL terminator to gst_caps_new_sim... * 157548 : [vorbisenc] premature and/or missing terminator to gst_ca... * 157632 : C99 style variable initialization(multifilesrc_test.c) * 157964 : smoothwave display warnings when launching gst-register * 157986 : [vorbisdec] fix warning when querying while draining * 158006 : alsasink/rhythmbox don't like each other anymore * 158125 : gstreamer apps have serious issues with 0.8.5.2 plugins & ... * 158221 : Build fix for gstreamer-plugins 0.8.5.3 * 158365 : Fix for playbin hangs * 158375 : fix segfault in mp3 typefinding * 158462 : [dvdreadsrc] invalid reads / is_nav_pack assertion failure * 158832 : pngenc drops GstBuffer extra info (timestamp, length...) * 158976 : [oggdemux] seeking broken again [regression] * 159186 : [PATCH] videorate doesn't handle all colorspaces * 159187 : [PATCH] v4l probes too much and should cache API changes since 0.8.5: - API additions: * A new v4lsrc property, autoprobe-fps, has been added.
2004-11-13When using the SunPro compiler suite, the "cc" compiler understands the C99sketch1-1/+8
__func__ declaration, but the "CC" (C++) compiler does not. The configure script for this package tests for __func__ but only invokes the C frontend, causing failures later as it uses both C and C++ compilers. Explicitly disable this functionality when using SunPro.
2004-11-11Remove a useless C99-isms that cause the build to fail with GCC 2.95.kristerw2-1/+23
2004-10-28Update gst-plugins* to 0.8.5:jmmv4-29/+19
Changes since 0.8.4: * New translation in this release: Oriya * licensing corrections * new element: mngdec * pixel aspect ratio conversion fixes * 64 bit fixes * NEW_MEDIA fixes * ogm support added * matroska fixes * playbin fixes * alsamixer fixes * gnomevfssrc fixes * ogg fixes * multifdsink fixes * multifilesink fixes * qtdemux fixes * avidemux fixes * asfdemux fixes * wavenc fixes * flac fixes * fli/flx fixes * mpeg fixes * speex now actually works Bugs fixed since 0.8.4: * 121809 : [Solaris] Not able to record * 130682 : [alsasink] fails to negotiate with audio decoders * 135407 : [xviddec] shows green frames when decoding packed bitstre... * 140432 : Osssink and alsasink broken on nforce2 (intel8x0) soundcard * 140897 : Incorrect segment duration in files created with matroska... * 140898 : No writing application specified in matroska files create... * 141554 : vorbis in matroska files makes the vorbisdec plugin segfault * 144091 : [Solaris] audio mixer element * 144616 : Infinite loop in wavparse. * 148711 : typefind function for TTA audio files * 148950 : matroskademux doesn't set buffer duration * 148951 : matroskademux misses the tta codec in its codec list * 151232 : [lame] doesn't build with lame-3.90 * 151236 : [v4l] compile failure * 151410 : Memory leaks in multifdsink * 151462 : theora plugin Makefile broken * 151877 : [PATCH] Fix bad casts in ximagesink.c * 151879 : [PATCH] fix bad pointer casts in xvimagesink.c * 151881 : [PATCH] Fix format strings for amd64 in seek.c * 151882 : [PATCH] Fix format string warnings in spider_seek.c * 151883 : [PATCH] fix cdplayer.c warnings on amd64 * 151884 : [PATCH] Fix format string warnings in cdparanoia.c * 151886 : [PATCH] Fix format string warnings in vorbisfile.c * 151887 : [PATCH] Fix format string warnings in player.c * 152102 : wavenc leaks events * 152341 : patch for ivorbis compile failure * 154301 : typefind and rmdemux don't use the same mime type for rea...
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-197/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-01Update gst-plugins to 0.8.4:jmmv3-7/+26
Changes since 0.8.3: * New translation in this release: Albanian * licensing corrections * fixes for compiling with G_DISABLE_ASSERT * pixel aspect ratio conversion fixes * tcpserversink fixes and additions * multifdsink can use poll now as well * interleave fixes * audioscale fixes * videotestsrc fixes * v4lsrc fixes * theoradec, theoraenc fixes * lame fixes * flac fixes * ximagesink, xvimagesink fixes * sunaudio fixes Bugs fixed since 0.8.3: * 135407 : [xviddec] shows green frames when decoding packed bitstre... * 140432 : Osssink and alsasink broken on nforce2 (intel8x0) soundcard * 140897 : Incorrect segment duration in files created with matroska... * 140898 : No writing application specified in matroska files create... * 141554 : vorbis in matroska files makes the vorbisdec plugin segfault * 144091 : [Solaris] audio mixer element * 144616 : Infinite loop in wavparse. * 148711 : typefind function for TTA audio files * 148950 : matroskademux doesn't set buffer duration * 148951 : matroskademux misses the tta codec in its codec list * 151232 : [lame] doesn't build with lame-3.90 * 151236 : [v4l] compile failure * 151410 : Memory leaks in multifdsink * 151462 : theora plugin Makefile broken Changes since 0.8.2: * New translation in this release: Czech * New translation in this release: Hungarian * pixel aspect ratio conversion * tcpserversink fixes and additions * oggdemux fixes * theoraenc and theoradec fixes * ximagesink and xvimagesink fixes * ladspa fixes * videoscale and ffmpegcolorspace fixes for stride * mpeg and dvd fixes * win32 project file additions * new elements: playbin and decodebin * new element: multifdsink * new element: pngdec * new element: alpha * new element: multifilesink Bugs fixed since 0.8.2: * 141906 : hang on removing ximagesink from a pipeline * 142432 : Wrong sink MIME type in shout2send * 143222 : [oggdemux] Optimize tag reading * 143548 : Please update libtool to fix build on arm * 143703 : duration always 0 for some (gst produced) .ogg files * 144624 : wavenc doesn't close file properly * 144753 : libgstinterfaces should be split, or: 'volume' should not... * 144815 : [alsasink] gst_element_set_time_delay() assertion failure... * 144866 : [flac] seeking broken, duration not set on buffers [PATCH] * 144941 : alsasink assertion failure on ctrl+z and fg * 145031 : totem CVS won't compile because of gst-play ... * 145088 : gnome-volume-control has unlocalized volume names. * 145118 : Compile error (gcc 2.95, alsa) * 145336 : pipeline broke-stonecold * 147969 : LADSPA plugin should sanitize the info from the .so's to ... * 148021 : Bug in lib-riff * 148023 : [ximagesink] doesn't work with Xnest * 148043 : audioconvert * 148289 : mad plugin crashes on Sun * 148505 : [level] for silence peak is reported wrongly * 148986 : [lame] bug in negotiation
2004-07-30Remove some C99isms; hopefully fixes build on NetBSD 1.6.2.jmmv2-1/+27
Addresses PR pkg/26479.
2004-07-04Explicitly disable the dirac and kio plugins.jmmv1-1/+3
2004-06-28Update to 0.8.2:jmmv7-62/+33
New features: * Parallel installability with 0.6.x series * Internationalization * New translations in this release: Ukrainian, British * Translations: af az en_GB nl sr sv uk * id3 fixes * asf fixes * qt demux fixes * dv fixes * auparse fixes * wavparse seeking/querying fixes * alsa fixes for mixing and device releasing * categorisation fixes * v4lsrc fixes for webcams * streamheader fixes * Portability fixes * new element: DTS decoder * new element: libvisual * new element: theoraenc * new element: oggmuxer * new element: rawvorbisenc * new elements: audiorate and videorate * new elements: TCP server/client src/sink * new element: pixbufscale * new element: osxaudiosink * new element: sunaudiosink * new element: videomixer * new elements: multipartmux/multipartdemux * new elements: smokeenc/smokedec * new element: vorbisparse Bugs fixed: * 132440 : configure botches DVDNAV_CFLAGS * 133002 : configure should check for dvdnav header * 134007 : [alsasink] assertion failure in alsalib snd_pcm_plug_hw_p... * 135145 : [asfdemux] Can't play randomfile.wma * 135862 : [wavparse] add ADPCM support * 135989 : v4l-conf called even when not present * 136392 : [v4lsrc] buggy wit qc-usb driver * 136572 : [esdsink] blocks other esd apps in PAUSED state * 137711 : [oggdemux] jump or move depends on uninitialised value * 137724 : [qtdemux/ffdec_mpeg4/faad] MPEG-4 video/audio esds atoms * 137750 : Gst-player not able to seek in wav file * 138251 : [mad] Can't play bad1.mp3, bad2.mp3 * 139524 : ogg muxer needed * 139658 : [alsasrc] probes inexistant playback device on capture on... * 140064 : [speed] can't negotiate * 140138 : media file makes totem-gst go nuts * 140265 : ffmpegcolorspace and gnomevfs fail to build buildable * 140268 : ximagesink and xvimagesink do not build under FreeBSD * 140384 : Incorrect library dependency in SDL plugin * 140640 : [asfdemux] segfault * 140668 : gst-plugins-0.8.1 does not compile * 140844 : icecastsend (shout) doesnt even try to connect to server * 140878 : ima adpcm encoded wavs are not supported * 141176 : [mad] Can't play ...Faithfulness.mp3 * 141188 : monoscope plugin doesnt work as intended * 141258 : mp3 file seek problem * 141318 : ffmpegcolorspace doesn't compile on Solaris * 141821 : kdemacros.h * 142044 : m4a typefinds to x-m4a instead of quicktime * 142084 : mad and level plugins dont like each other (caps related ... * 142107 : build error under mdk 10.0 * 142127 : GstPlay's time_tick event does not return the right time ... * 142193 : Patch for plugins Codecs klassifications * 142205 : return type of gst_audio_clock_id_wait_async is wrong * 142211 : alsasink broken due to mixer device * 142262 : shout2send not compiling or working (fix attached) * 142272 : qtdemux doesn't work with sources that cannot seek * 142286 : The au plugin cannot play au files encoded with ulaw * 142320 : [ffmpeg - ima-adpcm-ws/wsaud] scheduler issues * 142493 : default fragment size in osssink is too small * 142507 : [PATCH] id3tag plugin does not correctly set buffer offset * 142555 : wavparse doesn't handle truncated files gracefully * 142566 : Certain mp3s don't get played correctly * 142585 : gstresample makes wrong assumption about buffer sizes (se... * 142586 : alsasink resync is broken * 142664 : v4l2_buffer redeclaration : won't compile with -Werror * 142764 : ogg that caueses error * 142797 : Mac OS X Audio Sink and Src * 142851 : gstid3tag sends wrong offset on discont events * 142954 : [patch] adding a connection problem signal to shout2send * 142962 : Error converting wav file to ogg/vorbis * 143032 : [adder] crash on certain errors * 143130 : [mixmatrix] returns garbage pointer as request pad * 143146 : [patch] gst/tcp plugin doesnt compile on OSX * 143153 : [patch] osxaudio - fix warnings * 143262 : rifflib does not know several fourccs * 143283 : [PATCH] Property accessors for the mixer interface * 143454 : [alsasink] outputs silence on sync problem * 143749 : tcp plugin dosn't compile on FreeBSD * 143861 : OSS elements portability on BSD (soundcard.h location) * 144240 : [cdparanoia] sets wrong timestamps on buffers [patch] * 144425 : Invalid read of size 4in riff-read.c [patch]
2004-06-20Add digest for patch-ae, the patch for the artsd Makefileagc1-1/+2
2004-06-20Add a patch necessary for the forthcoming gst-plugins-artsd package.agc1-0/+16
2004-05-06Very beleatedly switch to use static DESCR files for the multiplejmmv2-7/+1
gst-plugins-* packages. Generating a description during installation is not well supported and causes problems when creating the README files, for example.
2004-04-15Update gst-plugins* to 0.8.1:jmmv6-24/+42
Features of this release * Parallel installability with 0.6.x series * Internationalization * New translations in this release: Swedish, Afrikaans, Azerbeaijani * Translations: af az nl sr sv * Updated to the new core 0.8 subsystems * Reworked play and media-info libraries * Updated osssink: now does probing of possible output properties * Updated qtdemux: fixes for MACE audio * New debug element: quasirandom byte changes * New element: dvddemux * New element: kiosrc, a KIO-slaves source * Fixes to all other elements, including level, videodrop, gnomevfssrc, speex, *law, mpeg2dec, adder, a52dec, oggdemux, matroska, mad, v4l2, cacasink * Portability fixes * ChangeLog use * Coding style consistency * Various memleak and buffer overflow fixes Bugs fixed in this release * 120883 : osssink advertises more rates than it handles * 125732 : v4l2src don't support all YUV formats * 134301 : gst-plugins should depend on X * 135919 : Mandrake 10 * 136477 : [PATCH] gst-launch-ext does not support .mov * 136527 : gdk_pixbuf makefile tried to execute targets contrains in... * 137348 : media-info .pc file lacks a 'Version:' line * 137448 : mpegaudioparse: crash (bus error) * 137504 : mpeg2dec fails on 422 encoded material * 137556 : Ogg Vorbis playback has poor spatialization * 137588 : ffmpegcolorspace gives critical when it should throw error * 137722 : Quicktime audio parsing is broken * 138105 : [mpeg1videoparse] Hangs while decoding everest.m1v * 138168 : id3tag using gst_event_new_discontinuous incorrectly? * 138169 : matroska-demux using gst_event_new_discontinuous without ... * 138635 : two GLib-GObject-CRITICAL Messages when running gst-regis... * 138846 : all of the ladspa-wrapped source-plugins fail to go to pl... * 138914 : gstgdkanimation.h is missing from gst-plugins-0.8.0 * 139034 : Non-standard test(1) operator used in configure script * 139035 : Non-standard regex used as libtool argument * 139382 : mad decoder can resync wrongly after seek and does explic... * 139532 : gstcolorspace crashes when after v4lsrc (ffmpegcolorspace... * 139926 : id3tag's caps cause it to be plugged more than once by sp... * 139958 : Leak in avidemux * 140058 : [msmpeg4] file with broken qscale/header does not play
2004-04-15Make this build in FreeBSD, patches stolen from FreeBSD/ports.xtraeme3-1/+27
2004-04-07Drop dynamic generation of DESCR files for gst-plugins-* packages, as itjmmv2-6/+4
broke 'make index' (pointed out by wiz@). This also lets us write more interesting and easier to find descriptions for packages.
2004-04-06Enable X11 support by default; unfortunately, it can't be built as anjmmv3-7/+25
independent plugin. (Let's go with the previous revision bump).
2004-04-06Update to 0.8.0nb2:jmmv7-162/+179
- Do not install nor build any plugins that require external libraries. This keeps this package small, makes it modular and will avoid the need of "fee-based-commercial-use" licenses while building GNOME. - Split the Makefile and make it easy to create packages for individual plugins by using Makefile.common. - Use gstreamer/plugins.mk to automatically register installed plugins in the plugins database. - Fix the regex used to export symbols to something that matches better the original one. - As a result of the update of gstreamer to 0.8.0nb1 (which requires a glib2 with the RTLD_GLOBAL fix), plugins work fine now.
2004-04-03Fix a regexp passed to libtool to let it work with our native grep...jmmv3-2/+17
This allows the plugins to export symbols properly.
2004-04-03We need a png pkgconfig file, so require at least png-1.2.5nb3.rh1-1/+2
2004-04-03Do not try to remove share/gconf/schemas.jmmv1-2/+2
2004-04-01Update to 0.8.0:jmmv10-493/+418
Bugs fixed since 0.7.6: * 126999 : [API]: "gstreamer-libs-0.7.pc" should be renamed * 129299 : complied errors in alsa-lib-1.0.0-0.rc2 * 131270 : pkg-config-ification patch (alsa, esd, shout2, ogg, speex, . * 135921 : speexenc support won't compile with 1.1.x * 136590 : mod plugins doesn't work atm * 137044 : GConf schemas unreadable Changes since 0.7.5: * uses 0.8 as the major/minor number * dist fixes for generated files * MPEG video playback fixed * error call fixes * videodrop fixes * alsa oss emulation mixer fixes * audioconvert fixes * gconf versioning fixes * mad xing header fixes * vorbisdec fixes * mad leak and stream reporting fixes * media-info fixed * buffer leak fixes * osssink timing fixes * NAS fixes * cdparanoia error Bugs fixed since 0.7.5: * 114560 : rfc2250enc produces empty buffers * 122279 : goom's first timestamp is broken * 131128 : aasink and sdlvideosink are broken * 133541 : int2float and int2floatnew conflict should be resolved * 133783 : remove deprecated plugins * 135597 : make gstosselement properly deal with symlinks * 136334 : udpsrc pads / caps error Changes since 0.7.4: * Compatible with gstreamer 0.7.5 * ffmpeg plugin moved to gst-ffmpeg module * DV fixes * mikmod fixes * OSX build fixes * jpeg fixes * gdk_pixbuf fixes * automake 1.8 underquotedness fixes * rfb server/port addition * colorspace fixes * liboil usage in videofilter and videotestsrc * better LADSPA classification * ALSA xrun recovery fixes * switch fixes * xvimagesink fixes * moved out MAS sink * experimental xine lib plugin * intfloat and oneton removed in favour of audioconvert and interleave * only export gst_* from plugins * lame tag writing fixed * added reporting of codecs used * version gconf schemas and install locations * qtdemux fixes * gamma correction fixes Bugs fixed since 0.7.4: * 129740 : MP4/M4A files not recognized properly * 130507 : Silence/sine don't have a sync property * 131050 : avi-demux plays audio, but funky colors as video * 131534 : jhbuild build failure with Debian sid * 131948 : xoverlay and gstplay sample fails to build - missing include * 133219 : missing include in ./gst/effectv/gstedge.c * 133316 : gst/vbidec/vbiscreen missing cast * 133410 : gstid3tag doesnt handle track-count * 133508 : [oggdemux] Can't play files with multiple streams * 133528 : sincesrc seems not to register its dparams correctly * 133562 : Build breaks on dvdec * 133663 : ext/ladspa categorises all plugins as Filter/Effect * 133886 : libtool error while compiling alsamixer plug-in * 134255 : vbidec won't compile * 134318 : GConf schemas should be in versioned files, and install in v * 134322 : gst/intfloat/gstint2float.c forgets to include "inttypes.h" * 134612 : ext/gdk_pixbuf/Makefile: error in target install-loaderLTLIB * 134750 : Problem building gst-plugins on Solaris * 134894 : vorbisdec signals tags with bitrate < 1 (ie not set) * 135038 : port gst-shorten to the new caps system * 135042 : fix tag writing in lame * 135116 : gstflacenc.c fails to build in NetBSD
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz2-3/+4
Buildlink files: RECOMMENDED version changed to current version.