Remove now-unneeded Cython ignores.
[vapoursynth-svn.git] / ChangeLog
blob0297d438a074ab98fa51fe62c56d814431867054
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 added proper const declarations now that cython supports it, cython 0.18 or later required to build the extension now
8 fixed get_write_ptr() in python to actually return a write pointer
9 fixed the lut and lut2 filters for > 8 bit formats (ADub)
10 various minor fixes to vivtc
11 removed clip.output() since it's a bad design decision, now a command-line program called vspipe can be used to pipe or write raw video output
12 renamed newMap() to createMap() to match the naming of all other functions
13 list_functions() renamed to get_plugins() for the core and get_functions() for namespaces, it also returns a dict instead of a string now
14 removed the unmentioned and unused link option for filter arguments as it is completely pointless and similar functionality may be implemented anyway
15 there's now a sane external api available for embedding in other applications, see vsscript.h and vsvfw for an example
16 now a singleton pattern is used for the core in python scripts, use vs.get_core() to get a reference to it
17 clip.get_frame() now throws an exception when out of bounds frames are requested
18 fixes a reference leak in the VideoProps python class
19 now ignores functions with . in their argument string for avisynth compatibility, this makes warpsharp mostly compatible
21 r18:
22 the installer no longer asks for the installation type since there's only one option anyway
23 vdecimate now returns and decimates the frames in the last incomplete cycle as well
24 fixed a bug that prevented mask scaling from working in MaskedMerge
25 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
26 improved the error message when the last variable hasn't been set in a script
27 changed default interleave behavior to match avisynth, the old and in some cases desirable behavior can be selected with the extend argument
28 added color argument to addborders
29 fixed addborders for formats with over 8 bits per sample
30 blankclip can now produce float clips
31 fixed/at least greatly reduced the big memory leak when reopening a script through vfw
33 r17:
34 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)
35 cleaned up the asm in the transpose filter
36 fixed python detection in the installer if it was installed for a single user
37 vdecimate can now accept up to 16 bit integer input and all color formats (jackoneill)
38 fixed a bug that made the array for storing metrics uninitialized at the end in vdecimate leading to random decisions (jackoneill)
39 added an inappropriately named subtitle filter based on libass (lachs0r)
40 EEDI3 has now been changed into pure C (jackoneill)
41 it is now possible to have the warning/error messages handled by a user specified callback function
42 added a check for the SSE state so plugins cannot modify it without it being noticed (similar to the FPU and MMX checks)
43 fixed that two plugins could be loaded into the same namespace
44 fixed some issues with argument handling in python due to exceptions not being propagated properly
45 added the Expr filter, it can evaluate an expression per pixel during runtime for 1-3 input clips
46 fixed a clip reference leak introduced in R15 with the multiple clip output changes
47 fixed AVISource crashes due to RGB output not being properly initialized
48 fixed the upper memory limit check
49 fixed callback functions hanging in vfw and vsfs
50 changed the license of all files to LGPL, previously a few of them were MIT licensed
52 r16:
53 fixed a MaskedMerge reference leak under some rare conditions
54 added a check for CPU features on x86, will now return an error if SSE2 isn't present
55 fixed an issue in avisynth compatibility caused by stricter internal checks
57 r15:
58 documented all the predefined frame properties and all important python classes
59 fixed iterating over clips in python
60 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
61 fixed infinite loop in lut and lut2 when used with 9 bit input or more 
62 added ClipToProp and PropToClip functions, they allow one clip to be attached to another clip as frame properties
63 fixed a reference leak in vivtc
64 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
65 added len() support for clips in python
66 fixed a bug with plugin functions having array output in python
67 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)
69 r14:
70 fixed setting the pixel values in blankclip
71 a collection of ported/new filters are now bundled (eedi3, vivtc, histogram and temporalsoften)
72 all examples and headers needed to write a new filter are now included in the installer
73 fixed a frame data alignment issue in VSFS
74 added vivtc (aka tivtc lite) to the included filters
75 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)
76 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)
77 fixed memory leaks in PlaneDifference and PlaneAverage
79 r13:
80 enabled another part of the cache size adjustment, cache sizes will now be aggressively reduced to keep framebuffer memory use below 1GB
81 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)
82 added right click\new\vapoursynth script shortcut to the installer
83 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
84 fixed a rowsize bug in avisynth compatibility and implemented the subframe functions
85 added PEMVerify, a function to check for out of bounds values in filter output for developers
86 added PlaneDifference and PlaneAverage functions for use in conditional filtering
87 added copy(), and get_write_ptr() to clips in python, renamed get_data() to get_read_ptr()
88 greatly improved the handling of SelectClip and ModifyFrame (formerly ModifyProps), conditional filtering is now something that's usable
89 using ModifyFrame and a bit of cleverness it is now possible to implement fairly complex filters in python
91 r12:
92 fixed a scheduling error for fmParallelRequests filters (all avisynth filters and several internal ones)
93 added a bit more documentation, this time a bit about python and the classes found there
94 added vsfs, a port of avfs
95 v210 output support, add enable_v210=True to use it
96 removed support for clips with unknown length from vfw
97 can now open files with unicode filenames in vfw
98 fixed some minor bugs and compiler warnings
100 r11:
101 switched the precompiled module to python 3.3
102 vfw now also has several frame requests going at once, this should make the throughput get close to clip.output()
103 vfw now returns some colorful bars on error because refusing to open crashes too many applications
104 vfw now has support for the P010, P016, P210, P216 formats, tested in mpc-hc with madvr
105 removed some stray debug prints
107 r10:
108 fixed an issue where python could deadlock on the GIL
109 now comes in an installer
110 added a skeleton filter and a heavily commented invert example filter to the sdk dir
111 added a vfw module
112 fixed slicing/indexing in python module
113 list_functions() can now be used on a namespace (core.resize.list_functions())
114 improved and documented build system, see INSTALL
115 other small fixes relating to the python bindings
118 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))
119 works under linux and probably osx too
120 full source released under LGPL
121 it is now possible to use + to splice clips and the slicing operator to perform Trim, Reverse and SelectEvery operations on a clip
122 documentation of all user functions
123 lots of included filter fixes
124 minor fixes to other things
127 portability fixes for linux
128 minor api additions to make filters that consume 20+ input frames/scan a whole clip feasible
129 added cpu state checks after filter calls
130 added a function type, plugins may now take a python function and evaluate it for every frame
131 implemented the final planned standard functions (transpose, croprel, clipselect, modifyprops)
132 fixed the huge memory leak in cropabs
133 other small fixes
136 includes the source for all of the std functions and the header needed to write plugins (more source coming soon)
137 unnamed arguments are now accepted
138 y4m headers now specify the colorspace for all yuv formats and gives an error when used with non-yuv
139 added a new B tag to y4m output that specifies the number of bits per sample (B8/B10/B16)
140 more minor fixes
143 now drops all crop calls to env->invoke(), fixes dgdecode compatibility but you have to crop yourself now
144 all 64bit issues fixed
145 added several checks to prevent the compat formats from being used by new filters
146 minor fixes and extra checks for everything
149 more python output fixes
150 added accept_lowercase as a setting for the core constructor
151 python module refinement, now all objects have a string representation with more information
152 other minor fixes
155 fixed the bad frame output from the python module
156 added a callback to the output function so progress can be reported
157 ported ffms2
158 raw frame data can be accessed from python
161 fixes even more threading and performance issues
162 adds special support for yuy2 and rgb32 so most avisynth filters should work
163 added hacks to make mvtools2 work
166 fixes a large number of threading issues
167 removed the stupid clip.vi.width thing in python, now it's simply clip.width
168 fixed the frame reordering in the python bindings, now frames pop out in the expected order
171 buggy first version