You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

200 lines
7.7KB

  1. version 0.4.7:
  2. - qpel encoding (Michael)
  3. - 4mv+b frames encoding finally fixed (Michael)
  4. - chroma ME (Michael)
  5. - 5 comparission functions for ME (Michael)
  6. - b frame encoding speedup (Michael)
  7. - wmv2 codec (unfinished)
  8. - user specified diamond size for EPZS (Michael)
  9. version 0.4.6:
  10. - completely new integer only mpeg audio layer 1/2/3 decoder rewritten
  11. from scratch.
  12. - recoded dct and motion vector search with gcc (no longer depends on
  13. nasm).
  14. - fix quantization bug in AC3 encoder.
  15. - added PCM codecs and format. Corrected wav/avi/asf pcm issues.
  16. - added prototype ffplay program.
  17. - added GOB header parsing on H.263/H.263+ decoder. (Juanjo)
  18. - bug fix on MCBPC tables of H.263. (Juanjo)
  19. - bug fix on DC coefficients of H.263. (Juanjo)
  20. - added Advanced Prediction Mode on H.263/H.263+ decoder. (Juanjo)
  21. - now we can decode H.263 streams found on QuickTime files. (Juanjo)
  22. - now we can decode H.263 streams found on VIVO v1 files.(Juanjo)
  23. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  24. - added GOB header for H.263/H.263+ coding on RTP mode. (Juanjo)
  25. - now H.263 picture size is returned on the first decoded frame. (Juanjo)
  26. - added first regression tests
  27. - added MPEG2 TS demux
  28. - new demux API for libav
  29. - more accurate and faster IDCT (Michael)
  30. - faster and entropy controlled motion search (Michael)
  31. - two pass video encoding (Michael)
  32. - new video rate control (Michael)
  33. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  34. - great performance improvement of video encoders and decoders (Michael)
  35. - new and faster bit readers and vlc parsers (Michael)
  36. - high quality encoding mode : tries all macroblock/VLC types (Michael)
  37. - added DV video decoder
  38. - preliminary RTP/RTSP support in ffserver and libavformat
  39. - H.263+ AIC decoding/encoding support. (Juanjo)
  40. - VCD MPEG-PS mode. (Juanjo)
  41. - PSNR stuff. (Juanjo)
  42. - Simple stats output. (Juanjo)
  43. - 16-bit and 15-bit rgb/bgr/gbr support (Bisqwit)
  44. version 0.4.5:
  45. - some header fixes (Zdenek Kabelac <kabi@informatics.muni.cz>).
  46. - many MMX optimizations (Nick Kurshev <nickols_k@mail.ru>).
  47. - added configure system (actually a small shell script).
  48. - added mpeg audio layer 1/2/3 decoding using LGPL'ed mpglib by
  49. Michael Hipp (temporary solution - waiting for integer only
  50. decoder).
  51. - fixed VIDIOCSYNC interrupt.
  52. - added Intel H263 decoding support ('I263' avi fourCC)
  53. - added Real Video 1.0 decoding (needs further testing).
  54. - simplified image formats again. Added PGM format (=grey
  55. pgm). Renamed old PGM to PGMYUV.
  56. - fixed msmpeg4 slice issues (tell me if you still find problems).
  57. - fixed opendivx bugs with newer versions (added VOL header decoding).
  58. - added support for mplayer interface.
  59. - added macroblock skip optimization.
  60. - added MJPEG decoder.
  61. - added mmx/mmxext idct from libmpeg2.
  62. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  63. <celer@shell.scrypt.net>).
  64. - added pixel format convertion layer (e.g. for MJPEG or PPM).
  65. - added deinterlacing option.
  66. - mpeg1/2 fixes.
  67. - mpeg4 vol header fixes (Jonathan Marsden <snmjbm@pacbell.net>).
  68. - ARM optimizations (Lionel Ulmer <lionel.ulmer@free.fr>).
  69. - Windows porting of file converter.
  70. - added MJPEG raw format (input/ouput).
  71. - added JPEG image format support (input/output).
  72. version 0.4.4:
  73. - fixed some std header definitions (Bjorn Lindgren
  74. <bjorn.e.lindgren@telia.com>).
  75. - added mpeg demux (mpeg 1 and 2 compatible).
  76. - added ASF demux.
  77. - added prototype RM demux.
  78. - added AC3 decoding (done with libac3 by Aaron Holtzman).
  79. - added decoding codec parameter guessing (.e.g. for mpeg, because the
  80. header does not include them).
  81. - fixed header generation in mpeg1, AVI and ASF mux : wmplayer can now
  82. play them (only tested video).
  83. - fixed h263 white bug.
  84. - fixed phase rounding in img resample filter.
  85. - add mmx code for polyphase img resample filter.
  86. - added CPU autodetect.
  87. - added generic title/author/copyright/comment string handling (ASF and RM use them).
  88. - added SWF demux to extract MP3 track (not usable yet because no MP3
  89. decoder).
  90. - added fractional frame rate support.
  91. - codecs are no longer searched by read_header() (should fix ffserver
  92. segfault).
  93. version 0.4.3:
  94. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq@amsat.org>).
  95. - fixed raw yuv output.
  96. - added motion rounding support in MPEG4.
  97. - fixed motion bug rounding in MSMPEG4.
  98. - added B frame handling in video core.
  99. - added full MPEG1 decoding support.
  100. - added partial (frame only) MPEG2 support.
  101. - changed the FOURCC code for H.263 to "U263" to be able to see the
  102. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  103. this +codec ;) (JuanJo).
  104. - Halfpel motion estimation after mb type selection (JuanJo).
  105. - added pgm and .Y.U.V output format.
  106. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  107. output.
  108. - added pgmpipe I/O format (original patch from Martin Aumueller
  109. <lists@reserv.at>, but changed completely since we use a format
  110. instead of a protocol).
  111. version 0.4.2:
  112. - added H263/MPEG4/MSMPEG4 decoding support. MPEG4 decoding support
  113. (for openDIVX) is almost complete: 8x8 MVs and rounding are
  114. missing. MSMPEG4 support is complete.
  115. - added prototype MPEG1 decoder. Only I and P frames handled yet (it
  116. can decode ffmpeg mpegs :-)).
  117. - added libavcodec API documentation (see apiexample.c).
  118. - fixed image polyphase bug (the bottom of some images could be
  119. greenish).
  120. - added support for non clipped motion vectors (decoding only)
  121. and image sizes non multiple of 16.
  122. - added support for AC prediction (decoding only).
  123. - added file overwrite confirmation (can be disabled with -y).
  124. - Added custom size picture to H.263 using H.263+ (Juanjo).
  125. version 0.4.1:
  126. - added MSMPEG4 (aka DIVX) compatible encoder. Changed default codec
  127. of avi and asf to DIV3.
  128. - added -me option to set motion estimation method
  129. (default=log). suppressed redundant -hq option.
  130. - added options -acodec and -vcodec to force a given codec (useful for
  131. AVI for example).
  132. - fixed -an option.
  133. - improved dct_quantize speed.
  134. - factorized some motion estimation code.
  135. version 0.4.0:
  136. - removing grab code from ffserver and moved it to ffmpeg. Added multi
  137. stream support to ffmpeg.
  138. - added timeshifting support for live feeds (option ?date=xxx in the
  139. URL).
  140. - added high quality image resize code with polyphase filter (need
  141. mmx/see optimisation). Enable multiple image size support in ffserver.
  142. - added multi live feed support in ffserver.
  143. - suppressed master feature from ffserver (it should be done with an
  144. external program which opens the .ffm url and writes it to another
  145. ffserver).
  146. - added preliminary support for video stream parsing (wav and avi half
  147. done). Added proper support for audio/video file convertion in
  148. ffmpeg.
  149. - added preliminary support for video file sending from ffserver.
  150. - redesigning I/O subsystem : now using URL based input and output
  151. (see avio.h).
  152. - added wav format support.
  153. - added "tty user interface" to ffmpeg to stop grabbing gracefully.
  154. - added MMX/SSE optimizations to SAD (Sums of Absolutes Diferences)
  155. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo@atmlab.utfsm.cl>).
  156. - added MMX DCT from mpeg2_movie 1.5 (Juanjo).
  157. - added new motion estimation algorithms, log and phods (Juanjo).
  158. - changed directories : libav for format handling, libavcodec for
  159. codecs.
  160. version 0.3.4:
  161. - added stereo in mpeg audio encoder.
  162. version 0.3.3:
  163. - added 'high quality' mode which use motion vectors. It can be used in
  164. real time at low resolution.
  165. - fixed rounding problems which caused quality problems at high
  166. bitrates and large gop size.
  167. version 0.3.2: small fixes
  168. - asf fixes
  169. - put_seek bug fix
  170. version 0.3.1: added avi/divx support
  171. - added avi support
  172. - added mpeg4 codec compatible with open divx. It is based on the h263
  173. codec.
  174. - added sound for flash format (not tested)
  175. version 0.3: initial public release