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.

911 lines
33KB

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