CHANGELOG 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. 2016-07-20 v1.6.0 "Khaki Campbell Duck"
  2. This release improves upon the VP9 encoder and speeds up the encoding and
  3. decoding processes.
  4. - Upgrading:
  5. This release is ABI incompatible with 1.5.0 due to a new 'color_range' enum
  6. in vpx_image and some minor changes to the VP8_COMP structure.
  7. The default key frame interval for VP9 has changed from 128 to 9999.
  8. - Enhancement:
  9. A core focus has been performance for low end Intel processors. SSSE3
  10. instructions such as 'pshufb' have been avoided and instructions have been
  11. reordered to better accommodate the more constrained pipelines.
  12. As a result, devices based on Celeron processors have seen substantial
  13. decoding improvements. From Indian Runner Duck to Javan Whistling Duck,
  14. decoding speed improved between 10 and 30%. Between Javan Whistling Duck
  15. and Khaki Campbell Duck, it improved another 10 to 15%.
  16. While Celeron benefited most, Core-i5 also improved 5% and 10% between the
  17. respective releases.
  18. Realtime performance for WebRTC for both speed and quality has received a
  19. lot of attention.
  20. - Bug Fixes:
  21. A number of fuzzing issues, found variously by Mozilla, Chromium and others,
  22. have been fixed and we strongly recommend updating.
  23. 2015-11-09 v1.5.0 "Javan Whistling Duck"
  24. This release improves upon the VP9 encoder and speeds up the encoding and
  25. decoding processes.
  26. - Upgrading:
  27. This release is ABI incompatible with 1.4.0. It drops deprecated VP8
  28. controls and adds a variety of VP9 controls for testing.
  29. The vpxenc utility now prefers VP9 by default.
  30. - Enhancements:
  31. Faster VP9 encoding and decoding
  32. Smaller library size by combining functions used by VP8 and VP9
  33. - Bug Fixes:
  34. A variety of fuzzing issues
  35. 2015-04-03 v1.4.0 "Indian Runner Duck"
  36. This release includes significant improvements to the VP9 codec.
  37. - Upgrading:
  38. This release is ABI incompatible with 1.3.0. It drops the compatibility
  39. layer, requiring VPX_IMG_FMT_* instead of IMG_FMT_*, and adds several codec
  40. controls for VP9.
  41. - Enhancements:
  42. Faster VP9 encoding and decoding
  43. Multithreaded VP9 decoding (tile and frame-based)
  44. Multithreaded VP9 encoding - on by default
  45. YUV 4:2:2 and 4:4:4 support in VP9
  46. 10 and 12bit support in VP9
  47. 64bit ARM support by replacing ARM assembly with intrinsics
  48. - Bug Fixes:
  49. Fixes a VP9 bitstream issue in Profile 1. This only affected non-YUV 4:2:0
  50. files.
  51. - Known Issues:
  52. Frame Parallel decoding fails for segmented and non-420 files.
  53. 2013-11-15 v1.3.0 "Forest"
  54. This release introduces the VP9 codec in a backward-compatible way.
  55. All existing users of VP8 can continue to use the library without
  56. modification. However, some VP8 options do not map to VP9 in the same manner.
  57. The VP9 encoder in this release is not feature complete. Users interested in
  58. the encoder are advised to use the git master branch and discuss issues on
  59. libvpx mailing lists.
  60. - Upgrading:
  61. This release is ABI and API compatible with Duclair (v1.0.0). Users
  62. of older releases should refer to the Upgrading notes in this document
  63. for that release.
  64. - Enhancements:
  65. Get rid of bashisms in the main build scripts
  66. Added usage info on command line options
  67. Add lossless compression mode
  68. Dll build of libvpx
  69. Add additional Mac OS X targets: 10.7, 10.8 and 10.9 (darwin11-13)
  70. Add option to disable documentation
  71. configure: add --enable-external-build support
  72. make: support V=1 as short form of verbose=yes
  73. configure: support mingw-w64
  74. configure: support hardfloat armv7 CHOSTS
  75. configure: add support for android x86
  76. Add estimated completion time to vpxenc
  77. Don't exit on decode errors in vpxenc
  78. vpxenc: support scaling prior to encoding
  79. vpxdec: support scaling output
  80. vpxenc: improve progress indicators with --skip
  81. msvs: Don't link to winmm.lib
  82. Add a new script for producing vcxproj files
  83. Produce Visual Studio 10 and 11 project files
  84. Produce Windows Phone project files
  85. msvs-build: use msbuild for vs >= 2005
  86. configure: default configure log to config.log
  87. Add encoding option --static-thresh
  88. - Speed:
  89. Miscellaneous speed optimizations for VP8 and VP9.
  90. - Quality:
  91. In general, quality is consistent with the Eider release.
  92. - Bug Fixes:
  93. This release represents approximately a year of engineering effort,
  94. and contains multiple bug fixes. Please refer to git history for details.
  95. 2012-12-21 v1.2.0
  96. This release acts as a checkpoint for a large amount of internal refactoring
  97. and testing. It also contains a number of small bugfixes, so all users are
  98. encouraged to upgrade.
  99. - Upgrading:
  100. This release is ABI and API compatible with Duclair (v1.0.0). Users
  101. of older releases should refer to the Upgrading notes in this
  102. document for that release.
  103. - Enhancements:
  104. VP8 optimizations for MIPS dspr2
  105. vpxenc: add -quiet option
  106. - Speed:
  107. Encoder and decoder speed is consistent with the Eider release.
  108. - Quality:
  109. In general, quality is consistent with the Eider release.
  110. Minor tweaks to ARNR filtering
  111. Minor improvements to real time encoding with multiple temporal layers
  112. - Bug Fixes:
  113. Fixes multithreaded encoder race condition in loopfilter
  114. Fixes multi-resolution threaded encoding
  115. Fix potential encoder dead-lock after picture resize
  116. 2012-05-09 v1.1.0 "Eider"
  117. This introduces a number of enhancements, mostly focused on real-time
  118. encoding. In addition, it fixes a decoder bug (first introduced in
  119. Duclair) so all users of that release are encouraged to upgrade.
  120. - Upgrading:
  121. This release is ABI and API compatible with Duclair (v1.0.0). Users
  122. of older releases should refer to the Upgrading notes in this
  123. document for that release.
  124. This release introduces a new temporal denoiser, controlled by the
  125. VP8E_SET_NOISE_SENSITIVITY control. The temporal denoiser does not
  126. currently take a strength parameter, so the control is effectively
  127. a boolean - zero (off) or non-zero (on). For compatibility with
  128. existing applications, the values accepted are the same as those
  129. for the spatial denoiser (0-6). The temporal denoiser is enabled
  130. by default, and the older spatial denoiser may be restored by
  131. configuring with --disable-temporal-denoising. The temporal denoiser
  132. is more computationally intensive than the spatial one.
  133. This release removes support for a legacy, decode only API that was
  134. supported, but deprecated, at the initial release of libvpx
  135. (v0.9.0). This is not expected to have any impact. If you are
  136. impacted, you can apply a reversion to commit 2bf8fb58 locally.
  137. Please update to the latest libvpx API if you are affected.
  138. - Enhancements:
  139. Adds a motion compensated temporal denoiser to the encoder, which
  140. gives higher quality than the older spatial denoiser. (See above
  141. for notes on upgrading).
  142. In addition, support for new compilers and platforms were added,
  143. including:
  144. improved support for XCode
  145. Android x86 NDK build
  146. OS/2 support
  147. SunCC support
  148. Changing resolution with vpx_codec_enc_config_set() is now
  149. supported. Previously, reinitializing the codec was required to
  150. change the input resolution.
  151. The vpxenc application has initial support for producing multiple
  152. encodes from the same input in one call. Resizing is not yet
  153. supported, but varying other codec parameters is. Use -- to
  154. delineate output streams. Options persist from one stream to the
  155. next.
  156. Also, the vpxenc application will now use a keyframe interval of
  157. 5 seconds by default. Use the --kf-max-dist option to override.
  158. - Speed:
  159. Decoder performance improved 2.5% versus Duclair. Encoder speed is
  160. consistent with Duclair for most material. Two pass encoding of
  161. slideshow-like material will see significant improvements.
  162. Large realtime encoding speed gains at a small quality expense are
  163. possible by configuring the on-the-fly bitpacking experiment with
  164. --enable-onthefly-bitpacking. Realtime encoder can be up to 13%
  165. faster (ARM) depending on the number of threads and bitrate
  166. settings. This technique sees constant gain over the 5-16 speed
  167. range. For VC style input the loss seen is up to 0.2dB. See commit
  168. 52cf4dca for further details.
  169. - Quality:
  170. On the whole, quality is consistent with the Duclair release. Some
  171. tweaks:
  172. Reduced blockiness in easy sections by applying a penalty to
  173. intra modes.
  174. Improved quality of static sections (like slideshows) with
  175. two pass encoding.
  176. Improved keyframe sizing with multiple temporal layers
  177. - Bug Fixes:
  178. Corrected alt-ref contribution to frame rate for visible updates
  179. to the alt-ref buffer. This affected applications making manual
  180. usage of the frame reference flags, or temporal layers.
  181. Additional constraints were added to disable multi-frame quality
  182. enhancement (MFQE) in sections of the frame where there is motion.
  183. (#392)
  184. Fixed corruption issues when vpx_codec_enc_config_set() was called
  185. with spatial resampling enabled.
  186. Fixed a decoder error introduced in Duclair where the segmentation
  187. map was not being reinitialized on keyframes (#378)
  188. 2012-01-27 v1.0.0 "Duclair"
  189. Our fourth named release, focused on performance and features related to
  190. real-time encoding. It also fixes a decoder crash bug introduced in
  191. v0.9.7, so all users of that release are encouraged to upgrade.
  192. - Upgrading:
  193. This release is ABI incompatible with prior releases of libvpx, so the
  194. "major" version number has been bumped to 1. You must recompile your
  195. applications against the latest version of the libvpx headers. The
  196. API remains compatible, and this should not require code changes in most
  197. applications.
  198. - Enhancements:
  199. This release introduces several substantial new features to the encoder,
  200. of particular interest to real time streaming applications.
  201. Temporal scalability allows the encoder to produce a stream that can
  202. be decimated to different frame rates, with independent rate targetting
  203. for each substream.
  204. Multiframe quality enhancement postprocessing can make visual quality
  205. more consistent in the presence of frames that are substantially
  206. different quality than the surrounding frames, as in the temporal
  207. scalability case and in some forced keyframe scenarios.
  208. Multiple-resolution encoding support allows the encoding of the
  209. same content at different resolutions faster than encoding them
  210. separately.
  211. - Speed:
  212. Optimization targets for this release included the decoder and the real-
  213. time modes of the encoder. Decoder speed on x86 has improved 10.5% with
  214. this release. Encoder improvements followed a curve where speeds 1-3
  215. improved 4.0%-1.5%, speeds 4-8 improved <1%, and speeds 9-16 improved
  216. 1.5% to 10.5%, respectively. "Best" mode speed is consistent with the
  217. Cayuga release.
  218. - Quality:
  219. Encoder quality in the single stream case is consistent with the Cayuga
  220. release.
  221. - Bug Fixes:
  222. This release fixes an OOB read decoder crash bug present in v0.9.7
  223. related to the clamping of motion vectors in SPLITMV blocks. This
  224. behavior could be triggered by corrupt input or by starting
  225. decoding from a P-frame.
  226. 2011-08-15 v0.9.7-p1 "Cayuga" patch 1
  227. This is an incremental bugfix release against Cayuga. All users of that
  228. release are strongly encouraged to upgrade.
  229. - Fix potential OOB reads (cdae03a)
  230. An unbounded out of bounds read was discovered when the
  231. decoder was requested to perform error concealment (new in
  232. Cayuga) given a frame with corrupt partition sizes.
  233. A bounded out of bounds read was discovered affecting all
  234. versions of libvpx. Given an multipartition input frame that
  235. is truncated between the mode/mv partition and the first
  236. residiual paritition (in the block of partition offsets), up
  237. to 3 extra bytes could have been read from the source buffer.
  238. The code will not take any action regardless of the contents
  239. of these undefined bytes, as the truncated buffer is detected
  240. immediately following the read based on the calculated
  241. starting position of the coefficient partition.
  242. - Fix potential error concealment crash when the very first frame
  243. is missing or corrupt (a609be5)
  244. - Fix significant artifacts in error concealment (a4c2211, 99d870a)
  245. - Revert 1-pass CBR rate control changes (e961317)
  246. Further testing showed this change produced undesirable visual
  247. artifacts, rolling back for now.
  248. 2011-08-02 v0.9.7 "Cayuga"
  249. Our third named release, focused on a faster, higher quality, encoder.
  250. - Upgrading:
  251. This release is backwards compatible with Aylesbury (v0.9.5) and
  252. Bali (v0.9.6). Users of older releases should refer to the Upgrading
  253. notes in this document for that release.
  254. - Enhancements:
  255. Stereo 3D format support for vpxenc
  256. Runtime detection of available processor cores.
  257. Allow specifying --end-usage by enum name
  258. vpxdec: test for frame corruption
  259. vpxenc: add quantizer histogram display
  260. vpxenc: add rate histogram display
  261. Set VPX_FRAME_IS_DROPPABLE
  262. update configure for ios sdk 4.3
  263. Avoid text relocations in ARM vp8 decoder
  264. Generate a vpx.pc file for pkg-config.
  265. New ways of passing encoded data between encoder and decoder.
  266. - Speed:
  267. This release includes across-the-board speed improvements to the
  268. encoder. On x86, these measure at approximately 11.5% in Best mode,
  269. 21.5% in Good mode (speed 0), and 22.5% in Realtime mode (speed 6).
  270. On ARM Cortex A9 with Neon extensions, real-time encoding of video
  271. telephony content is 35% faster than Bali on single core and 48%
  272. faster on multi-core. On the NVidia Tegra2 platform, real time
  273. encoding is 40% faster than Bali.
  274. Decoder speed was not a priority for this release, but improved
  275. approximately 8.4% on x86.
  276. Reduce motion vector search on alt-ref frame.
  277. Encoder loopfilter running in its own thread
  278. Reworked loopfilter to precalculate more parameters
  279. SSE2/SSSE3 optimizations for build_predictors_mbuv{,_s}().
  280. Make hor UV predict ~2x faster (73 vs 132 cycles) using SSSE3.
  281. Removed redundant checks
  282. Reduced structure sizes
  283. utilize preload in ARMv6 MC/LPF/Copy routines
  284. ARM optimized quantization, dfct, variance, subtract
  285. Increase chrow row alignment to 16 bytes.
  286. disable trellis optimization for first pass
  287. Write SSSE3 sub-pixel filter function
  288. Improve SSE2 half-pixel filter funtions
  289. Add vp8_sub_pixel_variance16x8_ssse3 function
  290. Reduce unnecessary distortion computation
  291. Use diamond search to replace full search
  292. Preload reference area in sub-pixel motion search (real-time mode)
  293. - Quality:
  294. This release focused primarily on one-pass use cases, including
  295. video conferencing. Low latency data rate control was significantly
  296. improved, improving streamability over bandwidth constrained links.
  297. Added support for error concealment, allowing frames to maintain
  298. visual quality in the presence of substantial packet loss.
  299. Add rc_max_intra_bitrate_pct control
  300. Limit size of initial keyframe in one-pass.
  301. Improve framerate adaptation
  302. Improved 1-pass CBR rate control
  303. Improved KF insertion after fades to still.
  304. Improved key frame detection.
  305. Improved activity masking (lower PSNR impact for same SSIM boost)
  306. Improved interaction between GF and ARFs
  307. Adding error-concealment to the decoder.
  308. Adding support for independent partitions
  309. Adjusted rate-distortion constants
  310. - Bug Fixes:
  311. Removed firstpass motion map
  312. Fix parallel make install
  313. Fix multithreaded encoding for 1 MB wide frame
  314. Fixed iwalsh_neon build problems with RVDS4.1
  315. Fix semaphore emulation, spin-wait intrinsics on Windows
  316. Fix build with xcode4 and simplify GLOBAL.
  317. Mark ARM asm objects as allowing a non-executable stack.
  318. Fix vpxenc encoding incorrect webm file header on big endian
  319. 2011-03-07 v0.9.6 "Bali"
  320. Our second named release, focused on a faster, higher quality, encoder.
  321. - Upgrading:
  322. This release is backwards compatible with Aylesbury (v0.9.5). Users
  323. of older releases should refer to the Upgrading notes in this
  324. document for that release.
  325. - Enhancements:
  326. vpxenc --psnr shows a summary when encode completes
  327. --tune=ssim option to enable activity masking
  328. improved postproc visualizations for development
  329. updated support for Apple iOS to SDK 4.2
  330. query decoder to determine which reference frames were updated
  331. implemented error tracking in the decoder
  332. fix pipe support on windows
  333. - Speed:
  334. Primary focus was on good quality mode, speed 0. Average improvement
  335. on x86 about 40%, up to 100% on user-generated content at that speed.
  336. Best quality mode speed improved 35%, and realtime speed 10-20%. This
  337. release also saw significant improvement in realtime encoding speed
  338. on ARM platforms.
  339. Improved encoder threading
  340. Dont pick encoder filter level when loopfilter is disabled.
  341. Avoid double copying of key frames into alt and golden buffer
  342. FDCT optimizations.
  343. x86 sse2 temporal filter
  344. SSSE3 version of fast quantizer
  345. vp8_rd_pick_best_mbsegmentation code restructure
  346. Adjusted breakout RD for SPLITMV
  347. Changed segmentation check order
  348. Improved rd_pick_intra4x4block
  349. Adds armv6 optimized variance calculation
  350. ARMv6 optimized sad16x16
  351. ARMv6 optimized half pixel variance calculations
  352. Full search SAD function optimization in SSE4.1
  353. Improve MV prediction accuracy to achieve performance gain
  354. Improve MV prediction in vp8_pick_inter_mode() for speed>3
  355. - Quality:
  356. Best quality mode improved PSNR 6.3%, and SSIM 6.1%. This release
  357. also includes support for "activity masking," which greatly improves
  358. SSIM at the expense of PSNR. For now, this feature is available with
  359. the --tune=ssim option. Further experimentation in this area
  360. is ongoing. This release also introduces a new rate control mode
  361. called "CQ," which changes the allocation of bits within a clip to
  362. the sections where they will have the most visual impact.
  363. Tuning for the more exact quantizer.
  364. Relax rate control for last few frames
  365. CQ Mode
  366. Limit key frame quantizer for forced key frames.
  367. KF/GF Pulsing
  368. Add simple version of activity masking.
  369. make rdmult adaptive for intra in quantizer RDO
  370. cap the best quantizer for 2nd order DC
  371. change the threshold of DC check for encode breakout
  372. - Bug Fixes:
  373. Fix crash on Sparc Solaris.
  374. Fix counter of fixed keyframe distance
  375. ARNR filter pointer update bug fix
  376. Fixed use of motion percentage in KF/GF group calc
  377. Changed condition for using RD in Intra Mode
  378. Fix encoder real-time only configuration.
  379. Fix ARM encoder crash with multiple token partitions
  380. Fixed bug first cluster timecode of webm file is wrong.
  381. Fixed various encoder bugs with odd-sized images
  382. vp8e_get_preview fixed when spatial resampling enabled
  383. quantizer: fix assertion in fast quantizer path
  384. Allocate source buffers to be multiples of 16
  385. Fix for manual Golden frame frequency
  386. Fix drastic undershoot in long form content
  387. 2010-10-28 v0.9.5 "Aylesbury"
  388. Our first named release, focused on a faster decoder, and a better encoder.
  389. - Upgrading:
  390. This release incorporates backwards-incompatible changes to the
  391. ivfenc and ivfdec tools. These tools are now called vpxenc and vpxdec.
  392. vpxdec
  393. * the -q (quiet) option has been removed, and replaced with
  394. -v (verbose). the output is quiet by default. Use -v to see
  395. the version number of the binary.
  396. * The default behavior is now to write output to a single file
  397. instead of individual frames. The -y option has been removed.
  398. Y4M output is the default.
  399. * For raw I420/YV12 output instead of Y4M, the --i420 or --yv12
  400. options must be specified.
  401. $ ivfdec -o OUTPUT INPUT
  402. $ vpxdec --i420 -o OUTPUT INPUT
  403. * If an output file is not specified, the default is to write
  404. Y4M to stdout. This makes piping more natural.
  405. $ ivfdec -y -o - INPUT | ...
  406. $ vpxdec INPUT | ...
  407. * The output file has additional flexibility for formatting the
  408. filename. It supports escape characters for constructing a
  409. filename from the width, height, and sequence number. This
  410. replaces the -p option. To get the equivalent:
  411. $ ivfdec -p frame INPUT
  412. $ vpxdec --i420 -o frame-%wx%h-%4.i420 INPUT
  413. vpxenc
  414. * The output file must be specified with -o, rather than as the
  415. last argument.
  416. $ ivfenc <options> INPUT OUTPUT
  417. $ vpxenc <options> -o OUTPUT INPUT
  418. * The output defaults to webm. To get IVF output, use the --ivf
  419. option.
  420. $ ivfenc <options> INPUT OUTPUT.ivf
  421. $ vpxenc <options> -o OUTPUT.ivf --ivf INPUT
  422. - Enhancements:
  423. ivfenc and ivfdec have been renamed to vpxenc, vpxdec.
  424. vpxdec supports .webm input
  425. vpxdec writes .y4m by default
  426. vpxenc writes .webm output by default
  427. vpxenc --psnr now shows the average/overall PSNR at the end
  428. ARM platforms now support runtime cpu detection
  429. vpxdec visualizations added for motion vectors, block modes, references
  430. vpxdec now silent by default
  431. vpxdec --progress shows frame-by-frame timing information
  432. vpxenc supports the distinction between --fps and --timebase
  433. NASM is now a supported assembler
  434. configure: enable PIC for shared libs by default
  435. configure: add --enable-small
  436. configure: support for ppc32-linux-gcc
  437. configure: support for sparc-solaris-gcc
  438. - Bugs:
  439. Improve handling of invalid frames
  440. Fix valgrind errors in the NEON loop filters.
  441. Fix loopfilter delta zero transitions
  442. Fix valgrind errors in vp8_sixtap_predict8x4_armv6().
  443. Build fixes for darwin-icc
  444. - Speed:
  445. 20-40% (average 28%) improvement in libvpx decoder speed,
  446. including:
  447. Rewrite vp8_short_walsh4x4_sse2()
  448. Optimizations on the loopfilters.
  449. Miscellaneous improvements for Atom
  450. Add 4-tap version of 2nd-pass ARMv6 MC filter.
  451. Improved multithread utilization
  452. Better instruction choices on x86
  453. reorder data to use wider instructions
  454. Update NEON wide idcts
  455. Make block access to frame buffer sequential
  456. Improved subset block search
  457. Bilinear subpixel optimizations for ssse3.
  458. Decrease memory footprint
  459. Encoder speed improvements (percentage gain not measured):
  460. Skip unnecessary search of identical frames
  461. Add SSE2 subtract functions
  462. Improve bounds checking in vp8_diamond_search_sadx4()
  463. Added vp8_fast_quantize_b_sse2
  464. - Quality:
  465. Over 7% overall PSNR improvement (6.3% SSIM) in "best" quality
  466. encoding mode, and up to 60% improvement on very noisy, still
  467. or slow moving source video
  468. Motion compensated temporal filter for Alt-Ref Noise Reduction
  469. Improved use of trellis quantization on 2nd order Y blocks
  470. Tune effect of motion on KF/GF boost in two pass
  471. Allow coefficient optimization for good quality speed 0.
  472. Improved control of active min quantizer for two pass.
  473. Enable ARFs for non-lagged compress
  474. 2010-09-02 v0.9.2
  475. - Enhancements:
  476. Disable frame dropping by default
  477. Improved multithreaded performance
  478. Improved Force Key Frame Behaviour
  479. Increased rate control buffer level precision
  480. Fix bug in 1st pass motion compensation
  481. ivfenc: correct fixed kf interval, --disable-kf
  482. - Speed:
  483. Changed above and left context data layout
  484. Rework idct calling structure.
  485. Removed unnecessary MB_MODE_INFO copies
  486. x86: SSSE3 sixtap prediction
  487. Reworked IDCT to include reconstruction (add) step
  488. Swap alt/gold/new/last frame buffer ptrs instead of copying.
  489. Improve SSE2 loopfilter functions
  490. Change bitreader to use a larger window.
  491. Avoid loopfilter reinitialization when possible
  492. - Quality:
  493. Normalize quantizer's zero bin and rounding factors
  494. Add trellis quantization.
  495. Make the quantizer exact.
  496. Updates to ARNR filtering algorithm
  497. Fix breakout thresh computation for golden & AltRef frames
  498. Redo the forward 4x4 dct
  499. Improve the accuracy of forward walsh-hadamard transform
  500. Further adjustment of RD behaviour with Q and Zbin.
  501. - Build System:
  502. Allow linking of libs built with MinGW to MSVC
  503. Fix target auto-detection on mingw32
  504. Allow --cpu= to work for x86.
  505. configure: pass original arguments through to make dist
  506. Fix builds without runtime CPU detection
  507. msvs: fix install of codec sources
  508. msvs: Change devenv.com command line for better msys support
  509. msvs: Add vs9 targets.
  510. Add x86_64-linux-icc target
  511. - Bugs:
  512. Potential crashes on older MinGW builds
  513. Fix two-pass framrate for Y4M input.
  514. Fixed simple loop filter, other crashes on ARM v6
  515. arm: fix missing dependency with --enable-shared
  516. configure: support directories containing .o
  517. Replace pinsrw (SSE) with MMX instructions
  518. apple: include proper mach primatives
  519. Fixed rate control bug with long key frame interval.
  520. Fix DSO link errors on x86-64 when not using a version script
  521. Fixed buffer selection for UV in AltRef filtering
  522. 2010-06-17 v0.9.1
  523. - Enhancements:
  524. * ivfenc/ivfdec now support YUV4MPEG2 input and pipe I/O
  525. * Speed optimizations
  526. - Bugfixes:
  527. * Rate control
  528. * Prevent out-of-bounds accesses on invalid data
  529. - Build system updates:
  530. * Detect toolchain to be used automatically for native builds
  531. * Support building shared libraries
  532. * Better autotools emulation (--prefix, --libdir, DESTDIR)
  533. - Updated LICENSE
  534. * http://webmproject.blogspot.com/2010/06/changes-to-webm-open-source-license.html
  535. 2010-05-18 v0.9.0
  536. - Initial open source release. Welcome to WebM and VP8!