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.

175 lines
6.7KB

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