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