New Waf version.
[vapoursynth-svn.git] / ChangeLog
blobe8f1a7806380e6a6ab08659f8610ac102fa898ce
1 known issues:
2 may deadlock with some avisynth plugins (set the number of threads to a bigger number)
3 compatrgb32 may be flipped when output (use FlipVertical as a workaround)
4 reopening .vpy files in vfw may leak a little bit of memory
6 r19:
7 now ignores functions with . in their argument string for avisynth compatibility, this makes warpsharp mostly compatible
9 r18:
10 the installer no longer asks for the installation type since there's only one option anyway
11 vdecimate now returns and decimates the frames in the last incomplete cycle as well
12 fixed a bug that prevented mask scaling from working in MaskedMerge
13 fixed a bug in VSFS that made the module crash on script errors, the full error message is now reported in a log file just like AVFS
14 improved the error message when the last variable hasn't been set in a script
15 changed default interleave behavior to match avisynth, the old and in some cases desirable behavior can be selected with the extend argument
16 added color argument to addborders
17 fixed addborders for formats with over 8 bits per sample
18 blankclip can now produce float clips
19 fixed/at least greatly reduced the big memory leak when reopening a script through vfw
21 r17:
22 the installer will now register and unregister the vsfs dll if selected (pismo file mount must of course be installed at the time for it to work)
23 cleaned up the asm in the transpose filter
24 fixed python detection in the installer if it was installed for a single user
25 vdecimate can now accept up to 16 bit integer input and all color formats (jackoneill)
26 fixed a bug that made the array for storing metrics uninitialized at the end in vdecimate leading to random decisions (jackoneill)
27 added an inappropriately named subtitle filter based on libass (lachs0r)
28 EEDI3 has now been changed into pure C (jackoneill)
29 it is now possible to have the warning/error messages handled by a user specified callback function
30 added a check for the SSE state so plugins cannot modify it without it being noticed (similar to the FPU and MMX checks)
31 fixed that two plugins could be loaded into the same namespace
32 fixed some issues with argument handling in python due to exceptions not being propagated properly
33 added the Expr filter, it can evaluate an expression per pixel during runtime for 1-3 input clips
34 fixed a clip reference leak introduced in R15 with the multiple clip output changes
35 fixed AVISource crashes due to RGB output not being properly initialized
36 fixed the upper memory limit check
37 fixed callback functions hanging in vfw and vsfs
38 changed the license of all files to LGPL, previously a few of them were MIT licensed
40 r16:
41 fixed a MaskedMerge reference leak under some rare conditions
42 added a check for CPU features on x86, will now return an error if SSE2 isn't present
43 fixed an issue in avisynth compatibility caused by stricter internal checks
45 r15:
46 documented all the predefined frame properties and all important python classes
47 fixed iterating over clips in python
48 allocate memory per plane instead of in one big lump, this allows planes to be copied by reference using the newVideoFrame2() function and will also reduce memory usage slightly for filters that use it
49 fixed infinite loop in lut and lut2 when used with 9 bit input or more 
50 added ClipToProp and PropToClip functions, they allow one clip to be attached to another clip as frame properties
51 fixed a reference leak in vivtc
52 ported avisource from avisynth, it has been thoroughly upgraded and can understand several high bitdepth formats including v210 which many "professional" codecs use, it is also based on the latest vdub parser code now
53 added len() support for clips in python
54 fixed a bug with plugin functions having array output in python
55 improved the api so that a single node/filter can produce several output clips, this bumps the api version to r3 (r2 plugins are still binary compatible but the r2 abi will also be removed in a version or two)
57 r14:
58 fixed setting the pixel values in blankclip
59 a collection of ported/new filters are now bundled (eedi3, vivtc, histogram and temporalsoften)
60 all examples and headers needed to write a new filter are now included in the installer
61 fixed a frame data alignment issue in VSFS
62 added vivtc (aka tivtc lite) to the included filters
63 the fpu state check now only outputs a warning instead of terminating (this is until I've been able to locate why certain people trigger it)
64 users can now set the cache size limit over which vs aggressively starts to decrease cache size, use core.set_max_cache_size(number of MB) (the memory use is calculated from the combined size of all framebuffers allocated)
65 fixed memory leaks in PlaneDifference and PlaneAverage
67 r13:
68 enabled another part of the cache size adjustment, cache sizes will now be aggressively reduced to keep framebuffer memory use below 1GB
69 filters can now get passed zero length arrays, the rewritten parts also improves argument handling in python (integer types now get converted to float implicitly when passed as a function argument)
70 added right click\new\vapoursynth script shortcut to the installer
71 make the number of frames in progress equal the number of threads, this should always be the upper beneficial value for any script, previously it was fixed at 10
72 fixed a rowsize bug in avisynth compatibility and implemented the subframe functions
73 added PEMVerify, a function to check for out of bounds values in filter output for developers
74 added PlaneDifference and PlaneAverage functions for use in conditional filtering
75 added copy(), and get_write_ptr() to clips in python, renamed get_data() to get_read_ptr()
76 greatly improved the handling of SelectClip and ModifyFrame (formerly ModifyProps), conditional filtering is now something that's usable
77 using ModifyFrame and a bit of cleverness it is now possible to implement fairly complex filters in python
79 r12:
80 fixed a scheduling error for fmParallelRequests filters (all avisynth filters and several internal ones)
81 added a bit more documentation, this time a bit about python and the classes found there
82 added vsfs, a port of avfs
83 v210 output support, add enable_v210=True to use it
84 removed support for clips with unknown length from vfw
85 can now open files with unicode filenames in vfw
86 fixed some minor bugs and compiler warnings
88 r11:
89 switched the precompiled module to python 3.3
90 vfw now also has several frame requests going at once, this should make the throughput get close to clip.output()
91 vfw now returns some colorful bars on error because refusing to open crashes too many applications
92 vfw now has support for the P010, P016, P210, P216 formats, tested in mpc-hc with madvr
93 removed some stray debug prints
95 r10:
96 fixed an issue where python could deadlock on the GIL
97 now comes in an installer
98 added a skeleton filter and a heavily commented invert example filter to the sdk dir
99 added a vfw module
100 fixed slicing/indexing in python module
101 list_functions() can now be used on a namespace (core.resize.list_functions())
102 improved and documented build system, see INSTALL
103 other small fixes relating to the python bindings
106 to get around keyword conflicts all function arguments names can be specified with both name and _name (Loop(_clip=a) is the same as Loop(clip=a))
107 works under linux and probably osx too
108 full source released under LGPL
109 it is now possible to use + to splice clips and the slicing operator to perform Trim, Reverse and SelectEvery operations on a clip
110 documentation of all user functions
111 lots of included filter fixes
112 minor fixes to other things
115 portability fixes for linux
116 minor api additions to make filters that consume 20+ input frames/scan a whole clip feasible
117 added cpu state checks after filter calls
118 added a function type, plugins may now take a python function and evaluate it for every frame
119 implemented the final planned standard functions (transpose, croprel, clipselect, modifyprops)
120 fixed the huge memory leak in cropabs
121 other small fixes
124 includes the source for all of the std functions and the header needed to write plugins (more source coming soon)
125 unnamed arguments are now accepted
126 y4m headers now specify the colorspace for all yuv formats and gives an error when used with non-yuv
127 added a new B tag to y4m output that specifies the number of bits per sample (B8/B10/B16)
128 more minor fixes
131 now drops all crop calls to env->invoke(), fixes dgdecode compatibility but you have to crop yourself now
132 all 64bit issues fixed
133 added several checks to prevent the compat formats from being used by new filters
134 minor fixes and extra checks for everything
137 more python output fixes
138 added accept_lowercase as a setting for the core constructor
139 python module refinement, now all objects have a string representation with more information
140 other minor fixes
143 fixed the bad frame output from the python module
144 added a callback to the output function so progress can be reported
145 ported ffms2
146 raw frame data can be accessed from python
149 fixes even more threading and performance issues
150 adds special support for yuy2 and rgb32 so most avisynth filters should work
151 added hacks to make mvtools2 work
154 fixes a large number of threading issues
155 removed the stupid clip.vi.width thing in python, now it's simply clip.width
156 fixed the frame reordering in the python bindings, now frames pop out in the expected order
159 buggy first version