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.

140 lines
5.2KB

  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. version 0.4.4:
  17. - fixed some std header definitions (Bjorn Lindgren
  18. <bjorn.e.lindgren@telia.com>).
  19. - added mpeg demux (mpeg 1 and 2 compatible).
  20. - added ASF demux.
  21. - added prototype RM demux.
  22. - added AC3 decoding (done with libac3 by Aaron Holtzman).
  23. - added decoding codec parameter guessing (.e.g. for mpeg, because the
  24. header does not include them).
  25. - fixed header generation in mpeg1, AVI and ASF mux : wmplayer can now
  26. play them (only tested video).
  27. - fixed h263 white bug.
  28. - fixed phase rounding in img resample filter.
  29. - add mmx code for polyphase img resample filter.
  30. - added CPU autodetect.
  31. - added generic title/author/copyright/comment string handling (ASF and RM use them).
  32. - added SWF demux to extract MP3 track (not usable yet because no MP3
  33. decoder).
  34. - added fractional frame rate support.
  35. - codecs are no longer searched by read_header() (should fix ffserver
  36. segfault).
  37. version 0.4.3:
  38. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq@amsat.org>).
  39. - fixed raw yuv output.
  40. - added motion rounding support in MPEG4.
  41. - fixed motion bug rounding in MSMPEG4.
  42. - added B frame handling in video core.
  43. - added full MPEG1 decoding support.
  44. - added partial (frame only) MPEG2 support.
  45. - changed the FOURCC code for H.263 to "U263" to be able to see the
  46. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  47. this +codec ;) (JuanJo).
  48. - Halfpel motion estimation after mb type selection (JuanJo).
  49. - added pgm and .Y.U.V output format.
  50. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  51. output.
  52. - added pgmpipe I/O format (original patch from Martin Aumueller
  53. <lists@reserv.at>, but changed completely since we use a format
  54. instead of a protocol).
  55. version 0.4.2:
  56. - added H263/MPEG4/MSMPEG4 decoding support. MPEG4 decoding support
  57. (for openDIVX) is almost complete: 8x8 MVs and rounding are
  58. missing. MSMPEG4 support is complete.
  59. - added prototype MPEG1 decoder. Only I and P frames handled yet (it
  60. can decode ffmpeg mpegs :-)).
  61. - added libavcodec API documentation (see apiexample.c).
  62. - fixed image polyphase bug (the bottom of some images could be
  63. greenish).
  64. - added support for non clipped motion vectors (decoding only)
  65. and image sizes non multiple of 16.
  66. - added support for AC prediction (decoding only).
  67. - added file overwrite confirmation (can be disabled with -y).
  68. - Added custom size picture to H.263 using H.263+ (Juanjo).
  69. version 0.4.1:
  70. - added MSMPEG4 (aka DIVX) compatible encoder. Changed default codec
  71. of avi and asf to DIV3.
  72. - added -me option to set motion estimation method
  73. (default=log). suppressed redundant -hq option.
  74. - added options -acodec and -vcodec to force a given codec (useful for
  75. AVI for example).
  76. - fixed -an option.
  77. - improved dct_quantize speed.
  78. - factorized some motion estimation code.
  79. version 0.4.0:
  80. - removing grab code from ffserver and moved it to ffmpeg. Added multi
  81. stream support to ffmpeg.
  82. - added timeshifting support for live feeds (option ?date=xxx in the
  83. URL).
  84. - added high quality image resize code with polyphase filter (need
  85. mmx/see optimisation). Enable multiple image size support in ffserver.
  86. - added multi live feed support in ffserver.
  87. - suppressed master feature from ffserver (it should be done with an
  88. external program which opens the .ffm url and writes it to another
  89. ffserver).
  90. - added preliminary support for video stream parsing (wav and avi half
  91. done). Added proper support for audio/video file convertion in
  92. ffmpeg.
  93. - added preliminary support for video file sending from ffserver.
  94. - redesigning I/O subsystem : now using URL based input and output
  95. (see avio.h).
  96. - added wav format support.
  97. - added "tty user interface" to ffmpeg to stop grabbing gracefully.
  98. - added MMX/SSE optimizations to SAD (Sums of Absolutes Diferences)
  99. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo@atmlab.utfsm.cl>).
  100. - added MMX DCT from mpeg2_movie 1.5 (Juanjo).
  101. - added new motion estimation algorithms, log and phods (Juanjo).
  102. - changed directories : libav for format handling, libavcodec for
  103. codecs.
  104. version 0.3.4:
  105. - added stereo in mpeg audio encoder.
  106. version 0.3.3:
  107. - added 'high quality' mode which use motion vectors. It can be used in
  108. real time at low resolution.
  109. - fixed rounding problems which caused quality problems at high
  110. bitrates and large gop size.
  111. version 0.3.2: small fixes
  112. - asf fixes
  113. - put_seek bug fix
  114. version 0.3.1: added avi/divx support
  115. - added avi support
  116. - added mpeg4 codec compatible with open divx. It is based on the h263
  117. codec.
  118. - added sound for flash format (not tested)
  119. version 0.3: initial public release