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.

893 lines
31KB

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