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.

884 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. - ashowinfo audio filter
  5. - 24-bit FLAC encoding
  6. - audio volume filter
  7. - deprecated the avconv -vol option. the volume filter is to be used instead.
  8. - multi-channel ALAC encoding up to 7.1
  9. version 9_beta2:
  10. - metadata (INFO tag) support in WAV muxer
  11. - support for building DLLs using MSVC
  12. - remove avserver daemon mode
  13. version 9_beta1:
  14. - XWD encoder and decoder
  15. - Support for fragmentation in the mov/mp4 muxer
  16. - ISMV (Smooth Streaming) muxer
  17. - CDXL demuxer and decoder
  18. - Apple ProRes encoder
  19. - Sun Rasterfile Encoder
  20. - remove libpostproc
  21. - ID3v2 attached pictures reading and writing
  22. - WMA Lossless decoder
  23. - XBM encoder
  24. - RealAudio Lossless decoder
  25. - ZeroCodec decoder
  26. - drop support for avconv without libavfilter
  27. - add libavresample audio conversion library
  28. - audio filters support in libavfilter and avconv
  29. - add fps filter
  30. - audio split filter
  31. - audio mix filter
  32. - avprobe output is now standard INI or JSON. The old format can still
  33. be used with -of old.
  34. - Indeo Audio decoder
  35. - channelsplit audio filter
  36. - RTMPT protocol support
  37. - iLBC encoding/decoding via libilbc
  38. - Microsoft Screen 1 decoder
  39. - join audio filter
  40. - audio channel mapping filter
  41. - Microsoft ATC Screen decoder
  42. - RTSP listen mode
  43. - TechSmith Screen Codec 2 decoder
  44. - AAC encoding via libfdk-aac
  45. - Microsoft Expression Encoder Screen decoder
  46. - RTMPS protocol support
  47. - RTMPTS protocol support
  48. - JPEG 2000 encoding support through OpenJPEG
  49. - G.723.1 demuxer and decoder
  50. - RTMPE protocol support
  51. - RTMPTE protocol support
  52. - Canopus Lossless Codec decoder
  53. - avconv -shortest option is now per-output file,
  54. -pass and -passlogfile are now per-output stream
  55. - Ut Video encoder
  56. - Microsoft Screen 2 decoder
  57. - RTP depacketization of JPEG
  58. - Smooth Streaming live segmenter muxer
  59. - RTP packetization of JPEG
  60. - Opus decoder and encoder using libopus
  61. - remove -same_quant, it hasn't worked for years
  62. - support for building with MSVC
  63. version 0.8:
  64. - GSM audio parser
  65. - SMJPEG muxer
  66. version 0.8_beta2:
  67. - Automatic thread count based on detection number of (available) CPU cores
  68. - Deprecate libpostproc. If desired, the switch --enable-postproc will
  69. enable it but it may be removed in a later Libav release.
  70. - rv34: frame-level multi-threading
  71. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  72. version 0.8_beta1:
  73. - BWF muxer
  74. - Flash Screen Video 2 decoder
  75. - ffplay/ffprobe/ffserver renamed to avplay/avprobe/avserver
  76. - ffmpeg deprecated, added avconv, which is almost the same for now, except
  77. for a few incompatible changes in the options, which will hopefully make them
  78. easier to use. The changes are:
  79. * The options placement is now strictly enforced! While in theory the
  80. options for ffmpeg should be given in [input options] -i INPUT [output
  81. options] OUTPUT order, in practice it was possible to give output options
  82. before the -i and it mostly worked. Except when it didn't - the behavior was
  83. a bit inconsistent. In avconv, it is not possible to mix input and output
  84. options. All non-global options are reset after an input or output filename.
  85. * All per-file options are now truly per-file - they apply only to the next
  86. input or output file and specifying different values for different files
  87. will now work properly (notably -ss and -t options).
  88. * All per-stream options are now truly per-stream - it is possible to
  89. specify which stream(s) should a given option apply to. See the Stream
  90. specifiers section in the avconv manual for details.
  91. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  92. sense that they're specified after the output filename instead of before,
  93. like all other options. In avconv this irregularity is removed, all options
  94. apply to the next input or output file.
  95. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  96. irregular and highly confusing, they were also redundant. In avconv the -map
  97. option will create new streams in the output file and map input streams to
  98. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  99. each stream in the first input file.
  100. * The -map option now has slightly different and more powerful syntax:
  101. + Colons (':') are used to separate file index/stream type/stream index
  102. instead of dots. Comma (',') is used to separate the sync stream instead
  103. of colon.. This is done for consistency with other options.
  104. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  105. output stream from the third input audio stream.
  106. + Omitting the stream index now maps all the streams of the given type,
  107. not just the first. E.g. -map 0:s creates output streams for all the
  108. subtitle streams in the first input file.
  109. + Since -map can now match multiple streams, negative mappings were
  110. introduced. Negative mappings disable some streams from an already
  111. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  112. all the stream in the first input file, except for the second audio
  113. stream'.
  114. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  115. use, which allows to precisely specify target stream(s) consistently with
  116. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  117. libvorbis sets the codec for the first audio stream and -c copy copies all
  118. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  119. aliases to -c:v/a/s
  120. * It is now possible to precisely specify which stream should an AVOption
  121. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  122. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  123. syntax is deprecated and will stop working soon.
  124. * -map_chapters now takes only an input file index and applies to the next
  125. output file. This is consistent with how all the other options work.
  126. * -map_metadata now takes only an input metadata specifier and applies to
  127. the next output file. Output metadata specifier is now part of the option
  128. name, similarly to the AVOptions/map/codec feature above.
  129. * -metadata can now be used to set metadata on streams and chapters, e.g.
  130. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  131. This made -vlang/-alang/-slang options redundant, so they were removed.
  132. * -qscale option now uses stream specifiers and applies to all streams, not
  133. just video. I.e. plain -qscale number would now apply to all streams. To get
  134. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  135. and -aq is now an alias for -q:a.
  136. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  137. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  138. * -itsscale option now uses stream specifiers, so its argument is only the
  139. scale parameter.
  140. * -intra option was removed, use -g 0 for the same effect.
  141. * -psnr option was removed, use -flags +psnr for the same effect.
  142. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  143. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  144. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  145. - XMV demuxer
  146. - Windows Media Image decoder
  147. - LATM muxer/demuxer
  148. - showinfo filter
  149. - split filter
  150. - libcdio-paranoia input device for audio CD grabbing
  151. - select filter
  152. - Apple ProRes decoder
  153. - CELT in Ogg demuxing
  154. - VC-1 interlaced decoding
  155. - lut, lutrgb, and lutyuv filters
  156. - boxblur filter
  157. - Ut Video decoder
  158. - Speex encoding via libspeex
  159. - 4:2:2 H.264 decoding support
  160. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  161. - Pulseaudio input device
  162. - replacement Indeo 3 decoder
  163. - TLS/SSL and HTTPS protocol support
  164. - AVOptions API rewritten and documented
  165. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  166. AVCodecContext deprecated. Codec private options should be used instead.
  167. - Properly working defaults in libx264 wrapper, support for native presets.
  168. - Encrypted OMA files support
  169. - Discworld II BMV decoding support
  170. - VBLE Decoder
  171. - OS X Video Decoder Acceleration (VDA) support
  172. - CRI ADX audio format muxer and demuxer
  173. - Playstation Portable PMP format demuxer
  174. - PCM format support in OMA demuxer
  175. - CLJR encoder
  176. - Dxtory capture format decoder
  177. - v410 QuickTime uncompressed 4:4:4 10-bit encoder and decoder
  178. - OpenMG Audio muxer
  179. - Simple segmenting muxer
  180. - Indeo 4 decoder
  181. - SMJPEG demuxer
  182. version 0.7:
  183. - E-AC-3 audio encoder
  184. - ac3enc: add channel coupling support
  185. - floating-point sample format support for (E-)AC-3, DCA, AAC, Vorbis decoders
  186. - H.264/MPEG frame-level multithreading
  187. - av_metadata_* functions renamed to av_dict_* and moved to libavutil
  188. - 4:4:4 H.264 decoding support
  189. - 10-bit H.264 optimizations for x86
  190. - bump libswscale for recently reported ABI break
  191. version 0.7_beta2:
  192. - VP8 frame-level multithreading
  193. - NEON optimizations for VP8
  194. - removed a lot of deprecated API cruft
  195. - FFT and IMDCT optimizations for AVX (Sandy Bridge) processors
  196. - DPX image encoder
  197. - SMPTE 302M AES3 audio decoder
  198. - ffmpeg no longer quits after the 'q' key is pressed; use 'ctrl+c' instead
  199. - 9bit and 10bit per sample support in the H.264 decoder
  200. version 0.7_beta1:
  201. - WebM support in Matroska de/muxer
  202. - low overhead Ogg muxing
  203. - MMS-TCP support
  204. - VP8 de/encoding via libvpx
  205. - Demuxer for On2's IVF format
  206. - Pictor/PC Paint decoder
  207. - HE-AAC v2 decoder
  208. - libfaad2 wrapper removed
  209. - DTS-ES extension (XCh) decoding support
  210. - native VP8 decoder
  211. - RTSP tunneling over HTTP
  212. - RTP depacketization of SVQ3
  213. - -strict inofficial replaced by -strict unofficial
  214. - ffplay -exitonkeydown and -exitonmousedown options added
  215. - native GSM / GSM MS decoder
  216. - RTP depacketization of QDM2
  217. - ANSI/ASCII art playback system
  218. - Lego Mindstorms RSO de/muxer
  219. - SubRip subtitle file muxer and demuxer
  220. - Chinese AVS encoding via libxavs
  221. - ffprobe -show_packets option added
  222. - RTP packetization of Theora and Vorbis
  223. - RTP depacketization of MP4A-LATM
  224. - RTP packetization and depacketization of VP8
  225. - hflip filter
  226. - Apple HTTP Live Streaming demuxer
  227. - a64 codec
  228. - MMS-HTTP support
  229. - G.722 ADPCM audio encoder/decoder
  230. - R10k video decoder
  231. - ocv_smooth filter
  232. - frei0r wrapper filter
  233. - change crop filter syntax to width:height:x:y
  234. - make the crop filter accept parametric expressions
  235. - make ffprobe accept AVFormatContext options
  236. - yadif filter
  237. - blackframe filter
  238. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  239. - RTP depacketization of the X-QT QuickTime format
  240. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  241. - cropdetect filter
  242. - ffmpeg -crop* options removed
  243. - transpose filter added
  244. - ffmpeg -force_key_frames option added
  245. - demuxer for receiving raw rtp:// URLs without an SDP description
  246. - single stream LATM/LOAS decoder
  247. - setpts filter added
  248. - Win64 support for optimized x86 assembly functions
  249. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  250. - ASS subtitle encoder and decoder
  251. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  252. - overlay filter added
  253. - rename aspect filter to setdar, and pixelaspect to setsar
  254. - IEC 61937 demuxer
  255. - Mobotix .mxg demuxer
  256. - frei0r source added
  257. - hqdn3d filter added
  258. - RTP depacketization of QCELP
  259. - FLAC parser added
  260. - gradfun filter added
  261. - AMR-WB decoder
  262. - replace the ocv_smooth filter with a more generic ocv filter
  263. - Windows Televison (WTV) demuxer
  264. - FFmpeg metadata format muxer and demuxer
  265. - SubRip (srt) subtitle decoder
  266. - floating-point AC-3 encoder added
  267. - Lagarith decoder
  268. - ffmpeg -copytb option added
  269. - IVF muxer added
  270. - Wing Commander IV movies decoder added
  271. - movie source added
  272. - Bink version 'b' audio and video decoder
  273. - Bitmap Brothers JV playback system
  274. - Apple HTTP Live Streaming protocol handler
  275. - sndio support for playback and record
  276. - Linux framebuffer input device added
  277. - Chronomaster DFA decoder
  278. - Mobotix MxPEG decoder
  279. - AAC encoding via libvo-aacenc
  280. - AMR-WB encoding via libvo-amrwbenc
  281. - xWMA demuxer
  282. - fieldorder video filter added
  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. version 0.4.9-pre1:
  518. - DV encoder, DV muxer
  519. - Microsoft RLE video decoder
  520. - Microsoft Video-1 decoder
  521. - Apple Animation (RLE) decoder
  522. - Apple Graphics (SMC) decoder
  523. - Apple Video (RPZA) decoder
  524. - Cinepak decoder
  525. - Sega FILM (CPK) file demuxer
  526. - Westwood multimedia support (VQA & AUD files)
  527. - Id Quake II CIN playback support
  528. - 8BPS video decoder
  529. - FLIC playback support
  530. - RealVideo 2.0 (RV20) decoder
  531. - Duck TrueMotion v1 (DUCK) video decoder
  532. - Sierra VMD demuxer and video decoder
  533. - MSZH and ZLIB decoder support
  534. - SVQ1 video encoder
  535. - AMR-WB support
  536. - PPC optimizations
  537. - rate distortion optimal cbp support
  538. - rate distorted optimal ac prediction for MPEG-4
  539. - rate distorted optimal lambda->qp support
  540. - AAC encoding with libfaac
  541. - Sunplus JPEG codec (SP5X) support
  542. - use Lagrange multipler instead of QP for ratecontrol
  543. - Theora/VP3 decoding support
  544. - XA and ADX ADPCM codecs
  545. - export MPEG-2 active display area / pan scan
  546. - Add support for configuring with IBM XLC
  547. - floating point AAN DCT
  548. - initial support for zygo video (not complete)
  549. - RGB ffv1 support
  550. - new audio/video parser API
  551. - av_log() system
  552. - av_read_frame() and av_seek_frame() support
  553. - missing last frame fixes
  554. - seek by mouse in ffplay
  555. - noise reduction of DCT coefficients
  556. - H.263 OBMC & 4MV support
  557. - H.263 alternative inter vlc support
  558. - H.263 loop filter
  559. - H.263 slice structured mode
  560. - interlaced DCT support for MPEG-2 encoding
  561. - stuffing to stay above min_bitrate
  562. - MB type & QP visualization
  563. - frame stepping for ffplay
  564. - interlaced motion estimation
  565. - alternate scantable support
  566. - SVCD scan offset support
  567. - closed GOP support
  568. - SSE2 FDCT
  569. - quantizer noise shaping
  570. - G.726 ADPCM audio codec
  571. - MS ADPCM encoding
  572. - multithreaded/SMP motion estimation
  573. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  574. - multithreaded/SMP decoding for MPEG-2
  575. - FLAC decoder
  576. - Metrowerks CodeWarrior suppport
  577. - H.263+ custom pcf support
  578. - nicer output for 'ffmpeg -formats'
  579. - Matroska demuxer
  580. - SGI image format, encoding and decoding
  581. - H.264 loop filter support
  582. - H.264 CABAC support
  583. - nicer looking arrows for the motion vector visualization
  584. - improved VCD support
  585. - audio timestamp drift compensation
  586. - MPEG-2 YUV 422/444 support
  587. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  588. - better image scaling
  589. - H.261 support
  590. - correctly interleave packets during encoding
  591. - VIS optimized motion compensation
  592. - intra_dc_precision>0 encoding support
  593. - support reuse of motion vectors/MB types/field select values of the source video
  594. - more accurate deblock filter
  595. - padding support
  596. - many optimizations and bugfixes
  597. - FunCom ISS audio file demuxer and according ADPCM decoding
  598. version 0.4.8:
  599. - MPEG-2 video encoding (Michael)
  600. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  601. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  602. and Mario Brito)
  603. - Xan DPCM audio decoder (Mario Brito)
  604. - Interplay MVE playback subsystem (Mike Melanson)
  605. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  606. version 0.4.7:
  607. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  608. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  609. - current version now also compiles with older GCC (Fabrice)
  610. - 4X multimedia playback system including 4xm file demuxer (Mike
  611. Melanson), and 4X video and audio codecs (Michael)
  612. - Creative YUV (CYUV) decoder (Mike Melanson)
  613. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  614. than HuffYUV) (Michael)
  615. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  616. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  617. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  618. - ffplay has been replaced with a newer version which uses SDL (optionally)
  619. for multiplatform support (Fabrice)
  620. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  621. by anonymous
  622. - AMR format has been added (Johannes Carlsson)
  623. - 3GP support has been added (Johannes Carlsson)
  624. - VP3 codec has been added (Mike Melanson)
  625. - more MPEG-1/2 fixes
  626. - better multiplatform support, MS Visual Studio fixes (various)
  627. - AltiVec optimizations (Magnus Damn and others)
  628. - SH4 processor support has been added (BERO)
  629. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  630. - VOB streaming support (Brian Foley)
  631. - better MP3 autodetection (Andriy Rysin)
  632. - qpel encoding (Michael)
  633. - 4mv+b frames encoding finally fixed (Michael)
  634. - chroma ME (Michael)
  635. - 5 comparison functions for ME (Michael)
  636. - B-frame encoding speedup (Michael)
  637. - WMV2 codec (unfinished - Michael)
  638. - user specified diamond size for EPZS (Michael)
  639. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  640. - ASV2 codec (Michael)
  641. - CLJR decoder (Alex)
  642. .. And lots more new enhancements and fixes.
  643. version 0.4.6:
  644. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  645. from scratch
  646. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  647. - fix quantization bug in AC3 encoder
  648. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  649. - added prototype ffplay program
  650. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  651. - bug fix on MCBPC tables of H.263 (Juanjo)
  652. - bug fix on DC coefficients of H.263 (Juanjo)
  653. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  654. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  655. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  656. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  657. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  658. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  659. - added first regression tests
  660. - added MPEG-2 TS demuxer
  661. - new demux API for libav
  662. - more accurate and faster IDCT (Michael)
  663. - faster and entropy-controlled motion search (Michael)
  664. - two pass video encoding (Michael)
  665. - new video rate control (Michael)
  666. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  667. - great performance improvement of video encoders and decoders (Michael)
  668. - new and faster bit readers and vlc parsers (Michael)
  669. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  670. - added DV video decoder
  671. - preliminary RTP/RTSP support in ffserver and libavformat
  672. - H.263+ AIC decoding/encoding support (Juanjo)
  673. - VCD MPEG-PS mode (Juanjo)
  674. - PSNR stuff (Juanjo)
  675. - simple stats output (Juanjo)
  676. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  677. version 0.4.5:
  678. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  679. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  680. - added configure system (actually a small shell script)
  681. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  682. Michael Hipp (temporary solution - waiting for integer only
  683. decoder)
  684. - fixed VIDIOCSYNC interrupt
  685. - added Intel H.263 decoding support ('I263' AVI fourCC)
  686. - added Real Video 1.0 decoding (needs further testing)
  687. - simplified image formats again. Added PGM format (=grey
  688. pgm). Renamed old PGM to PGMYUV.
  689. - fixed msmpeg4 slice issues (tell me if you still find problems)
  690. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  691. - added support for MPlayer interface
  692. - added macroblock skip optimization
  693. - added MJPEG decoder
  694. - added mmx/mmxext IDCT from libmpeg2
  695. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  696. <celer at shell.scrypt.net>)
  697. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  698. - added deinterlacing option
  699. - MPEG-1/2 fixes
  700. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  701. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  702. - Windows porting of file converter
  703. - added MJPEG raw format (input/ouput)
  704. - added JPEG image format support (input/output)
  705. version 0.4.4:
  706. - fixed some std header definitions (Bjorn Lindgren
  707. <bjorn.e.lindgren at telia.com>).
  708. - added MPEG demuxer (MPEG-1 and 2 compatible).
  709. - added ASF demuxer
  710. - added prototype RM demuxer
  711. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  712. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  713. header does not include them)
  714. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  715. play them (only tested video)
  716. - fixed H.263 white bug
  717. - fixed phase rounding in img resample filter
  718. - add MMX code for polyphase img resample filter
  719. - added CPU autodetection
  720. - added generic title/author/copyright/comment string handling (ASF and RM
  721. use them)
  722. - added SWF demux to extract MP3 track (not usable yet because no MP3
  723. decoder)
  724. - added fractional frame rate support
  725. - codecs are no longer searched by read_header() (should fix ffserver
  726. segfault)
  727. version 0.4.3:
  728. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  729. - fixed raw yuv output
  730. - added motion rounding support in MPEG-4
  731. - fixed motion bug rounding in MSMPEG4
  732. - added B-frame handling in video core
  733. - added full MPEG-1 decoding support
  734. - added partial (frame only) MPEG-2 support
  735. - changed the FOURCC code for H.263 to "U263" to be able to see the
  736. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  737. this +codec ;) (JuanJo).
  738. - Halfpel motion estimation after MB type selection (JuanJo)
  739. - added pgm and .Y.U.V output format
  740. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  741. output.
  742. - added pgmpipe I/O format (original patch from Martin Aumueller
  743. <lists at reserv.at>, but changed completely since we use a format
  744. instead of a protocol)
  745. version 0.4.2:
  746. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  747. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  748. missing. MSMPEG4 support is complete.
  749. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  750. can decode ffmpeg MPEGs :-)).
  751. - added libavcodec API documentation (see apiexample.c).
  752. - fixed image polyphase bug (the bottom of some images could be
  753. greenish)
  754. - added support for non clipped motion vectors (decoding only)
  755. and image sizes non-multiple of 16
  756. - added support for AC prediction (decoding only)
  757. - added file overwrite confirmation (can be disabled with -y)
  758. - added custom size picture to H.263 using H.263+ (Juanjo)
  759. version 0.4.1:
  760. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  761. of AVI and ASF to DIV3.
  762. - added -me option to set motion estimation method
  763. (default=log). suppressed redundant -hq option.
  764. - added options -acodec and -vcodec to force a given codec (useful for
  765. AVI for example)
  766. - fixed -an option
  767. - improved dct_quantize speed
  768. - factorized some motion estimation code
  769. version 0.4.0:
  770. - removing grab code from ffserver and moved it to ffmpeg. Added
  771. multistream support to ffmpeg.
  772. - added timeshifting support for live feeds (option ?date=xxx in the
  773. URL)
  774. - added high quality image resize code with polyphase filter (need
  775. mmx/see optimization). Enable multiple image size support in ffserver.
  776. - added multi live feed support in ffserver
  777. - suppressed master feature from ffserver (it should be done with an
  778. external program which opens the .ffm url and writes it to another
  779. ffserver)
  780. - added preliminary support for video stream parsing (WAV and AVI half
  781. done). Added proper support for audio/video file conversion in
  782. ffmpeg.
  783. - added preliminary support for video file sending from ffserver
  784. - redesigning I/O subsystem: now using URL based input and output
  785. (see avio.h)
  786. - added WAV format support
  787. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  788. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  789. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  790. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  791. - added new motion estimation algorithms, log and phods (Juanjo)
  792. - changed directories: libav for format handling, libavcodec for
  793. codecs
  794. version 0.3.4:
  795. - added stereo in MPEG audio encoder
  796. version 0.3.3:
  797. - added 'high quality' mode which use motion vectors. It can be used in
  798. real time at low resolution.
  799. - fixed rounding problems which caused quality problems at high
  800. bitrates and large GOP size
  801. version 0.3.2: small fixes
  802. - ASF fixes
  803. - put_seek bug fix
  804. version 0.3.1: added avi/divx support
  805. - added AVI support
  806. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  807. - added sound for flash format (not tested)
  808. version 0.3: initial public release