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.

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