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.

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