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.

900 lines
32KB

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