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.

871 lines
31KB

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