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.

873 lines
31KB

  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version <next>:
  4. - metadata (INFO tag) support in WAV muxer
  5. version 9_beta1:
  6. - XWD encoder and decoder
  7. - Support for fragmentation in the mov/mp4 muxer
  8. - ISMV (Smooth Streaming) muxer
  9. - CDXL demuxer and decoder
  10. - Apple ProRes encoder
  11. - Sun Rasterfile Encoder
  12. - remove libpostproc
  13. - ID3v2 attached pictures reading and writing
  14. - WMA Lossless decoder
  15. - XBM encoder
  16. - RealAudio Lossless decoder
  17. - ZeroCodec decoder
  18. - drop support for avconv without libavfilter
  19. - add libavresample audio conversion library
  20. - audio filters support in libavfilter and avconv
  21. - add fps filter
  22. - audio split filter
  23. - audio mix filter
  24. - avprobe output is now standard INI or JSON. The old format can still
  25. be used with -of old.
  26. - Indeo Audio decoder
  27. - channelsplit audio filter
  28. - RTMPT protocol support
  29. - iLBC encoding/decoding via libilbc
  30. - Microsoft Screen 1 decoder
  31. - join audio filter
  32. - audio channel mapping filter
  33. - Microsoft ATC Screen decoder
  34. - RTSP listen mode
  35. - TechSmith Screen Codec 2 decoder
  36. - AAC encoding via libfdk-aac
  37. - Microsoft Expression Encoder Screen decoder
  38. - RTMPS protocol support
  39. - RTMPTS protocol support
  40. - JPEG 2000 encoding support through OpenJPEG
  41. - G.723.1 demuxer and decoder
  42. - RTMPE protocol support
  43. - RTMPTE protocol support
  44. - Canopus Lossless Codec decoder
  45. - avconv -shortest option is now per-output file,
  46. -pass and -passlogfile are now per-output stream
  47. - Ut Video encoder
  48. - Microsoft Screen 2 decoder
  49. - RTP depacketization of JPEG
  50. - Smooth Streaming live segmenter muxer
  51. - RTP packetization of JPEG
  52. - Opus decoder and encoder using libopus
  53. - remove -same_quant, it hasn't worked for years
  54. version 0.8:
  55. - GSM audio parser
  56. - SMJPEG muxer
  57. version 0.8_beta2:
  58. - Automatic thread count based on detection number of (available) CPU cores
  59. - Deprecate libpostproc. If desired, the switch --enable-postproc will
  60. enable it but it may be removed in a later Libav release.
  61. - rv34: frame-level multi-threading
  62. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  63. version 0.8_beta1:
  64. - BWF muxer
  65. - Flash Screen Video 2 decoder
  66. - ffplay/ffprobe/ffserver renamed to avplay/avprobe/avserver
  67. - ffmpeg deprecated, added avconv, which is almost the same for now, except
  68. for a few incompatible changes in the options, which will hopefully make them
  69. easier to use. The changes are:
  70. * The options placement is now strictly enforced! While in theory the
  71. options for ffmpeg should be given in [input options] -i INPUT [output
  72. options] OUTPUT order, in practice it was possible to give output options
  73. before the -i and it mostly worked. Except when it didn't - the behavior was
  74. a bit inconsistent. In avconv, it is not possible to mix input and output
  75. options. All non-global options are reset after an input or output filename.
  76. * All per-file options are now truly per-file - they apply only to the next
  77. input or output file and specifying different values for different files
  78. will now work properly (notably -ss and -t options).
  79. * All per-stream options are now truly per-stream - it is possible to
  80. specify which stream(s) should a given option apply to. See the Stream
  81. specifiers section in the avconv manual for details.
  82. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  83. sense that they're specified after the output filename instead of before,
  84. like all other options. In avconv this irregularity is removed, all options
  85. apply to the next input or output file.
  86. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  87. irregular and highly confusing, they were also redundant. In avconv the -map
  88. option will create new streams in the output file and map input streams to
  89. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  90. each stream in the first input file.
  91. * The -map option now has slightly different and more powerful syntax:
  92. + Colons (':') are used to separate file index/stream type/stream index
  93. instead of dots. Comma (',') is used to separate the sync stream instead
  94. of colon.. This is done for consistency with other options.
  95. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  96. output stream from the third input audio stream.
  97. + Omitting the stream index now maps all the streams of the given type,
  98. not just the first. E.g. -map 0:s creates output streams for all the
  99. subtitle streams in the first input file.
  100. + Since -map can now match multiple streams, negative mappings were
  101. introduced. Negative mappings disable some streams from an already
  102. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  103. all the stream in the first input file, except for the second audio
  104. stream'.
  105. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  106. use, which allows to precisely specify target stream(s) consistently with
  107. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  108. libvorbis sets the codec for the first audio stream and -c copy copies all
  109. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  110. aliases to -c:v/a/s
  111. * It is now possible to precisely specify which stream should an AVOption
  112. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  113. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  114. syntax is deprecated and will stop working soon.
  115. * -map_chapters now takes only an input file index and applies to the next
  116. output file. This is consistent with how all the other options work.
  117. * -map_metadata now takes only an input metadata specifier and applies to
  118. the next output file. Output metadata specifier is now part of the option
  119. name, similarly to the AVOptions/map/codec feature above.
  120. * -metadata can now be used to set metadata on streams and chapters, e.g.
  121. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  122. This made -vlang/-alang/-slang options redundant, so they were removed.
  123. * -qscale option now uses stream specifiers and applies to all streams, not
  124. just video. I.e. plain -qscale number would now apply to all streams. To get
  125. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  126. and -aq is now an alias for -q:a.
  127. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  128. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  129. * -itsscale option now uses stream specifiers, so its argument is only the
  130. scale parameter.
  131. * -intra option was removed, use -g 0 for the same effect.
  132. * -psnr option was removed, use -flags +psnr for the same effect.
  133. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  134. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  135. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  136. - XMV demuxer
  137. - Windows Media Image decoder
  138. - LATM muxer/demuxer
  139. - showinfo filter
  140. - split filter
  141. - libcdio-paranoia input device for audio CD grabbing
  142. - select filter
  143. - Apple ProRes decoder
  144. - CELT in Ogg demuxing
  145. - VC-1 interlaced decoding
  146. - lut, lutrgb, and lutyuv filters
  147. - boxblur filter
  148. - Ut Video decoder
  149. - Speex encoding via libspeex
  150. - 4:2:2 H.264 decoding support
  151. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  152. - Pulseaudio input device
  153. - replacement Indeo 3 decoder
  154. - TLS/SSL and HTTPS protocol support
  155. - AVOptions API rewritten and documented
  156. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  157. AVCodecContext deprecated. Codec private options should be used instead.
  158. - Properly working defaults in libx264 wrapper, support for native presets.
  159. - Encrypted OMA files support
  160. - Discworld II BMV decoding support
  161. - VBLE Decoder
  162. - OS X Video Decoder Acceleration (VDA) support
  163. - CRI ADX audio format muxer and demuxer
  164. - Playstation Portable PMP format demuxer
  165. - PCM format support in OMA demuxer
  166. - CLJR encoder
  167. - Dxtory capture format decoder
  168. - v410 QuickTime uncompressed 4:4:4 10-bit encoder and decoder
  169. - OpenMG Audio muxer
  170. - Simple segmenting muxer
  171. - Indeo 4 decoder
  172. - SMJPEG demuxer
  173. version 0.7:
  174. - E-AC-3 audio encoder
  175. - ac3enc: add channel coupling support
  176. - floating-point sample format support for (E-)AC-3, DCA, AAC, Vorbis decoders
  177. - H.264/MPEG frame-level multithreading
  178. - av_metadata_* functions renamed to av_dict_* and moved to libavutil
  179. - 4:4:4 H.264 decoding support
  180. - 10-bit H.264 optimizations for x86
  181. - bump libswscale for recently reported ABI break
  182. version 0.7_beta2:
  183. - VP8 frame-level multithreading
  184. - NEON optimizations for VP8
  185. - removed a lot of deprecated API cruft
  186. - FFT and IMDCT optimizations for AVX (Sandy Bridge) processors
  187. - DPX image encoder
  188. - SMPTE 302M AES3 audio decoder
  189. - ffmpeg no longer quits after the 'q' key is pressed; use 'ctrl+c' instead
  190. - 9bit and 10bit per sample support in the H.264 decoder
  191. version 0.7_beta1:
  192. - WebM support in Matroska de/muxer
  193. - low overhead Ogg muxing
  194. - MMS-TCP support
  195. - VP8 de/encoding via libvpx
  196. - Demuxer for On2's IVF format
  197. - Pictor/PC Paint decoder
  198. - HE-AAC v2 decoder
  199. - libfaad2 wrapper removed
  200. - DTS-ES extension (XCh) decoding support
  201. - native VP8 decoder
  202. - RTSP tunneling over HTTP
  203. - RTP depacketization of SVQ3
  204. - -strict inofficial replaced by -strict unofficial
  205. - ffplay -exitonkeydown and -exitonmousedown options added
  206. - native GSM / GSM MS decoder
  207. - RTP depacketization of QDM2
  208. - ANSI/ASCII art playback system
  209. - Lego Mindstorms RSO de/muxer
  210. - SubRip subtitle file muxer and demuxer
  211. - Chinese AVS encoding via libxavs
  212. - ffprobe -show_packets option added
  213. - RTP packetization of Theora and Vorbis
  214. - RTP depacketization of MP4A-LATM
  215. - RTP packetization and depacketization of VP8
  216. - hflip filter
  217. - Apple HTTP Live Streaming demuxer
  218. - a64 codec
  219. - MMS-HTTP support
  220. - G.722 ADPCM audio encoder/decoder
  221. - R10k video decoder
  222. - ocv_smooth filter
  223. - frei0r wrapper filter
  224. - change crop filter syntax to width:height:x:y
  225. - make the crop filter accept parametric expressions
  226. - make ffprobe accept AVFormatContext options
  227. - yadif filter
  228. - blackframe filter
  229. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  230. - RTP depacketization of the X-QT QuickTime format
  231. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  232. - cropdetect filter
  233. - ffmpeg -crop* options removed
  234. - transpose filter added
  235. - ffmpeg -force_key_frames option added
  236. - demuxer for receiving raw rtp:// URLs without an SDP description
  237. - single stream LATM/LOAS decoder
  238. - setpts filter added
  239. - Win64 support for optimized x86 assembly functions
  240. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  241. - ASS subtitle encoder and decoder
  242. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  243. - overlay filter added
  244. - rename aspect filter to setdar, and pixelaspect to setsar
  245. - IEC 61937 demuxer
  246. - Mobotix .mxg demuxer
  247. - frei0r source added
  248. - hqdn3d filter added
  249. - RTP depacketization of QCELP
  250. - FLAC parser added
  251. - gradfun filter added
  252. - AMR-WB decoder
  253. - replace the ocv_smooth filter with a more generic ocv filter
  254. - Windows Televison (WTV) demuxer
  255. - FFmpeg metadata format muxer and demuxer
  256. - SubRip (srt) subtitle decoder
  257. - floating-point AC-3 encoder added
  258. - Lagarith decoder
  259. - ffmpeg -copytb option added
  260. - IVF muxer added
  261. - Wing Commander IV movies decoder added
  262. - movie source added
  263. - Bink version 'b' audio and video decoder
  264. - Bitmap Brothers JV playback system
  265. - Apple HTTP Live Streaming protocol handler
  266. - sndio support for playback and record
  267. - Linux framebuffer input device added
  268. - Chronomaster DFA decoder
  269. - Mobotix MxPEG decoder
  270. - AAC encoding via libvo-aacenc
  271. - AMR-WB encoding via libvo-amrwbenc
  272. - xWMA demuxer
  273. - fieldorder video filter added
  274. version 0.6:
  275. - PB-frame decoding for H.263
  276. - deprecated vhook subsystem removed
  277. - deprecated old scaler removed
  278. - VQF demuxer
  279. - Alpha channel scaler
  280. - PCX encoder
  281. - RTP packetization of H.263
  282. - RTP packetization of AMR
  283. - RTP depacketization of Vorbis
  284. - CorePNG decoding support
  285. - Cook multichannel decoding support
  286. - introduced avlanguage helpers in libavformat
  287. - 8088flex TMV demuxer and decoder
  288. - per-stream language-tags extraction in asfdec
  289. - V210 decoder and encoder
  290. - remaining GPL parts in AC-3 decoder converted to LGPL
  291. - QCP demuxer
  292. - SoX native format muxer and demuxer
  293. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  294. - DPX image decoder
  295. - Electronic Arts Madcow decoder
  296. - DivX (XSUB) subtitle encoder
  297. - nonfree libamr support for AMR-NB/WB decoding/encoding removed
  298. - experimental AAC encoder
  299. - RTP depacketization of ASF and RTSP from WMS servers
  300. - RTMP support in libavformat
  301. - noX handling for OPT_BOOL X options
  302. - Wave64 demuxer
  303. - IEC-61937 compatible Muxer
  304. - TwinVQ decoder
  305. - Bluray (PGS) subtitle decoder
  306. - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
  307. - WMA Pro decoder
  308. - Core Audio Format demuxer
  309. - Atrac1 decoder
  310. - MD STUDIO audio demuxer
  311. - RF64 support in WAV demuxer
  312. - MPEG-4 Audio Lossless Coding (ALS) decoder
  313. - -formats option split into -formats, -codecs, -bsfs, and -protocols
  314. - IV8 demuxer
  315. - CDG demuxer and decoder
  316. - R210 decoder
  317. - Auravision Aura 1 and 2 decoders
  318. - Deluxe Paint Animation playback system
  319. - SIPR decoder
  320. - Adobe Filmstrip muxer and demuxer
  321. - RTP depacketization of H.263
  322. - Bink demuxer and audio/video decoders
  323. - enable symbol versioning by default for linkers that support it
  324. - IFF PBM/ILBM bitmap decoder
  325. - concat protocol
  326. - Indeo 5 decoder
  327. - RTP depacketization of AMR
  328. - WMA Voice decoder
  329. - ffprobe tool
  330. - AMR-NB decoder
  331. - RTSP muxer
  332. - HE-AAC v1 decoder
  333. - Kega Game Video (KGV1) decoder
  334. - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
  335. - RTP depacketization of Theora
  336. - HTTP Digest authentication
  337. - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
  338. - Psygnosis YOP demuxer and video decoder
  339. - spectral extension support in the E-AC-3 decoder
  340. - unsharp video filter
  341. - RTP hinting in the mov/3gp/mp4 muxer
  342. - Dirac in Ogg demuxing
  343. - seek to keyframes in Ogg
  344. - 4:2:2 and 4:4:4 Theora decoding
  345. - 35% faster VP3/Theora decoding
  346. - faster AAC decoding
  347. - faster H.264 decoding
  348. - RealAudio 1.0 (14.4K) encoder
  349. version 0.5:
  350. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  351. - TechSmith Camtasia (TSCC) video decoder
  352. - IBM Ultimotion (ULTI) video decoder
  353. - Sierra Online audio file demuxer and decoder
  354. - Apple QuickDraw (qdrw) video decoder
  355. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  356. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  357. - Miro VideoXL (VIXL) video decoder
  358. - H.261 video encoder
  359. - QPEG video decoder
  360. - Nullsoft Video (NSV) file demuxer
  361. - Shorten audio decoder
  362. - LOCO video decoder
  363. - Apple Lossless Audio Codec (ALAC) decoder
  364. - Winnov WNV1 video decoder
  365. - Autodesk Animator Studio Codec (AASC) decoder
  366. - Indeo 2 video decoder
  367. - Fraps FPS1 video decoder
  368. - Snow video encoder/decoder
  369. - Sonic audio encoder/decoder
  370. - Vorbis audio decoder
  371. - Macromedia ADPCM decoder
  372. - Duck TrueMotion 2 video decoder
  373. - support for decoding FLX and DTA extensions in FLIC files
  374. - H.264 custom quantization matrices support
  375. - ffserver fixed, it should now be usable again
  376. - QDM2 audio decoder
  377. - Real Cooker audio decoder
  378. - TrueSpeech audio decoder
  379. - WMA2 audio decoder fixed, now all files should play correctly
  380. - RealAudio 14.4 and 28.8 decoders fixed
  381. - JPEG-LS decoder
  382. - build system improvements
  383. - tabs and trailing whitespace removed from the codebase
  384. - CamStudio video decoder
  385. - AIFF/AIFF-C audio format, encoding and decoding
  386. - ADTS AAC file reading and writing
  387. - Creative VOC file reading and writing
  388. - American Laser Games multimedia (*.mm) playback system
  389. - Zip Motion Blocks Video decoder
  390. - improved Theora/VP3 decoder
  391. - True Audio (TTA) decoder
  392. - AVS demuxer and video decoder
  393. - JPEG-LS encoder
  394. - Smacker demuxer and decoder
  395. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  396. - KMVC decoder
  397. - MPEG-2 intra VLC support
  398. - MPEG-2 4:2:2 encoder
  399. - Flash Screen Video decoder
  400. - GXF demuxer
  401. - Chinese AVS decoder
  402. - GXF muxer
  403. - MXF demuxer
  404. - VC-1/WMV3/WMV9 video decoder
  405. - MacIntel support
  406. - AVISynth support
  407. - VMware video decoder
  408. - VP5 video decoder
  409. - VP6 video decoder
  410. - WavPack lossless audio decoder
  411. - Targa (.TGA) picture decoder
  412. - Vorbis audio encoder
  413. - Delphine Software .cin demuxer/audio and video decoder
  414. - Tiertex .seq demuxer/video decoder
  415. - MTV demuxer
  416. - TIFF picture encoder and decoder
  417. - GIF picture decoder
  418. - Intel Music Coder decoder
  419. - Zip Motion Blocks Video encoder
  420. - Musepack decoder
  421. - Flash Screen Video encoder
  422. - Theora encoding via libtheora
  423. - BMP encoder
  424. - WMA encoder
  425. - GSM-MS encoder and decoder
  426. - DCA decoder
  427. - DXA demuxer and decoder
  428. - DNxHD decoder
  429. - Gamecube movie (.THP) playback system
  430. - Blackfin optimizations
  431. - Interplay C93 demuxer and video decoder
  432. - Bethsoft VID demuxer and video decoder
  433. - CRYO APC demuxer
  434. - Atrac3 decoder
  435. - V.Flash PTX decoder
  436. - RoQ muxer, RoQ audio encoder
  437. - Renderware TXD demuxer and decoder
  438. - extern C declarations for C++ removed from headers
  439. - sws_flags command line option
  440. - codebook generator
  441. - RoQ video encoder
  442. - QTRLE encoder
  443. - OS/2 support removed and restored again
  444. - AC-3 decoder
  445. - NUT muxer
  446. - additional SPARC (VIS) optimizations
  447. - Matroska muxer
  448. - slice-based parallel H.264 decoding
  449. - Monkey's Audio demuxer and decoder
  450. - AMV audio and video decoder
  451. - DNxHD encoder
  452. - H.264 PAFF decoding
  453. - Nellymoser ASAO decoder
  454. - Beam Software SIFF demuxer and decoder
  455. - libvorbis Vorbis decoding removed in favor of native decoder
  456. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  457. - Ogg (Theora, Vorbis and FLAC) muxer
  458. - The "device" muxers and demuxers are now in a new libavdevice library
  459. - PC Paintbrush PCX decoder
  460. - Sun Rasterfile decoder
  461. - TechnoTrend PVA demuxer
  462. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  463. - AVM2 (Flash 9) SWF muxer
  464. - QT variant of IMA ADPCM encoder
  465. - VFW grabber
  466. - iPod/iPhone compatible mp4 muxer
  467. - Mimic decoder
  468. - MSN TCP Webcam stream demuxer
  469. - RL2 demuxer / decoder
  470. - IFF demuxer
  471. - 8SVX audio decoder
  472. - non-recursive Makefiles
  473. - BFI demuxer
  474. - MAXIS EA XA (.xa) demuxer / decoder
  475. - BFI video decoder
  476. - OMA demuxer
  477. - MLP/TrueHD decoder
  478. - Electronic Arts CMV decoder
  479. - Motion Pixels Video decoder
  480. - Motion Pixels MVI demuxer
  481. - removed animated GIF decoder/demuxer
  482. - D-Cinema audio muxer
  483. - Electronic Arts TGV decoder
  484. - Apple Lossless Audio Codec (ALAC) encoder
  485. - AAC decoder
  486. - floating point PCM encoder/decoder
  487. - MXF muxer
  488. - DV100 AKA DVCPRO HD decoder and demuxer
  489. - E-AC-3 support added to AC-3 decoder
  490. - Nellymoser ASAO encoder
  491. - ASS and SSA demuxer and muxer
  492. - liba52 wrapper removed
  493. - SVQ3 watermark decoding support
  494. - Speex decoding via libspeex
  495. - Electronic Arts TGQ decoder
  496. - RV40 decoder
  497. - QCELP / PureVoice decoder
  498. - RV30 decoder
  499. - hybrid WavPack support
  500. - R3D REDCODE demuxer
  501. - ALSA support for playback and record
  502. - Electronic Arts TQI decoder
  503. - OpenJPEG based JPEG 2000 decoder
  504. - NC (NC4600) camera file demuxer
  505. - Gopher client support
  506. - MXF D-10 muxer
  507. - generic metadata API
  508. version 0.4.9-pre1:
  509. - DV encoder, DV muxer
  510. - Microsoft RLE video decoder
  511. - Microsoft Video-1 decoder
  512. - Apple Animation (RLE) decoder
  513. - Apple Graphics (SMC) decoder
  514. - Apple Video (RPZA) decoder
  515. - Cinepak decoder
  516. - Sega FILM (CPK) file demuxer
  517. - Westwood multimedia support (VQA & AUD files)
  518. - Id Quake II CIN playback support
  519. - 8BPS video decoder
  520. - FLIC playback support
  521. - RealVideo 2.0 (RV20) decoder
  522. - Duck TrueMotion v1 (DUCK) video decoder
  523. - Sierra VMD demuxer and video decoder
  524. - MSZH and ZLIB decoder support
  525. - SVQ1 video encoder
  526. - AMR-WB support
  527. - PPC optimizations
  528. - rate distortion optimal cbp support
  529. - rate distorted optimal ac prediction for MPEG-4
  530. - rate distorted optimal lambda->qp support
  531. - AAC encoding with libfaac
  532. - Sunplus JPEG codec (SP5X) support
  533. - use Lagrange multipler instead of QP for ratecontrol
  534. - Theora/VP3 decoding support
  535. - XA and ADX ADPCM codecs
  536. - export MPEG-2 active display area / pan scan
  537. - Add support for configuring with IBM XLC
  538. - floating point AAN DCT
  539. - initial support for zygo video (not complete)
  540. - RGB ffv1 support
  541. - new audio/video parser API
  542. - av_log() system
  543. - av_read_frame() and av_seek_frame() support
  544. - missing last frame fixes
  545. - seek by mouse in ffplay
  546. - noise reduction of DCT coefficients
  547. - H.263 OBMC & 4MV support
  548. - H.263 alternative inter vlc support
  549. - H.263 loop filter
  550. - H.263 slice structured mode
  551. - interlaced DCT support for MPEG-2 encoding
  552. - stuffing to stay above min_bitrate
  553. - MB type & QP visualization
  554. - frame stepping for ffplay
  555. - interlaced motion estimation
  556. - alternate scantable support
  557. - SVCD scan offset support
  558. - closed GOP support
  559. - SSE2 FDCT
  560. - quantizer noise shaping
  561. - G.726 ADPCM audio codec
  562. - MS ADPCM encoding
  563. - multithreaded/SMP motion estimation
  564. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  565. - multithreaded/SMP decoding for MPEG-2
  566. - FLAC decoder
  567. - Metrowerks CodeWarrior suppport
  568. - H.263+ custom pcf support
  569. - nicer output for 'ffmpeg -formats'
  570. - Matroska demuxer
  571. - SGI image format, encoding and decoding
  572. - H.264 loop filter support
  573. - H.264 CABAC support
  574. - nicer looking arrows for the motion vector visualization
  575. - improved VCD support
  576. - audio timestamp drift compensation
  577. - MPEG-2 YUV 422/444 support
  578. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  579. - better image scaling
  580. - H.261 support
  581. - correctly interleave packets during encoding
  582. - VIS optimized motion compensation
  583. - intra_dc_precision>0 encoding support
  584. - support reuse of motion vectors/MB types/field select values of the source video
  585. - more accurate deblock filter
  586. - padding support
  587. - many optimizations and bugfixes
  588. - FunCom ISS audio file demuxer and according ADPCM decoding
  589. version 0.4.8:
  590. - MPEG-2 video encoding (Michael)
  591. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  592. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  593. and Mario Brito)
  594. - Xan DPCM audio decoder (Mario Brito)
  595. - Interplay MVE playback subsystem (Mike Melanson)
  596. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  597. version 0.4.7:
  598. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  599. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  600. - current version now also compiles with older GCC (Fabrice)
  601. - 4X multimedia playback system including 4xm file demuxer (Mike
  602. Melanson), and 4X video and audio codecs (Michael)
  603. - Creative YUV (CYUV) decoder (Mike Melanson)
  604. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  605. than HuffYUV) (Michael)
  606. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  607. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  608. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  609. - ffplay has been replaced with a newer version which uses SDL (optionally)
  610. for multiplatform support (Fabrice)
  611. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  612. by anonymous
  613. - AMR format has been added (Johannes Carlsson)
  614. - 3GP support has been added (Johannes Carlsson)
  615. - VP3 codec has been added (Mike Melanson)
  616. - more MPEG-1/2 fixes
  617. - better multiplatform support, MS Visual Studio fixes (various)
  618. - AltiVec optimizations (Magnus Damn and others)
  619. - SH4 processor support has been added (BERO)
  620. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  621. - VOB streaming support (Brian Foley)
  622. - better MP3 autodetection (Andriy Rysin)
  623. - qpel encoding (Michael)
  624. - 4mv+b frames encoding finally fixed (Michael)
  625. - chroma ME (Michael)
  626. - 5 comparison functions for ME (Michael)
  627. - B-frame encoding speedup (Michael)
  628. - WMV2 codec (unfinished - Michael)
  629. - user specified diamond size for EPZS (Michael)
  630. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  631. - ASV2 codec (Michael)
  632. - CLJR decoder (Alex)
  633. .. And lots more new enhancements and fixes.
  634. version 0.4.6:
  635. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  636. from scratch
  637. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  638. - fix quantization bug in AC3 encoder
  639. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  640. - added prototype ffplay program
  641. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  642. - bug fix on MCBPC tables of H.263 (Juanjo)
  643. - bug fix on DC coefficients of H.263 (Juanjo)
  644. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  645. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  646. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  647. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  648. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  649. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  650. - added first regression tests
  651. - added MPEG-2 TS demuxer
  652. - new demux API for libav
  653. - more accurate and faster IDCT (Michael)
  654. - faster and entropy-controlled motion search (Michael)
  655. - two pass video encoding (Michael)
  656. - new video rate control (Michael)
  657. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  658. - great performance improvement of video encoders and decoders (Michael)
  659. - new and faster bit readers and vlc parsers (Michael)
  660. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  661. - added DV video decoder
  662. - preliminary RTP/RTSP support in ffserver and libavformat
  663. - H.263+ AIC decoding/encoding support (Juanjo)
  664. - VCD MPEG-PS mode (Juanjo)
  665. - PSNR stuff (Juanjo)
  666. - simple stats output (Juanjo)
  667. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  668. version 0.4.5:
  669. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  670. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  671. - added configure system (actually a small shell script)
  672. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  673. Michael Hipp (temporary solution - waiting for integer only
  674. decoder)
  675. - fixed VIDIOCSYNC interrupt
  676. - added Intel H.263 decoding support ('I263' AVI fourCC)
  677. - added Real Video 1.0 decoding (needs further testing)
  678. - simplified image formats again. Added PGM format (=grey
  679. pgm). Renamed old PGM to PGMYUV.
  680. - fixed msmpeg4 slice issues (tell me if you still find problems)
  681. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  682. - added support for MPlayer interface
  683. - added macroblock skip optimization
  684. - added MJPEG decoder
  685. - added mmx/mmxext IDCT from libmpeg2
  686. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  687. <celer at shell.scrypt.net>)
  688. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  689. - added deinterlacing option
  690. - MPEG-1/2 fixes
  691. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  692. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  693. - Windows porting of file converter
  694. - added MJPEG raw format (input/ouput)
  695. - added JPEG image format support (input/output)
  696. version 0.4.4:
  697. - fixed some std header definitions (Bjorn Lindgren
  698. <bjorn.e.lindgren at telia.com>).
  699. - added MPEG demuxer (MPEG-1 and 2 compatible).
  700. - added ASF demuxer
  701. - added prototype RM demuxer
  702. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  703. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  704. header does not include them)
  705. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  706. play them (only tested video)
  707. - fixed H.263 white bug
  708. - fixed phase rounding in img resample filter
  709. - add MMX code for polyphase img resample filter
  710. - added CPU autodetection
  711. - added generic title/author/copyright/comment string handling (ASF and RM
  712. use them)
  713. - added SWF demux to extract MP3 track (not usable yet because no MP3
  714. decoder)
  715. - added fractional frame rate support
  716. - codecs are no longer searched by read_header() (should fix ffserver
  717. segfault)
  718. version 0.4.3:
  719. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  720. - fixed raw yuv output
  721. - added motion rounding support in MPEG-4
  722. - fixed motion bug rounding in MSMPEG4
  723. - added B-frame handling in video core
  724. - added full MPEG-1 decoding support
  725. - added partial (frame only) MPEG-2 support
  726. - changed the FOURCC code for H.263 to "U263" to be able to see the
  727. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  728. this +codec ;) (JuanJo).
  729. - Halfpel motion estimation after MB type selection (JuanJo)
  730. - added pgm and .Y.U.V output format
  731. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  732. output.
  733. - added pgmpipe I/O format (original patch from Martin Aumueller
  734. <lists at reserv.at>, but changed completely since we use a format
  735. instead of a protocol)
  736. version 0.4.2:
  737. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  738. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  739. missing. MSMPEG4 support is complete.
  740. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  741. can decode ffmpeg MPEGs :-)).
  742. - added libavcodec API documentation (see apiexample.c).
  743. - fixed image polyphase bug (the bottom of some images could be
  744. greenish)
  745. - added support for non clipped motion vectors (decoding only)
  746. and image sizes non-multiple of 16
  747. - added support for AC prediction (decoding only)
  748. - added file overwrite confirmation (can be disabled with -y)
  749. - added custom size picture to H.263 using H.263+ (Juanjo)
  750. version 0.4.1:
  751. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  752. of AVI and ASF to DIV3.
  753. - added -me option to set motion estimation method
  754. (default=log). suppressed redundant -hq option.
  755. - added options -acodec and -vcodec to force a given codec (useful for
  756. AVI for example)
  757. - fixed -an option
  758. - improved dct_quantize speed
  759. - factorized some motion estimation code
  760. version 0.4.0:
  761. - removing grab code from ffserver and moved it to ffmpeg. Added
  762. multistream support to ffmpeg.
  763. - added timeshifting support for live feeds (option ?date=xxx in the
  764. URL)
  765. - added high quality image resize code with polyphase filter (need
  766. mmx/see optimization). Enable multiple image size support in ffserver.
  767. - added multi live feed support in ffserver
  768. - suppressed master feature from ffserver (it should be done with an
  769. external program which opens the .ffm url and writes it to another
  770. ffserver)
  771. - added preliminary support for video stream parsing (WAV and AVI half
  772. done). Added proper support for audio/video file conversion in
  773. ffmpeg.
  774. - added preliminary support for video file sending from ffserver
  775. - redesigning I/O subsystem: now using URL based input and output
  776. (see avio.h)
  777. - added WAV format support
  778. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  779. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  780. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  781. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  782. - added new motion estimation algorithms, log and phods (Juanjo)
  783. - changed directories: libav for format handling, libavcodec for
  784. codecs
  785. version 0.3.4:
  786. - added stereo in MPEG audio encoder
  787. version 0.3.3:
  788. - added 'high quality' mode which use motion vectors. It can be used in
  789. real time at low resolution.
  790. - fixed rounding problems which caused quality problems at high
  791. bitrates and large GOP size
  792. version 0.3.2: small fixes
  793. - ASF fixes
  794. - put_seek bug fix
  795. version 0.3.1: added avi/divx support
  796. - added AVI support
  797. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  798. - added sound for flash format (not tested)
  799. version 0.3: initial public release