Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-12correct fsf addressCampbell Barton
2010-01-31Fix compile error in qtkit_export.m on mac.Brecht Van Lommel
2010-01-27support for #'s for output animation pathsCampbell Barton
This was supported... image: /tmp/foo_###_bar --> /tmp/foo_001_bar.png But not this... anim: /tmp/foo_###_bar --> /tmp/foo_001_250_bar.avi
2010-01-08Fix quicktime QtKit compile issueDamien Plisson
2009-12-22Attempt to fix compilation of quicktime after reporting changesBrecht Van Lommel
(can't build this file myself, only qtkit seems to work here).
2009-12-22Reports: writing movies now uses the reports mechanism to throw errors.Brecht Van Lommel
Also fixes bug #19463: screencast to xvid ffmpeg crash.
2009-12-03QTkit : update build checks to allow only 10.5+/64bit buildsDamien Plisson
Other SDK versions do not handle correctly QTKit movie creation in a background thread. Carbon quicktime should be used for the 32bit builds (USE_QTKIT = 0)
2009-12-02Quicktime : make dna codecType data store the quicktime codecType value ↵Damien Plisson
instead of a proxy value Quicktime codecType data is a 32 bit value (4 chars coded). Implemented RNA set/get functions for codecType enum to cope with RNA enum values 24bit precision limitation Implemented dynamic codecType enum list creation Carbon quicktime now stores codec settings in "clear" in the QuicktimeCodecSettings dna struct (in addition to the closed atom container in QuicktimeCodecData) to be compatible with the QTKit version +fixed some warnings
2009-11-28qtkit : improve thread safety, enforce build on OSX 10.5+Damien Plisson
qtkit movie creation functions can be started in a worker thread only from OSX 10.5
2009-11-20Quicktime-qtkit : encoding settings now in blender ui (encoding panel)Damien Plisson
- added "QuicktimeCodecSettings" struct in DNA - old "QuicktimeCodecData" opaque struct is nowdeprecated (read only use when QuicktimeCodecSettings is not set) - fixed small bug when importing deep color movies Note that you may need Final Cut Pro installed to be able to use the DVCPRO HD codecs
2009-11-18Quicktime-cocoa : fix file busy issue when rendering a second time with ↵Damien Plisson
quicktime export
2009-11-18SVN maintenance.Guillermo S. Romero
2009-11-18Quicktime for Cocoa : export partDamien Plisson
Following the quicktime import port, here is the movie export feature. The codec selection remains to be implemented in the ui (render panel). So the settings are now blocked on codec=jpeg, quality=max.
2009-11-18Quicktime for Cocoa : import partDamien Plisson
This makes quicktime import (.mov & quicktime handled image files such as .gif) available also for 64bit OSX Unfortunately, Apple currently incomplete implementation of QTKit has much lower performance than old Carbon Quicktime. FYI, it spawns a 32bit process "QTKitserver" to place calls to Quicktime 7. So this is mostly meant as a "backup" for 64bit OSX builds, until Apple releases full Quicktime X. Export part will come just after. CMake scripts updated: set WITH_QUICKTIME and USE_QTKIT to ON