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.

944 lines
34KB

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