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.

153 lines
5.8KB

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