diff options
author | mycroft <mycroft@pkgsrc.org> | 2004-03-28 20:09:07 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 2004-03-28 20:09:07 +0000 |
commit | 22c2ffb32843fb1c726a9375f09f265ba9c7e556 (patch) | |
tree | a3dc0700747fed46d303e42e4de3efea850c97ad /graphics/transcode/patches/patch-af | |
parent | 05021a2926b4ccd1e598926498048d9e0ed645a0 (diff) | |
download | pkgsrc-22c2ffb32843fb1c726a9375f09f265ba9c7e556.tar.gz |
Update to 0.6.12. Main improvements`are AVI 2.0 support, new filters, and
improved support for newer xvidcore. Also fixed a threading problem that
would often cause transcode to core dump right before exiting.
transcode-0.6.12
Changes:
o tccat: use '-T 1,-1 -P' instead of '-P 1'.
o --avi_limit option: Defaults to 0 (disabled) instead of 2GB.
Fixes:
o avilib: 64bit issues and other compiler support.
o v4l: building with linux-2.6 headers.
o xvid import: check for more library sonames.
o dvd import: The DVD device may be a char device (osx).
o im import: segmentation fault at closing time.
o tcrequant: upstream bugfixes.
o xvid import: fix library loading on MacOSX.
o dv import: Do NOT apply a setup when decoding the DV frame. Last
frame was skipped in NTSC.
o yuv4mpeg import: read files produced by streamer.
o -c option: rounding error, only 99 frames of 100 for NTSC.
o make distcheck: correct inclusion of config.h file.
o libavcodec: building without mmx.
o maintaining: included sdl.m4 and glib.m4 in acinclude.m4
New:
o avilib: Writing AVI 2.0 (OpenDML) files.
xine (with my submitted patch) plays such files nicely.
o denoise3d filter: very fast denoiser.
o fraps import: decode AVI files from www.fraps.com.
o v4l2: reading from a video4linux2 device.
o control filter: read and executes a control "script"
o ffmpeg import: DV raw decoding support (-i file.dv -x ffmpeg).
o sh import: executes the input file and reads its output.
o mp1e export: module based on mp1e, a mpeg1 encoder.
o os: Support for AMDs x86_64 architecture.
o --export_par option: sets the pixel/sample aspect ratio.
o script: bash completion for transcode with tccomplete.source.
o docs: layout fixes so it will look good on www.transcoding.org
o ffmpeg export: new codecs namely ffv1, asv1 and asv2.
o --export_prof option: sets mpeg "profiles" so that transcode
tries can be smart and guess clipping and zooming options.
o docs: DV to DVD HOWTO including scripts.
Improved:
o xvid4 export: synced with xvidcore-beta3. Please upgrade to this
release and also update your xvid4.cfg. New xvid4conf is available.
o pp filter: included postprocess code into transcode.
o im export: use -w to set quality.
o dvd import: support for non-continuus chapters.
o avilib: Support for files with multiple RIFF chunks and no index.
o vnc import: now respects the --dvd_access_delay setting. Pass
additional paramters down to vncrec by -x vnc="-arg1 -arg2".
o mjpeg export: compatibility with Apples quicktime player.
o probing: improved detection of MP3/MP2 files.
o libavcodec: Updated included lavc to 4695.
o aviindex: keyframe detection by analyzing the content of frames.
o subtitler filter: Update to upstream version 0.8.4
o pv filter: updated docs and YUV422 support.
o ivtc filter: new magic and field parameters.
o mov export: new codecs and colorspaces.
Diffstat (limited to 'graphics/transcode/patches/patch-af')
-rw-r--r-- | graphics/transcode/patches/patch-af | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/graphics/transcode/patches/patch-af b/graphics/transcode/patches/patch-af index 3cce9549b98..ec876669f70 100644 --- a/graphics/transcode/patches/patch-af +++ b/graphics/transcode/patches/patch-af @@ -1,22 +1,13 @@ -$NetBSD: patch-af,v 1.1.1.1 2003/06/23 07:09:32 mrg Exp $ +$NetBSD: patch-af,v 1.2 2004/03/28 20:09:07 mycroft Exp $ -diff -rcp import/import_xvid.c import/import_xvid.c -*** import/import_xvid.c Fri May 2 16:28:05 2003 ---- import/import_xvid.c Mon Jun 9 17:47:11 2003 -*************** static int x_dim, y_dim; -*** 65,71 **** - #define MODULE1 "libxvidcore.so" - - static int xvid2_init(char *path) { -! #ifdef __FreeBSD__ - const - #endif - char *error; ---- 65,71 ---- - #define MODULE1 "libxvidcore.so" - - static int xvid2_init(char *path) { -! #if defined(__FreeBSD__) || defined(__NetBSD__) - const - #endif - char *error; +--- import/import_xvid.c 2004-03-26 19:12:32.000000000 +0000 ++++ import/import_xvid.c 2004-03-26 19:12:42.000000000 +0000 +@@ -67,7 +67,7 @@ + #define XVID_SHARED_LIB_NAME "libxvidcore.so" + + static int xvid2_init(char *path) { +-#if defined(__FreeBSD__) || defined(__APPLE__) ++#if defined(__FreeBSD__) || defined(__APPLE__) || defined(__NetBSD__) + const + #endif + char *error; |