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.

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